/* ============================================================
   MARCA ABRAFATI — Estilos da página
   ============================================================ */

/* ---- WRAPPER (contém banner + texto + paints) ---- */
#ma-content-wrap {
    position: relative;
    overflow: hidden;
}

/* ---- PAINTS DECORATIVOS ---- */
.ma-paint-left,
.ma-paint-right {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.ma-paint-left {
    left: -74px;
    top: -69px; /* paint começa 69px acima do banner, dentro do headerinter — clippado pelo overflow:hidden */
    transform: rotate(180deg) scaleY(-1);
}

.ma-paint-right {
    right: -100px;
    top: 451px; /* frame y=827, wrap start y=376 → 827-376=451px */
    transform: rotate(180deg);
}

.ma-paint-left img { width: 324px; display: block; }
.ma-paint-right img { width: 341px; display: block; }

/* ---- BANNER ---- */
#ma-banner {
    position: relative;
    z-index: 1;
}

/* Background confinado à largura do container, igual ao Figma (x=320, w=1280px) */
.ma-banner-container {
    min-height: 517px;
    overflow: hidden;
}

.ma-banner-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 517px;
    object-fit: cover;
}

.ma-banner-placeholder {
    min-height: 517px;
    width: 100%;
    background: #f8fafd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ma-banner-placeholder-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #5a738d;
    text-align: center;
    letter-spacing: -0.32px;
    line-height: 1.5;
}

/* ---- SEÇÃO DE TEXTO ---- */
#ma-text {
    padding: 76px 0 93px;
    position: relative;
    z-index: 1;
}

.ma-text-inner {
    padding-left: 40px;
}

/* ---- TÍTULO ---- */
.ma-titulo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #66589e;
    letter-spacing: -0.32px;
    line-height: 1.5;
    max-width: 848px;
    margin: 0 0 85px;
}

.ma-titulo p,
.ma-titulo strong,
.ma-titulo em {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-bottom: 0;
}

/* ---- CORPO DE TEXTO ---- */
.ma-texto {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #66589e;
    letter-spacing: -0.32px;
    line-height: 1.5;
    max-width: 932px;
}

.ma-texto p {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    margin-bottom: 1.5em;
}

.ma-texto p:last-child {
    margin-bottom: 0;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 991px) {
    .ma-banner-container { min-height: 360px; }
    .ma-banner-img { height: 360px; }
    .ma-banner-placeholder { min-height: 360px; }
    .ma-titulo { font-size: 24px; margin-bottom: 50px; }
    .ma-texto  { font-size: 16px; }
    .ma-text-inner { padding-left: 20px; }
}

@media (max-width: 767px) {
    #ma-text { padding: 50px 0 60px; }
    .ma-banner-container { min-height: 220px; }
    .ma-banner-img { height: 220px; }
    .ma-banner-placeholder { min-height: 220px; }
    .ma-titulo { font-size: 20px; margin-bottom: 36px; }
    .ma-texto  { font-size: 15px; }
    .ma-text-inner { padding-left: 0; }
}
