/* Estilos para a Página Sobre Nós */

/* Hero Section - Sobre Nós */
.hero-sobre-nos {
    background: linear-gradient(135deg, rgba(0, 112, 224, 0.05) 0%, rgba(0, 112, 224, 0.15) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo circular no fundo */
.hero-sobre-nos:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.1) 0%, rgba(0, 112, 224, 0) 70%);
    z-index: 0;
}

.hero-sobre-nos:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.08) 0%, rgba(0, 112, 224, 0) 70%);
    z-index: 0;
}

.hero-sobre-nos .container { /* O HTML tem .container.hero-sobre-nos-content */
    display: flex;
    flex-direction: row; /* Lado a lado por padrão */
    align-items: center;
    gap: 60px; /* Aumentado o espaço entre imagem e texto */
    position: relative;
    z-index: 1;
}

.hero-sobre-nos-image {
    flex: 0 0 45%; /* Imagem ocupa 45% da largura, não cresce/encolhe */
    max-width: 480px; /* Largura máxima aumentada para o container da imagem */
    position: relative;
}

.hero-sobre-nos-image:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 112, 224, 0.3);
    border-radius: 12px;
    z-index: -1;
}

.hero-sobre-nos-image img {
    max-width: 100%; /* Imagem responsiva dentro do seu container */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 112, 224, 0.2);
    display: block; /* Remove espaço extra abaixo da imagem */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-sobre-nos-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 112, 224, 0.3);
}

.hero-sobre-nos-text {
    flex: 1; /* Texto ocupa o espaço restante */
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-sobre-nos-text .breadcrumb-sobre-nos {
    font-size: 0.9em;
    color: #0070e0; /* Atualizada para a cor principal */
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding-left: 10px;
}

.hero-sobre-nos-text .breadcrumb-sobre-nos:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: linear-gradient(to bottom, #0070e0, #005bb8);
    border-radius: 4px;
}

.hero-sobre-nos-text h1 {
    font-size: 3.2em;
    color: #102a43; /* Cor mais escura e rica para títulos */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(90deg, #102a43, #0070e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sobre-nos-text p:not(.breadcrumb-sobre-nos) {
    font-size: 1.15em;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 570px;
}

/* Estilos para a seção Nossa História - Timeline Horizontal e Blocos de Conteúdo */
.nossa-historia-section {
    padding: 100px 0 70px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos */
.nossa-historia-section:before {
    content: '';
    position: absolute;
    top: 50px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.03) 0%, rgba(0, 112, 224, 0) 70%);
    z-index: 0;
}

.nossa-historia-section:after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.04) 0%, rgba(0, 112, 224, 0) 70%);
    z-index: 0;
}

.nossa-historia-section h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0070e0;
    font-size: 2.7em;
    font-weight: 700;
    position: relative;
}

.nossa-historia-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0070e0, rgba(0, 112, 224, 0.4));
    margin: 25px auto 0;
    border-radius: 2px;
}

.nossa-historia-section .historia-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #4a5568;
    font-size: 1.15em;
    line-height: 1.8;
}

/* Horizontal Timeline */
.horizontal-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.timeline-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 15px 25px;
    position: relative;
    color: #718096; /* Cor padrão mais suave para inativos */
    transition: all 0.4s ease;
    border-radius: 8px;
}

.timeline-milestone:hover {
    background-color: rgba(0, 112, 224, 0.03);
    transform: translateY(-3px);
}

.timeline-milestone .year {
    font-size: 1.8em;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.timeline-milestone .milestone-title {
    font-size: 1.05em;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.timeline-milestone.active {
    background-color: rgba(0, 112, 224, 0.08);
    box-shadow: 0 4px 15px rgba(0, 112, 224, 0.12);
}

.timeline-milestone.active .year,
.timeline-milestone.active .milestone-title {
    color: #0070e0; /* Cor azul para ativo */
}

.timeline-milestone.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #0070e0, #0052a2);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 112, 224, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 112, 224, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(0, 112, 224, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 112, 224, 0);
    }
}

.timeline-connector {
    width: 80px; /* Largura do conector aumentada */
    height: 3px;
    background: linear-gradient(to right, rgba(0, 112, 224, 0.15), rgba(0, 112, 224, 0.4), rgba(0, 112, 224, 0.15));
    margin: 0 12px;
    position: relative;
    top: -10px; /* Alinha com o título do milestone */
    border-radius: 3px;
}

/* History Content Blocks */
.history-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; /* Aumentado espaçamento entre texto e imagens */
    margin-bottom: 60px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%); /* Gradiente sutil */
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 112, 224, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.history-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 112, 224, 0.15);
}

/* Detalhes decorativos */
.history-block:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0070e0, #0052a2);
}

.history-block:after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.03) 0%, rgba(0, 112, 224, 0) 70%);
    z-index: 0;
}

.history-text {
    width: 100%;
    max-width: 800px; /* Aumentado para melhor legibilidade */
    text-align: center;
    position: relative;
    z-index: 1;
}

.history-text h3 {
    font-size: 2.1em;
    color: #0070e0;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.history-text h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0070e0, rgba(0, 112, 224, 0.4));
    margin: 12px auto 0;
    border-radius: 2px;
}

.history-text p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    margin-bottom: 15px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

.history-image-container { /* Renamed from .history-image */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px; /* Espaçamento aumentado entre os itens */
    width: 100%;
    position: relative;
    z-index: 1;
}

.person-image {
    flex-basis: calc(33% - 30px); /* Ajustado para o novo gap */
    min-width: 260px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
}

.person-image:hover {
    transform: translateY(-7px);
}

.person-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 112, 224, 0.15);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    border: 4px solid #fff;
}

.person-image:hover img {
    box-shadow: 0 15px 30px rgba(0, 112, 224, 0.25);
}

/* Efeito de borda decorativa */
.person-image:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 60px); /* Ajustado para não incluir a legenda */
    border: 2px dashed rgba(0, 112, 224, 0.2);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.person-image:hover:before {
    opacity: 1;
    transform: translate(-8px, -8px);
}

.person-image .legenda {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.05em;
    line-height: 1.4;
    margin-top: 5px;
}

.person-image .legenda span {
    font-weight: 500;
    font-size: 0.9em;
    display: block;
    color: #0070e0;
    margin-top: 5px;
    opacity: 0.8;
}

/* Media Queries específicas para a página Sobre Nós */
/* Ajustes para tablet */
@media (max-width: 992px) {
    .hero-sobre-nos .container {
        flex-direction: column; /* Empilha imagem e texto */
    }

    .hero-sobre-nos-image {
        margin: 0 auto 20px;
        max-width: 400px;
    }
    
    .hero-sobre-nos-image:before {
        display: none; /* Remove o elemento decorativo em telas menores */
    }
    
    .hero-sobre-nos-text {
        text-align: center;
    }
    
    .hero-sobre-nos-text p:not(.breadcrumb-sobre-nos) {
        margin: 0 auto;
    }

    .hero-sobre-nos-text .breadcrumb-sobre-nos {
        display: inline-block;
    }
    
    /* Seção Nossa História */
    .nossa-historia-section {
        padding: 70px 0 50px;
    }

    .horizontal-timeline {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .timeline-connector {
        display: none; /* Esconde os conectores em telas menores */
    }
    
    .timeline-milestone {
        margin: 15px 10px;
        width: 45%;
    }

    .history-block {
        padding: 30px 25px;
    }
    
    .person-image {
        flex-basis: calc(50% - 20px);
        max-width: 280px;
    }

    /* Seção Nossos Valores */
    .nossos-valores-section,
    .presenca-nacional-section {
        padding: 60px 0;
    }

    .valor-card {
        padding: 35px 25px;
    }

    .video-placeholder {
        max-width: 90%;
        border-width: 4px;
    }
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    /* Hero Sobre Nós */
    .hero-sobre-nos {
        padding: 50px 0;
    }

    .hero-sobre-nos-text h1 {
        font-size: 2.2em;
    }
    
    .hero-sobre-nos-text p:not(.breadcrumb-sobre-nos) {
        font-size: 1em;
        padding: 0 15px;
    }
    
    /* Nossa História */
    .nossa-historia-section {
        padding: 60px 0 40px;
    }

    .nossa-historia-section h2 {
        font-size: 2.2em;
    }
    
    .nossa-historia-section .historia-intro {
        font-size: 1em;
        padding: 0 20px;
    }
    
    .timeline-milestone {
        width: 100%;
        margin: 10px 0;
    }

    .timeline-milestone .year {
        font-size: 1.5em;
    }
    
    .timeline-milestone .milestone-title {
        font-size: 0.9em; /* Reduz tamanho do título do milestone */
    }
    .timeline-connector {
        display: none; /* Esconde conectores em mobile para layout mais limpo */
    }

    .history-block {
        padding: 20px;
        gap: 20px;
    }
    .history-text h3 {
        font-size: 1.6em;
    }
    .history-text p {
        font-size: 0.95em;
    }
    .history-image-container {
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center stacked images */
        gap: 20px;
    }
    .person-image {
        flex-basis: auto; /* Allow natural width up to max-width */
        width: 100%; /* Take full width of the centered container */
        max-width: 350px; /* Max width for stacked images on mobile */
        min-width: auto;
    }
    /* Remove margin-bottom for :not(:last-child) if gap is sufficient */
    .person-image:not(:last-child) {
        margin-bottom: 0; 
    }
}

/* Estilos para a Seção Nossos Valores */
.nossos-valores-section {
    padding: 90px 0 60px;
    background: linear-gradient(135deg, #0070e0 0%, #0052a2 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos circulares */
.nossos-valores-section:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.nossos-valores-section:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.nossos-valores-section h2 {
    font-size: 2.7em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.valores-subtitulo {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px; /* Espaçamento aumentado entre os cards */
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.valor-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    background-color: #ffffff;
}

/* Detalhes decorativos */
.valor-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0070e0, #0052a2);
    opacity: 0.7;
}

.valor-card:after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 112, 224, 0.05) 0%, rgba(0, 112, 224, 0) 70%);
}

.valor-card .valor-icon {
    font-size: 3rem;
    color: #0070e0;
    background: linear-gradient(135deg, #0070e0, #0052a2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 112, 224, 0.3));
}

.valor-card:hover .valor-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 112, 224, 0.5));
}

.valor-card h4 {
    font-size: 1.4em;
    color: #102a43;
    margin-bottom: 15px;
    font-weight: 700;
}

.valor-card p {
    font-size: 1.05em;
    line-height: 1.75;
    color: #4a5568;
}

/* Responsividade para a grade de valores */
@media (max-width: 1100px) { /* Ponto de quebra já estabelecido */
    .nossos-valores-section h2 {
        font-size: 2.2em;
    }
    .valores-subtitulo {
        font-size: 1em;
    }
    .valores-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
        gap: 25px;
    }
    .valor-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .nossos-valores-section h2 {
        font-size: 2em;
    }
    .valor-card h4 {
        font-size: 1.2em;
    }
    .valor-card p {
        font-size: 0.9em;
    }
}

/* Estilos para a Seção Presença Nacional */
.presenca-nacional-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0070e0 0%, #0052a2 100%);
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos circulares invertidos da seção de valores */
.presenca-nacional-section:before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.presenca-nacional-section:after {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.presenca-nacional-section h2 {
    font-size: 2.7em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.presenca-nacional-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    margin: 20px auto 0;
    border-radius: 2px;
}

.presenca-nacional-section p {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.video-placeholder {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.5s ease;
    border: 6px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ===== ESTILOS DOS CTAs ===== */

/* CTA Section Base */
.cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* CTA 1 - Após Hero */
.cta-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid rgba(0, 112, 224, 0.1);
    border-bottom: 1px solid rgba(0, 112, 224, 0.1);
}

.cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.cta-hero h3 {
    font-size: 2.2rem;
    color: #0D2B57;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-hero p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* CTA 2 - Após História */
.cta-historia {
    background: linear-gradient(135deg, #0070e0 0%, #0057b8 100%);
    color: white;
}

.cta-historia::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.cta-historia::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}

.cta-historia h3 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-historia p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA 3 - Final */
.cta-final {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    border-top: 1px solid rgba(0, 112, 224, 0.1);
    border-bottom: 1px solid rgba(0, 112, 224, 0.1);
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.cta-final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
}

.cta-final h3 {
    font-size: 2.6rem;
    color: #0D2B57;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-final p {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits i {
    color: #39aeff;
    margin-right: 12px;
    font-size: 1.1rem;
}

.cta-final-action {
    text-align: center;
}

.cta-btn-final {
    font-size: 1.2rem;
    padding: 18px 40px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 112, 224, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 112, 224, 0.4);
}

.cta-note {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    font-style: italic;
}

/* Estilos dos Botões CTA */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Responsividade dos CTAs */
@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-hero h3,
    .cta-historia h3 {
        font-size: 1.8rem;
    }
    
    .cta-final-text h3 {
        font-size: 2rem;
    }
    
    .cta-final-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.video-placeholder video {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsividade para a seção Presença Nacional */
@media (max-width: 1100px) {
    .presenca-nacional-section h2 {
        font-size: 2.2em;
    }
    .presenca-nacional-section p {
        font-size: 1em;
    }
    .video-placeholder {
        max-width: 90%; /* Ajusta a largura máxima em telas menores */
    }
}

@media (max-width: 768px) {
    .presenca-nacional-section h2 {
        font-size: 2em;
    }
}

/* Animations on Scroll */
.fade-in-element {
    opacity: 0;
    transform: translateY(25px); /* Começa um pouco abaixo */
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}
