/* ========================================
   HERO — Slider & Page Banners
   Clínica Estética Senz
   Botanical Luxury
======================================== */

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: var(--cor-fundo-escuro);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s var(--ease-in-out);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.slide-ativo {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 43, 42, 0.45) 0%,
        rgba(28, 43, 42, 0.60) 60%,
        rgba(28, 43, 42, 0.70) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    padding: 0 20px;
}

.slide-content h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--cor-branco);
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.slide-content p {
    font-size: 1rem;
    color: var(--cor-acento);
    font-family: var(--fonte-titulo);
    font-style: italic;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

/* ── Slider Dots ── */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 185, 154, 0.2);
    border: 2px solid var(--cor-acento);
    cursor: pointer;
    transition: background-color var(--dur-fast) var(--ease-out),
                transform var(--dur-fast) var(--ease-out);
}

.slider-dot.dot-ativo,
.slider-dot:hover {
    background: var(--cor-acento);
    transform: scale(1.15);
}

.slider-dot:focus-visible {
    box-shadow: var(--foco-anel-escuro);
    outline: none;
}

/* ── Slider Arrows ── */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 185, 154, 0.1);
    border: 1px solid rgba(201, 185, 154, 0.2);
    color: var(--cor-acento);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--dur-fast) var(--ease-out),
                color var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast) var(--ease-out);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-prev:hover,
.slider-next:hover {
    background: var(--cor-acento);
    color: var(--cor-fundo-escuro);
    border-color: var(--cor-acento);
}

.slider-prev:focus-visible,
.slider-next:focus-visible {
    box-shadow: var(--foco-anel-escuro);
    outline: none;
}

/* ── Scroll Indicator ── */
.hero-scroll {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(201, 185, 154, 0.5);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: flutuar 2s ease-in-out infinite;
}

/* ── Page Banner ── */
.page-banner {
    background: var(--cor-fundo-escuro);
    padding: 130px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 185, 154, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(143, 181, 168, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-banner h1 {
    font-family: var(--fonte-titulo);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--cor-branco);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.page-banner .subtitulo-acento {
    color: var(--cor-acento);
    margin-bottom: 12px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    position: relative;
    z-index: 1;
}
