/* =========================================
   VARIÁVEIS DE CORES E TIPOGRAFIA
   ========================================= */
:root {
    /* Identidade visual - Rose/Magenta Degradê */
    --primary-color: #ef08a9;
    --primary-light: #f666c8;
    --primary-dark: #b3067e;
    --secondary-color: #7c0458;

    /* Gradiente Principal */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);

    /* Cores de fundo e texto */
    --bg-color: #fafafa;
    --bg-light: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #eeeeee;

    /* Fontes */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Sombras Elevadas */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(155, 46, 86, 0.08);
    --shadow-hover: 0 20px 40px rgba(155, 46, 86, 0.15);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   PRELOADER
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 60%, #fff0f7 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo {
    height: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(239, 8, 169, 0.3));
}

.preloader-bar {
    width: 320px;
    max-width: 85vw;
    height: 5px;
    background: rgba(239, 8, 169, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: preloaderFill 1.8s ease-in-out forwards;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes preloaderFill {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0) translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* =========================================
   BOTÃO VOLTAR AO TOPO
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(239, 8, 169, 0.3);
    z-index: 9000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(239, 8, 169, 0.4);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
    }
}

/* =========================================
   RESETS BÁSICOS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   TIPOGRAFIA & TÍTULOS
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
}

/* =========================================
   LAYOUT & CONTAINERS
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* =========================================
   BOTÕES (CTA)
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 70, 118, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 70, 118, 0.4);
    color: #fff;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(217, 70, 118, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 70, 118, 0.5);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--bg-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* =========================================
   CABEÇALHO (HEADER)
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(239, 8, 169, 0.3);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

/* Logo Image */
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Navegação Desktop */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

.d-md-none {
    display: none;
}

@media (max-width: 991px) {
    .header {
        background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
        border-bottom: 2px solid var(--primary-color);
        box-shadow: 0 4px 20px rgba(239, 8, 169, 0.4);
    }

    .header-container {
        height: 100px;
        justify-content: center;
        /* Center the logo */
        position: relative;
    }

    .logo-img {
        height: 72px;
        /* Increased 10% from 65px */
    }

    .d-none-mobile {
        display: none;
    }

    .mobile-toggle {
        display: block;
        padding: 10px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(239, 8, 169, 0.1);
        border-radius: 8px;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: #fff5f8;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left var(--transition-smooth);
        padding: 40px 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .d-md-none {
        display: inline-flex;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding-top: 120px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-glass-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-glass-box {
        padding: 24px;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        background-position: center;
        padding-top: 100px;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.85);
    }
}

/* =========================================
   SOBRE O ESTÚDIO
   ========================================= */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.sobre-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
}

.img-fluid {
    width: 100%;
}

.rounded-premium {
    border-radius: 20px 100px 20px 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-smooth);
}

.sobre-imagem:hover .rounded-premium {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-imagem {
        order: -1;
    }

    /* Imagem primeiro no topo no mobile */
}

/* =========================================
   BENEFÍCIOS (GRIDS E CARDS)
   ========================================= */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.beneficio-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(217, 70, 118, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.beneficio-card:hover .icon-box {
    background: var(--gradient-primary);
    color: #fff;
}

.icon-box i {
    width: 32px;
    height: 32px;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.beneficio-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MODALIDADES (CARDS DE IMAGEM)
   ========================================= */
.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.modalidade-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

.modalidade-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(124, 4, 88, 0.2);
}

.modalidade-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.modalidade-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.5s ease;
}

.modalidade-card:hover .modalidade-img img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Overlay gradient on hover */
.modalidade-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(124, 4, 88, 0.5) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.modalidade-card:hover .modalidade-img::after {
    opacity: 1;
}

.modalidade-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.modalidade-conteudo {
    padding: 24px;
}

.modalidade-conteudo h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.modalidade-conteudo p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 1100px) {
    .modalidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .modalidades-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   GALERIA MASONRY GRID
   ========================================= */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    margin: 40px auto;
}

.galeria-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}

.galeria-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(124, 4, 88, 0.2);
}

.galeria-item.span-2 {
    grid-column: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Gallery overlay with icon on hover */
.galeria-item::after {
    content: '\2b';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 8, 169, 0.3) 0%, rgba(124, 4, 88, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.galeria-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .galeria-item.span-2 {
        grid-column: span 1;
    }
}

/* =========================================
   DEPOIMENTOS 
   ========================================= */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 40px;
    height: 40px;
    color: rgba(217, 70, 118, 0.15);
}

.depoimento-texto {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    margin-top: 15px;
    line-height: 1.7;
}

.cliente-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cliente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.cliente-detalhes h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.cliente-detalhes span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CTA FINAL (GRADIENT)
   ========================================= */
.gradient-bg {
    background: var(--gradient-primary);
    color: white;
}

.cta-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.1rem;
    }

    .cta-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* =========================================
   HORÁRIOS & PLANOS
   ========================================= */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.horario-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

.horario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(239, 8, 169, 0.12);
    border-color: var(--primary-light);
}

.horario-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(239, 8, 169, 0.15);
    transform: scale(1.05);
}

.horario-card.featured:hover {
    transform: scale(1.07) translateY(-5px);
}

.horario-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: white;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.horario-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 8, 169, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    color: var(--primary-color);
}

.horario-icon i {
    width: 36px;
    height: 36px;
}

.horario-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.horario-range {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.horario-lista {
    text-align: left;
    margin-bottom: 20px;
}

.horario-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.horario-lista li:last-child {
    border-bottom: none;
}

.horario-lista i {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.horario-vagas {
    display: inline-block;
    background: rgba(239, 8, 169, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .horarios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .horario-card.featured {
        transform: none;
    }
}

/* =========================================
   FAQ - PERGUNTAS FREQUENTES
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(239, 8, 169, 0.08);
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(239, 8, 169, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    gap: 15px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.5s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   MAPA / LOCALIZAÇÃO
   ========================================= */
.mapa-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.mapa-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.mapa-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.mapa-info-item i {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 3px;
}

.mapa-info-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mapa-info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.mapa-embed {
    min-height: 400px;
}

.mapa-embed iframe {
    width: 100%;
    height: 100%;
    border-radius: 0 24px 24px 0;
}

@media (max-width: 900px) {
    .mapa-container {
        grid-template-columns: 1fr;
    }

    .mapa-info {
        padding: 30px;
        text-align: center;
        align-items: center;
    }

    .mapa-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mapa-embed {
        min-height: 300px;
    }

    .mapa-embed iframe {
        border-radius: 0 0 24px 24px;
    }
}

/* =========================================
   LIGHTBOX (GALERIA FULLSCREEN)
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.lightbox-close {
    top: 25px;
    right: 25px;
}

.lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* =========================================
   RODAPÉ (FOOTER)
   ========================================= */
.rodape {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 80px;
}

.rodape-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 110px;
    /* Torna o logo inteiramente branco para dar contraste com o fundo escuro do rodapé */
    filter: brightness(0) invert(1);
}

.rodape h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.footer-links li,
.footer-contato li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contato li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contato i {
    color: var(--primary-light);
    width: 20px;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.rodape-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .rodape-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contato li,
    .social-links {
        justify-content: center;
    }
}

/* =========================================
   ANIMAÇÕES (SCROLL) - SISTEMA COMPLETO
   ========================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.animate-on-scroll.fade-up {
    transform: translateY(60px);
}

.animate-on-scroll.fade-left {
    transform: translateX(-60px);
}

.animate-on-scroll.fade-right {
    transform: translateX(60px);
}

.animate-on-scroll.scale-up {
    transform: scale(0.85);
}

.animate-on-scroll.rotate-in {
    transform: rotate(-5deg) translateY(40px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
}

/* Efeito parallax suave nas seções */
.parallax-section {
    transition: background-position 0.3s ease-out;
}

/* Efeito glow na imagem Sobre ao hover */
.rounded-premium {
    border-radius: 20px 100px 20px 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease, filter 0.6s ease;
    cursor: pointer;
}

.sobre-imagem:hover .rounded-premium {
    transform: scale(1.04) rotate(1deg);
    box-shadow: 0 30px 60px rgba(239, 8, 169, 0.2);
    filter: brightness(1.05);
}

/* Efeito nos cards de benefícios */
.beneficio-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease, border-color 0.5s ease;
    cursor: pointer;
}

.beneficio-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(239, 8, 169, 0.15);
    border-color: var(--primary-color);
}

/* Efeito nos depoimentos */
.depoimento-card {
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
    cursor: pointer;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 8, 169, 0.12);
}

.depoimento-card:hover .cliente-foto {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.cliente-foto {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

/* Efeito shimmer (brilho) nos cards ao hover */
.modalidade-card::before,
.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 3;
}

.modalidade-card:hover::before,
.beneficio-card:hover::before {
    left: 100%;
}

.modalidade-card,
.beneficio-card {
    position: relative;
    overflow: hidden;
}

/* Counter animation para números */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-gradient:hover {
    animation: pulse 0.6s ease;
}

/* Active state para mobile (toque) */
@media (hover: none) {
    .modalidade-card:active {
        transform: scale(0.97);
        box-shadow: 0 5px 15px rgba(124, 4, 88, 0.2);
    }

    .galeria-item:active {
        transform: scale(0.97);
    }

    .beneficio-card:active {
        transform: scale(0.97);
    }

    .depoimento-card:active {
        transform: scale(0.97);
    }

    .galeria-item::after {
        display: none;
    }
}