/* ===================================
   O SANTO MOVIMENTO - ESTILOS CSS
   Estética: Minimalista, Sofisticada (Vidya Studio)
   Paleta: Branco, Cinza Claro, Laranja (#FF6B35)
   =================================== */

/* ===== VARIÁVEIS DE COR =====*/
:root {
    --primary-orange: #FF6B35;
    --primary-orange-dark: #E55A24;
    --primary-orange-light: #FFB88C;
    --white: #FFFFFF;
    --light-gray: #F7F7F8;
    --gray-medium: #D3D3D3;
    --gray-dark: #666666;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --border-light: #E0E0E0;

    /* Design system (clean/minimalista) */
    --bg: #FFFFFF;
    --bg-subtle: #FAFAFB;
    --surface: #FFFFFF;
    --surface-2: #F3F4F6;
    --border: rgba(17, 24, 39, 0.10);
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.10);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
}

/* ===== RESET E BASE =====*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Melhor foco/seleção (visual mais profissional) */
::selection {
    background: rgba(255, 107, 53, 0.25);
}

a {
    text-decoration: none;
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-orange-dark);
}

/* ===== NAVEGAÇÃO =====*/
.navbar {
    background-color: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 0;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-logo {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 400;
    margin-left: 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION =====*/
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/espaco.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1.5rem 1rem 3.5rem;
    color: var(--white);

}

/* Overlay para garantir leitura do texto (sem afetar o conteúdo) */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 10, 0.78) 0%,
            rgba(10, 10, 10, 0.62) 45%,
            rgba(10, 10, 10, 0.30) 100%
        );
    z-index: 0;

}

.hero-background {
    position: absolute;
    inset: -25% -15% auto auto;
    width: min(700px, 70vw);
    height: min(700px, 70vw);
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.55) 0%, rgba(255, 107, 53, 0.10) 45%, rgba(255, 107, 53, 0.0) 70%);
    filter: blur(30px);
    opacity: 0.9;
    z-index: 1;
    animation: slideInRight 1s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    padding: clamp(1.25rem, 4vw, 2.75rem);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--primary-orange);
    color: var(--white) !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    text-decoration: none;
}

.btn-cta:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    color: var(--white) !important;
}

.btn-cta.btn-cta-sm {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-cta.btn-cta-block {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.cta-caption {
    margin-top: 0.9rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
}

.hero-note {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.78);
}

.btn-cta:focus-visible {
    outline: 3px solid rgba(255, 184, 140, 0.9);
    outline-offset: 3px;
}

@media (min-width: 992px) {
    /* .hero-content {
        text-align: left;
    } */

    .hero-text {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===== SEÇÕES GERAIS =====*/
section:not(.hero-section) {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

/* Quando o container está centralizado, centraliza a barra abaixo do título */
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* ===== SEÇÃO PROPÓSITO =====*/
.proposito-section {
    background-color: var(--bg);
}

.valores-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pessoas-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin: 0;
}

.pessoas-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Carrossel do espaço dentro do card */
.espaco-carousel .carousel,
.espaco-carousel .carousel-inner {
    height: 360px;
}

.espaco-carousel .carousel-item,
.espaco-carousel .carousel-item img {
    height: 360px;
}

.espaco-carousel .carousel-item img {
    object-fit: cover;
}

.espaco-carousel .carousel-control-prev,
.espaco-carousel .carousel-control-next {
    width: 12%;
}

.espaco-carousel .carousel-control-prev-icon,
.espaco-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.espaco-carousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.pessoas-caption {
    padding: 1rem 1.25rem 1.25rem;
}

.pessoas-label {
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.pessoas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.pessoas-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.18);
    color: rgba(17, 24, 39, 0.92);
    font-size: 0.9rem;
    font-weight: 600;
}

.valor-card {
    background-color: var(--surface);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.valor-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.valor-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.valor-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* ===== SEÇÃO MODALIDADES =====*/
.modalidades-section {
    background-color: var(--bg-subtle);
}

.modalidade-card {
    background-color: var(--surface);
    padding: 2.75rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.modalidade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.modalidade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-orange);
}

.modalidade-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modalidade-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.modalidade-features {
    list-style: none;
    text-align: left;
    padding: 0;
}

.modalidade-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.modalidade-features i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-weight: 700;
}

/* ===== SEÇÃO EQUIPE =====*/
.equipe-section {
    background-color: var(--bg);
}

.equipe-card {
    background-color: var(--surface);
    padding: clamp(2.25rem, 4vw, 3.25rem);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.equipe-card--split {
    text-align: left;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.equipe-split {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
}

.equipe-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--bg-subtle);
}

.equipe-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.equipe-header h3 {
    margin: 0;
}

.equipe-cargo {
    margin-top: 0.25rem;
}

.equipe-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4rem;
    color: var(--white);
}

.equipe-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.equipe-cargo {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.equipe-formacao {
    background-color: var(--bg-subtle);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: left;
    border: 1px solid var(--border);
}

.equipe-formacao p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.equipe-formacao ul {
    list-style: none;
    padding: 0;
}

.equipe-formacao li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.equipe-formacao li::before {
    content: '✓ ';
    color: var(--primary-orange);
    font-weight: 700;
    margin-right: 0.5rem;
}

.equipe-descricao {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .equipe-split {
        grid-template-columns: 1fr;
    }

    .equipe-card--split {
        text-align: center;
    }

    .equipe-media {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ===== SEÇÃO RESULTADOS =====*/
.resultados-section {
    background-color: var(--bg-subtle);
}

.resultado-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.resultado-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.resultado-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--primary-orange);
}

.resultado-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.resultado-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== SEÇÃO PLANOS =====*/
.planos-section {
    background-color: var(--bg);
}

.plano-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.plano-card--featured {
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 18px 60px rgba(255, 107, 53, 0.14);
}

.plano-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 107, 53, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--primary-orange-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.plano-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plano-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: var(--text-dark);
}

.plano-price span {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.plano-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1rem;
}

.plano-features i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
    font-weight: 700;
}

.planos-footnote {
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.98rem;
}

/* ===== SEÇÃO FAQ =====*/
.faq-section {
    background-color: var(--bg);
}

.accordion-button {
    background-color: var(--bg-subtle);
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--border);
    font-size: 1.05rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: none;
    border-color: var(--primary-orange);
}

.accordion-button:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: var(--surface);
    color: var(--text-light);
    border: 1px solid var(--border);
    border-top: none;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* ===== SEÇÃO CONTATO =====*/
.contato-section {
    background-color: var(--bg-subtle);
}

.info-card {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card h3 i {
    color: var(--primary-orange);
    margin-right: 0.75rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.map-embed {
    margin-top: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-subtle);
}

.map-embed iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.contact-link {
    color: var(--primary-orange);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-orange-dark);
}

/* Card unificado (Horários + WhatsApp + Email) */
.contact-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-details {
    margin-top: 1.25rem;
    display: grid;
    gap: 1rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    align-items: flex-start;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.contact-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.contact-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 107, 53, 0.06) 100%);
    border: 1px solid rgba(255, 107, 53, 0.18);
}

.contact-item__icon i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.contact-item__title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item__text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-item__subtext {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP =====*/
.whatsapp-float {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: #25D366;
    color: #0B2B17;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float i {
    font-size: 1.35rem;
    color: #ffffff;
}

.whatsapp-float__text {
    color: #ffffff;
    font-size: 0.98rem;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    filter: brightness(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
    color: #ffffff;
}

@media (max-width: 520px) {
    .whatsapp-float {
        left: 0.9rem;
        bottom: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .whatsapp-float__text {
        display: none;
    }
}

/* ===== RODAPÉ =====*/
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-top {
    row-gap: 1.5rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand:hover {
    color: var(--white);
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 6px;
}

.footer-brand__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.footer-tagline {
    margin: 0 0 1.25rem;
    max-width: 38ch;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.16);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: var(--white);
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    background: rgba(255, 107, 53, 0.22);
    border-color: rgba(255, 107, 53, 0.55);
    color: var(--white);
}

.footer-cta i {
    font-size: 1.2rem;
}

/* ===== ANIMAÇÕES (reveal) ===== */
html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(6px);
    transition:
        opacity 700ms ease,
        transform 700ms ease,
        filter 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.footer h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.footer-info li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.75rem;
    align-items: start;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-info i {
    color: rgba(255, 107, 53, 0.95);
    margin-top: 2px;
}

.footer-info__link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    margin-left: 0.35rem;
}

.footer-info__link:hover {
    color: var(--primary-orange);
}

.footer-social {
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom__note {
    color: rgba(255, 255, 255, 0.55);
}

/* ===== ANIMAÇÕES =====*/
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVIDADE =====*/
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .hero-section::before {
        background:
            linear-gradient(180deg,
                rgba(10, 10, 10, 0.82) 0%,
                rgba(10, 10, 10, 0.62) 55%,
                rgba(10, 10, 10, 0.38) 100%
            );
    }

    .hero-content {
        text-align: center;
        background: rgba(0, 0, 0, 0.46);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.6px;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        display: inline-block;
        padding: 0.2rem 0.7rem;
        border-radius: 999px;
        background: rgba(255, 107, 53, 0.16);
        border: 1px solid rgba(255, 107, 53, 0.36);
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-text {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-note {
        display: inline-block;
        padding: 0.55rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 50px;
    }

    .hero-background {
        inset: -35% -30% auto auto;
        width: min(560px, 95vw);
        height: min(560px, 95vw);
        opacity: 0.75;
    }

    section:not(.hero-section) {
        padding: 3rem 0;
    }

    .valor-card,
    .modalidade-card,
    .resultado-card,
    .info-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.05rem;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .equipe-image {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .pessoas-card img {
        height: 260px;
    }

    .map-embed iframe {
        height: 220px;
    }
}

/* ===== ACESSIBILIDADE =====*/
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== IMPRESSÃO =====*/
@media print {
    .navbar,
    .footer {
        display: none;
    }

    body {
        background-color: var(--white);
    }

    section {
        page-break-inside: avoid;
    }
}
