/* Full width real (quebra o content width do tema) */
.hero-slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
    background: #fff;
    --gap: 3rem;
}

.hero-slider * { box-sizing: border-box; }

.container-xl {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 4rem 0;
}

/* Tipografia */
.hero-slider, .hero-slider p, .hero-btn { font-family: "Raleway", sans-serif;font-weight: 600; }
.hero-title { font-family: "Playfair", serif;font-style: italic;color:#A27AA0 !important;}

/* Track */
.hero-slider__track { display: flex; transition: transform .6s ease; will-change: transform; }
.hero-slide { min-width: 100vw; }
.hero-slide.is-dark { --text: #222; --muted:#555; background:#fff; }
.hero-slide.is-light { --text: #5c4861; --muted:#6b5f70; background:#fff; }
.hero-slide { color: var(--text); }

/* Layout */
.hero-slide__inner { display:grid; grid-template-columns: 1.1fr 0.9fr; align-items:center; gap: var(--gap); }
.hero-slide__left { padding-right: .5rem; }
.hero-slide__right { position: relative; }

.hero-eyebrow { font-size: clamp(1rem, 1.2vw, 1.125rem); font-weight: 600; letter-spacing:.2px; color: var(--muted); margin-bottom: 1rem; }
.hero-title { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.08; letter-spacing:.3px; color: var(--text); margin: 0 0 1rem 0; }
.hero-sub { font-size: clamp(1.05rem, 1.2vw, 1.2rem); line-height: 1.6; margin: 0 0 2rem 0; max-width: 52ch; color: var(--muted); }

.hero-btn {
    display:inline-block; border:3px solid #DC98BE; padding: .95rem 1.6rem;
    border-radius: 999px; text-decoration:none; font-weight:600; font-size:1rem;
    transition: transform .15s ease, background .2s ease, color .2s ease;
    color: #DC98BE; background: transparent;
}
.hero-btn:hover { transform: translateY(-1px); background: #DC98BE; color: #fff; }

.hero-photo { width: 100%; height: auto; border-radius: 24px; display:block; }
.hero-shape { position:absolute; inset:auto 0 -14% -14%; pointer-events:none; opacity:.9; }
.hero-shape svg { width: clamp(220px, 40vw, 560px); height:auto; }

/* === Navegação (chevron lilás, sem círculo) — FIX de texto visível === */
.hero-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:transparent;
    border:0;
    padding:0;
    margin:0;

    /* área de clique */
    width:64px;
    height:120px;
    cursor:pointer;

    /* cor do chevron */
    color: #DC98BE;
    opacity:.9;

    /* impedir que os caracteres ‹ › do HTML apareçam */
    font-size:0;           /* <- esconde o texto do botão */
    line-height:0;         /* <- garante que nada “sangra” */
    overflow:hidden;       /* <- previne artefactos */

    transition: opacity .2s ease, transform .15s ease;
    z-index:5;
}
.hero-prev{ left:12px; }
.hero-next{ right:12px; }

/* ícone em SVG usa currentColor (var(--accent)) */
.hero-nav::before{
    content:"";
    display:block;
    width:36px;
    height:72px;
    margin:0 auto;
    background-repeat:no-repeat;
    background-size:contain;
    color: #DC98BE !important;
}
.hero-next::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='72' viewBox='0 0 36 72' fill='none' stroke='%23DC98BE' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 5 L31 36 L5 67'/%3E%3C/svg%3E");
}
.hero-prev::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='72' viewBox='0 0 36 72' fill='none' stroke='%23DC98BE' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 5 L5 36 L31 67'/%3E%3C/svg%3E");
}

.hero-nav:hover{ opacity:1; transform:translateY(-50%) scale(1.02); }
.hero-nav:active{ transform:translateY(-50%) scale(0.98); }
.hero-nav:focus-visible{ outline:2px solid color-mix(in oklab, #DC98BE 60%, #DC98BE); outline-offset:4px; }

/* Responsivo */
@media (max-width:980px){
    .hero-nav{ width:52px; height:96px; margin-top: -125px;}
    .hero-nav::before{ width:28px; height:56px; }
}
@media (max-width:520px){
    .hero-nav{ width:44px; height:80px; margin-top: -125px;}
    .hero-nav::before{ width:24px; height:48px; }
}

/* Dots */
.hero-dots { position:absolute; left:50%; transform:translateX(-50%); bottom: 18px; display:flex; gap:10px; }
.hero-dots button {
    width: 9px; height: 9px; border-radius:999px; border:0; background:#d9c7d4;
}
.hero-dots button[aria-current="true"] { width: 28px; border-radius: 999px; background: var(--accent); }

/* Responsivo */
@media (max-width: 980px) {
    .container-xl { padding: 3.5rem 0; }
    .hero-slide__inner { grid-template-columns: 1fr; }
    .hero-slide__right { order: -1; }
    .hero-shape { display:none; }
}
@media (max-width: 520px) {
    .hero-btn { width:100%; text-align:center;color: #DC98BE;}
}
.hero-overlay-svg{
    position:absolute; z-index:2; pointer-events:none;
    bottom: calc(-14% + 6%); left: calc(-14% + 4%);
    max-width: clamp(120px, 22vw, 320px); height:auto; opacity:.95;
}