/* Fundo full-width */
.ab-section{
    --accent: #DC98BE;
    background: var(--ab-bg, #f1eef2);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 2.5rem 0 3.25rem;
}
.ab-container{ width: min(1100px, 92vw); margin: 0 auto; }

/* Título */
.ab-title{
    font-family: "Playfair", serif;
    font-style: italic;
    font-weight: 700;
    color: #A27AA0;
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 .6rem;
    text-align: center;
    padding-bottom: 5.5rem;
}



/* Slider */
.ab-slider{ position: relative; }
.ab-track{ display:flex; transition: transform .6s ease; will-change: transform; }
.ab-slide{ min-width:100%; }

/* Grid 2×2 */
.ab-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; align-items:start; justify-items:center; }
.ab-grid figure{ margin:0; width:100%; }
.ab-grid img{ display:block;width: auto;height: 467px; border-radius:4px; box-shadow:0 6px 18px rgba(0,0,0,.08); }
.ab-grid figcaption{ text-align:center; font-size:.75rem; color:#5f5a62; margin-top:.35rem; }

/* Setas */
.ab-nav{
    position:absolute; top:50%; transform:translateY(-50%);
    background:transparent; border:0; padding:0; margin:0;
    width:56px; height:96px; cursor:pointer; font-size:0; line-height:0; overflow:hidden;
    z-index:5; opacity:.9; transition: opacity .2s ease, transform .15s ease;
    pointer-events:auto;
}
.ab-prev{ left:-6px; } .ab-next{ right:-6px; }
.ab-nav:hover{ opacity:1; transform:translateY(-50%) scale(1.03); }
.ab-nav::before{
    content:""; display:block; width:28px; height:56px; margin:0 auto; background-repeat:no-repeat; background-size:contain;
}
.ab-next::before{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='56' 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");
}
.ab-prev::before{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='56' 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");
}

/* CTA */
.ab-cta{ text-align:center; margin-top: 1.6rem; }
.ab-lead{ font-family: "Playfair", serif !important; font-weight:700; font-style:italic; color:#DD93B5; font-size:3rem;); margin:1.2rem 0 .25rem; }
.ab-sub{ font-family: "Raleway", sans-serif; font-size:1.5rem; color:#000; margin:.1rem 0 1.1rem; letter-spacing:.01em; }
.ab-btn{
    display:inline-flex; align-items:center; justify-content:center;
    font-family: "Raleway", sans-serif;
    font-weight:700; text-transform:uppercase; letter-spacing:.06em;
    color:#DD93B5; text-decoration:none; border:2px solid #DD93B5; border-radius:999px;
    padding:.75rem 1.8rem; background:transparent;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ab-btn:hover{ background:#DD93B5; color:#fff; transform:translateY(-2px); box-shadow:0 8px 18px rgba(193,121,155,.25); }

/* Responsivo */
@media (max-width:780px){ .ab-prev{left:-2px}.ab-next{right:-2px}.ab-nav{width:44px;height:80px}.ab-nav::before{width:24px;height:48px} }
@media (max-width:560px){ .ab-grid{grid-template-columns:1fr} }
