/* ==========================================
   Variáveis Globais
========================================== */
:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --light-gray: #f8f9fa;
    --dark-blue: #002147;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #333333;
    --text-muted: #666666;
}

/* ==========================================
   Estilos Base
========================================== */
body {
    padding-top: 65px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* ==========================================
   Navbar Moderna
========================================== */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Logo/Título */
.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    padding: 3px 0;
}

.brand-text {
    color: var(--dark-blue);
}

.brand-text-accent {
    color: var(--primary-color);
    margin-left: 5px;
}

.brand-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
    animation: pulse 2s infinite;
}

/* Links de Navegação */
.navbar-nav {
    gap: 10px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 14px !important;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-number {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: 600;
    opacity: 0.8;
}

.nav-link-text {
    position: relative;
}

.nav-link-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-link-text::after {
    width: 100%;
}

/* Botão de Contato */
.contact-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    transition: all 0.3s ease !important;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Botão Mobile */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.toggler-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.toggler-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.toggler-icon span:nth-child(1) { top: 4px; }
.toggler-icon span:nth-child(2) { top: 14px; }
.toggler-icon span:nth-child(3) { top: 24px; }

/* Navbar com Scroll */
.navbar-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .nav-link {
        padding: 8px !important;
        justify-content: center;
    }

    .contact-btn {
        margin: 10px 0;
        text-align: center;
    }

    .navbar-nav {
        gap: 5px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.4rem;
    }
}

/* ==========================================
   Hero Section
========================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

/* Conteúdo */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Título */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Descrição */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Botões */
.hero-buttons {
    margin-bottom: 40px;
}

.btn-lg {
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
}

/* Estatísticas */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Logo */
.hero-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container da logo */
.logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Logo flutuante com fundo */
.floating-logo {
    width: 100%;
    height: auto;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Círculo de fundo */
.logo-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    z-index: 1;
}

/* Camada opaca dentro do círculo */
.logo-shape::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #dee4eb 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

/* Animações */
@keyframes floatingAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-logo {
        margin-top: 3rem;
    }
    
    .logo-wrapper {
        max-width: 350px;
    }
    
    .floating-logo {
        max-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .logo-wrapper {
        max-width: 280px;
    }
    
    .floating-logo {
        max-width: 250px;
    }
}

/* Partículas */
.logo-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.logo-particles span:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 0.4s;
}

.logo-particles span:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: 0.8s;
}

/* Animações */
@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes particle1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes particle2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes particle3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .logo-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .logo-wrapper {
        max-width: 300px;
    }
}

/* ==========================================
   Seção Sobre
========================================== */
#sobre {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(var(--primary-color-rgb), 0.05) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Opcional: adicionar um efeito sutil de mesh */
#sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(var(--primary-color-rgb), 0.03) 0%,
        transparent 60%
    );
    pointer-events: none;
}

/* Opcional: adicionar um segundo efeito de mesh */
#sobre::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at bottom left,
        rgba(var(--secondary-color-rgb), 0.02) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.purpose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 10px;
    background: var(--white);
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,102,204,0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* ==========================================
   Seção Nossas Ações
========================================== */
#acoes {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

/* Header da Seção */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.9);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Ajustes de texto para fundo escuro */
#acoes .section-header h6 {
    color: rgba(255, 255, 255, 0.9);
}

#acoes .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#acoes .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Cards de Ação */
.action-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.action-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
}

/* Cores de fundo suaves para ícones */
.bg-primary-soft { background: rgba(0,102,204,0.1); color: var(--primary-color); }
.bg-success-soft { background: rgba(40,167,69,0.1); color: #28a745; }
.bg-info-soft { background: rgba(23,162,184,0.1); color: #17a2b8; }
.bg-warning-soft { background: rgba(255,193,7,0.1); color: #ffc107; }
.bg-danger-soft { background: rgba(220,53,69,0.1); color: #dc3545; }
.bg-purple-soft { background: rgba(111,66,193,0.1); color: #6f42c1; }

/* Conteúdo do Card */
.action-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.action-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Lista de Features */
.action-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-features li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.action-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .action-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ==========================================
   Seção Evento
========================================== */
#evento {
    background: linear-gradient(45deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
}

/* ==========================================
   Footer
========================================== */
.footer {
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
}

/* Logo e Descrição */
.footer-brand {
    margin-bottom: 25px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Títulos das Seções */
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Contato */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-newsletter .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 20px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Separador */
.footer-divider {
    margin: 40px 0;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Copyright e Links do Rodapé */
.footer-bottom {
    padding-top: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 30px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .copyright {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* ==========================================
   Animações
========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Delays de animação */
.action-item:nth-child(1) { animation-delay: 0.1s; }
.action-item:nth-child(2) { animation-delay: 0.2s; }
.action-item:nth-child(3) { animation-delay: 0.3s; }
.action-item:nth-child(4) { animation-delay: 0.4s; }
.action-item:nth-child(5) { animation-delay: 0.5s; }
.action-item:nth-child(6) { animation-delay: 0.6s; }

/* ==========================================
   Media Queries
========================================== */
@media (max-width: 991.98px) {
    .action-timeline::before {
        left: 50%;
    }
    
    .action-item.left .action-content,
    .action-item.right .action-content {
        margin: 0 20px;
    }
    
    .footer-info, 
    .footer-links, 
    .social-links {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .action-content {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================
   Seção Nosso Propósito
========================================== */
.purpose-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Header da Seção */
.section-header .header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Cards de Propósito */
.purpose-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Ícones */
.purpose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.purpose-icon i {
    font-size: 32px;
    color: white;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Conteúdo */
.purpose-content h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
}

.purpose-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Lista de Características */
.purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.purpose-list li {
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.purpose-list li::before {
    content: '→';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Overlay decorativo */
.card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 0%, rgba(0,102,204,0.05) 100%);
    border-radius: 0 20px 0 100%;
    z-index: 0;
    transition: all 0.3s ease;
}

.purpose-card:hover .card-overlay {
    width: 150px;
    height: 150px;
}

/* Animações */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .purpose-card {
        padding: 30px 25px;
    }

    .purpose-icon {
        width: 70px;
        height: 70px;
    }

    .purpose-icon i {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2.5rem;
    }

    .purpose-content h4 {
        font-size: 1.3rem;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite;
}

/* Adicione várias partículas com posições e animações diferentes */
.hero-particles span:nth-child(1) { top: 20%; left: 20%; }
.hero-particles span:nth-child(2) { top: 60%; left: 80%; }
.hero-particles span:nth-child(3) { top: 80%; left: 15%; }
.hero-particles span:nth-child(4) { top: 10%; left: 90%; }

/* ==========================================
   Seção Evento
========================================== */
.event-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Detalhes do Evento */
.event-details {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Countdown */
.event-countdown {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    color: white;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Informações do Evento */
.event-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background: #f1f3f5;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.info-content h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-muted);
}

/* Features do Evento */
.event-features {
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Card do Evento */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

/* Container da Imagem */
.event-image-container {
    position: relative;
    width: 100%;
    overflow: hidden; 
}

.event-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.event-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.event-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Container de Informações */
.event-info-container {
    padding: 30px;
}

/* Header do Evento */
.event-header {
    text-align: center;
}

.event-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.event-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Métricas do Evento */
.event-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,102,204,0.1);
}

.metric-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.metric-info {
    text-align: center;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Estilo e Animação do Botão CTA */
.event-cta .btn-primary {
    position: relative;
    padding: 15px 30px;
    font-weight: 600;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: 1;
}

/* Efeito de brilho */
.event-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(270deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--primary-color)
    );
    z-index: -1;
    background-size: 200% 200%;
    animation: borderGlow 3s ease infinite;
}

/* Efeito de hover */
.event-cta .btn-primary::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1;
}

.event-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.event-cta .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Badge no botão */
.event-cta .btn-primary .badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--secondary-color);
    color: white;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Estilos do Texto e Cabeçalho */
.event-category {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    background: rgba(0, 102, 204, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #141E30 0%, #243B55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.main-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.sub-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Separador */
.divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.divider-text {
    background: white;
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
}

/* Métricas Atualizadas */
.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 5px 0;
}

.metric-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .event-title {
        font-size: 2rem;
    }

    .main-question {
        font-size: 1.2rem;
    }

    .sub-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .event-title {
        font-size: 1.8rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
}

/* Estilos do Cabeçalho da Seção */
.section-header {
    position: relative;
    padding: 30px 0;
}

/* Badge superior */
.header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.badge-text {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 5px 15px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
}

/* Título Principal */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 25px 0;
    position: relative;
    color: var(--dark-blue);
}

.highlight-text {
    position: relative;
    color: var(--primary-color);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(var(--primary-color-rgb), 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Subtítulo */
.section-subtitle {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.section-subtitle p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(var(--primary-color-rgb), 0.3), 
        transparent
    );
}

.section-subtitle::before {
    left: 0;
}

.section-subtitle::after {
    right: 0;
}

/* Animação de entrada */
.section-header {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
    
    .section-subtitle p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px);
}

/* Responsividade para mobile */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

