/* Importando a fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* ---------------------- VARIÁVEIS DE TEMA E COR DA POLO ---------------------- */
:root {
    --primary-blue: #2A74B8;
    --highlight-yellow: #FFD700;
    --dark-grey: #363636;
    --light-grey: #F4F4F4;
    --white: #FFFFFF;

    /* Variáveis para Tema Claro (Padrão) */
    --bg-color: var(--white);
    --text-color: var(--dark-grey);
    --header-bg: var(--white);
    --footer-bg: #f7f7f7;
    --icon-color: var(--dark-grey);
    --link-color: var(--dark-grey);
    --card-bg: var(--white);
    --cookie-bg: rgba(0, 0, 0, 0.6); 
    --cookie-text: var(--white);
}

body.dark-mode {
    --bg-color: #000000;
    --text-color: #f5f5f5;
    --header-bg: #0d0d0d;
    --footer-bg: #0d0d0d;
    --icon-color: var(--highlight-yellow);
    --link-color: var(--highlight-yellow);
    --card-bg: #1a1a1a;
    --cookie-bg: rgba(20, 20, 20, 0.85);
    --cookie-text: var(--white);
}

/* ---------------------- ESTILOS GERAIS ---------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

header, footer {
    background-color: var(--header-bg);
    transition: background-color 0.3s;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--highlight-yellow);
}

h1, h2, h3, p {
    color: var(--text-color);
    transition: color 0.3s;
}

.card {
    background: var(--card-bg);
    color: var(--text-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Esconde a seta em telas de desktop de forma obrigatória */
.arrow-icon {
    display: none !important;
}

/* ---------------------- CABEÇALHO E NAVEGAÇÃO ---------------------- */
header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Para que o theme-switch fixo não atrapalhe o layout */
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 1rem;
    position: relative;
}

nav a {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    display: block;
}

/* Efeito de underline moderno ao passar o mouse */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Estilos do Menu Suspenso (Dropdown) - PADRÃO (DESKTOP) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--header-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out forwards;
    z-index: 1001;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.25rem;
    font-weight: normal;
}

.dropdown-menu a:hover {
    background-color: var(--light-grey);
    color: var(--primary-blue);
}

/* Regra para exibir o submenu no desktop AO PASSAR O MOUSE */
nav ul li:hover .dropdown-menu {
    display: block;
}

/* Animação para o menu suspenso */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------- SWITCH DE TEMA (Correção 2: Desktop) ---------------------- */
.theme-switch {
    /* DESKTOP: VAI PARA O CANTO SUPERIOR DIREITO */
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

body.dark-mode .theme-switch {
    background: rgba(20,20,20,0.8);
}

.theme-switch i {
    color: var(--icon-color);
    font-size: 20px;
    transition: color 0.3s;
}

/* ---------------------- BARRA DE PROGRESSO + AVIÃO (Correção 1: Avião) ---------------------- */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #eee;
    z-index: 9998;
    overflow: visible;
}

#scroll-progress {
    height: 100%;
    width: 0%;
    background: var(--highlight-yellow);
    transition: width 0.1s linear;
    position: relative;
}

#plane-tracker {
    position: absolute;
    top: 50%;
    /* O avião é sempre posicionado na ponta direita do progresso */
    left: 100%; 
    width: 40px;
    height: auto;
    pointer-events: none;
    /* Move o avião -50% do seu próprio tamanho para que ele se CENTRALIZE no ponto 100% da barra. 
       A rotação padrão é 0 graus (apontando para a direita, sentido do scroll down) */
    transform: translateY(-50%) translateX(-50%) rotate(0deg); 
    transition: transform 0.3s ease;
}

/* Classe para rotação inversa (scroll para cima) */
#plane-tracker.reverse {
    /* CORREÇÃO: Espelhamento horizontal em vez de rotação de 180deg */
    transform: translateY(-50%) translateX(-50%) scaleX(-1);
}

/* ---------------------- BANNER DE COOKIES ---------------------- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--cookie-bg);
    color: var(--cookie-text);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 20px;
    box-sizing: border-box;
    z-index: 9997;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
    transition: background 0.3s, color 0.3s;
}

#cookie-banner p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    max-width: 900px;
    color: var(--cookie-text);
}

#cookie-banner a {
    color: var(--highlight-yellow);
    font-weight: 600;
    text-decoration: none;
}

#cookie-banner a:hover {
    text-decoration: underline;
}

#cookie-banner button {
    background: var(--highlight-yellow);
    color: #000;
    border: none;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-banner button:hover {
    background: #e6c300;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    #cookie-banner p {
        font-size: 13px;
    }

    #cookie-banner button {
        width: 100%;
    }
}

/* ---------------------- SEÇÕES GERAIS ---------------------- */
section {
    padding: 4rem 0;
}

.hero {
    color: var(--white);
    text-align: center;
    padding: 8rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

body.dark-mode .hero h1 {
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-grey);
}

body.dark-mode .hero p {
    color: var(--white);
}

.btn {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #205c96;
}

.content-section {
    text-align: center;
	 padding: 1rem 0; /* REDUZIDO: era 4rem 0 */
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    padding: 2rem;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

/* ---------------------- RODAPÉ ---------------------- */
footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 2rem 0;
    text-align: center;
}

body.dark-mode footer p, body.dark-mode footer a {
    color: var(--text-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logos img {
   height: 40px;
    margin: 0 1rem;
}

/* Correção 3: Logos da ANAC/ANTT no Tema Claro */
body:not(.dark-mode) .footer-logos img {
    /* No tema claro (fundo branco), inverte para escurecer logos brancas */
    filter: invert(100%);
}

body.dark-mode .footer-logos img {
    /* No tema escuro, remove o filtro */
    filter: none;
}


/* Botão Flutuante do WhatsApp */
.whatsapp-button {
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-button .fab {
    font-size: 1.2rem;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


/* ---------------------- ESTILOS RESPONSIVOS ---------------------- */
.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-grey);
    z-index: 1002;
}

body.dark-mode .hamburger-menu {
    color: var(--highlight-yellow);
}

/* Regras gerais para a seta */
.arrow-icon {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.arrow-icon.rotate {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
        order: 3; 
    }
    
    /* Correção 2: Alinhamento do Botão de Tema no Mobile */
    .theme-switch {
        /* MOBILE: Volta a ser um item flexível ao lado do hamburger */
        position: static;
        order: 2; 
        margin-right: 15px;
        background: transparent;
        box-shadow: none;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex-grow: 1; 
    }

    /* Exibe a seta apenas em telas pequenas */
    .arrow-icon {
        display: inline-block !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 70%;
        max-width: 300px;
        background-color: var(--header-bg);
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 4rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-menu ul li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--light-grey);
    }

    .nav-menu ul li a {
        padding: 1rem 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        animation: none;
        background-color: transparent;
        display: none;
        max-height: 0;
        overflow: hidden;
    }
    
    .dropdown-menu.active-dropdown {
        display: block;
        max-height: 500px;
    }

    .dropdown-menu li {
        border: none;
    }
    
    .dropdown-menu a {
        padding-left: 2.5rem;
        font-weight: normal;
        background-color: var(--light-grey);
        color: var(--dark-grey);
    }
    
    body.dark-mode .dropdown-menu a {
        background-color: #333;
        color: var(--text-color);
    }

    .dropdown-menu a:hover {
        background-color: #e0e0e0;
    }
    
    body.dark-mode .dropdown-menu a:hover {
         background-color: #444;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logos {
        margin-top: 1rem;
    }
    
    .floating-btn {
        right: 10px;
        bottom: 10px;
        padding: 10px 20px;
    }
}

/* ---------------------- BANNER ROTATIVO ---------------------- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
	padding: 0.4rem 0; /* REDUZIDO: era 2rem 0 */
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
	padding: 1rem 0; /* REDUZIDO: era 4rem 0 */
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: absolute;
    bottom: 100px; /* Posiciona acima das bolinhas */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 90%;
    max-width: 800px;
    padding: 0;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.banner-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
}

.banner-content .btn {
    background: rgba(42, 116, 184, 0.95); /* Azul da Polo Logística */
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background: rgba(32, 92, 150, 1); /* Azul mais escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* Botões de navegação */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    color: #2A74B8;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.banner-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

/* Indicadores */
.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

.dot:hover {
    background: white;
    border-color: #FFD700;
}

/* Overlay escuro */
.banner-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .banner-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .banner-nav.prev {
        left: 10px;
    }
    
    .banner-nav.next {
        right: 10px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
}

/* ---------------------- BOTÃO LINKEDIN ---------------------- */
.linkedin-btn-container {
    margin: 15px 0;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0077B5 0%, #00669B 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    border: 2px solid transparent;
}

.linkedin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 119, 181, 0.4);
    background: linear-gradient(135deg, #00669B 0%, #005885 100%);
    color: white;
}

.linkedin-btn:active {
    transform: translateY(0);
}

.linkedin-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.linkedin-btn:hover i {
    transform: scale(1.2);
}

/* Responsivo */
@media (max-width: 768px) {
    .linkedin-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ---------------------- SEÇÃO DE AVALIAÇÕES GOOGLE ---------------------- */
.reviews-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, #f8f9fa 100%);
}

body.dark-mode .reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.reviews-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.review-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.review-item img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.review-item img:hover {
    transform: scale(1.02);
}

/* Botões de navegação das avaliações */
.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(42, 116, 184, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.review-nav.prev {
    left: 15px;
}

.review-nav.next {
    right: 15px;
}

/* Indicadores das avaliações */
.review-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(42, 116, 184, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.review-dot:hover {
    background: var(--primary-blue);
    border-color: var(--highlight-yellow);
}

/* Efeito de destaque */
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--highlight-yellow), transparent);
}



/* ---------------------- SEÇÃO DE AVALIAÇÕES GOOGLE SIMPLIFICADA ---------------------- */
.reviews-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.reviews-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.reviews-container-simple {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 3rem; /* Espaço extra para as bolinhas */
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    margin-bottom: 2rem; /* Espaço entre avaliação e bolinhas */
}

.review-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.review-item img {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-item img:hover {
    transform: scale(1.02);
}

/* Indicadores das avaliações */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem; /* Reduzi ainda mais a margem superior */
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.review-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(42, 116, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
}

.review-dot:hover {
    background: var(--primary-blue);
    border-color: var(--highlight-yellow);
}

/* Responsivo para avaliações simplificadas */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
    }
    
    .reviews-container-simple {
        padding-bottom: 2.5rem;
    }
    
    .reviews-track {
        margin-bottom: 1.5rem;
    }
    
    .review-item {
        padding: 0 0.5rem;
    }
    
    .review-item img {
        max-height: 280px;
    }
    
    .review-dots {
        margin-top: 0.5rem;
        gap: 10px;
    }
    
    .review-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .reviews-container-simple {
        padding-bottom: 2rem;
    }
    
    .reviews-track {
        margin-bottom: 1rem;
    }
    
    .review-item img {
        max-height: 220px;
    }
    
    .reviews-section h2 {
        font-size: 1.8rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .review-dots {
        margin-top: 0.5rem;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
}



/* ---------------------- PÁGINA QUEM SOMOS ---------------------- */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card ul {
    list-style: none;
    text-align: left;
}

.about-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-card li:before {
    content: "✓";
    color: var(--highlight-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* History Section */
.history-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

body.dark-mode .history-section {
    background: #1a1a1a;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.history-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.history-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.history-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Differentials Section */
.differentials-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.differentials-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 por linha */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.differential-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.differential-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.differential-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.differential-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.cta-section p {
    color: white !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* Garante que nenhuma outra regra sobrescreva */
body .cta-section p {
    color: white !important;
}

body.dark-mode .cta-section p,
body.light-mode .cta-section p {
    color: white !important;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Link ativo no menu */
nav a.active {
    color: var(--primary-blue);
}

nav a.active::after {
    width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-section,
    .history-section,
    .differentials-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .history-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .history-text h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .differential-item {
        padding: 1.5rem 0.5rem;
    }
}

/* ---------------------- PÁGINA SERVIÇOS ---------------------- */

/* Services Main Section */
.services-main {
    padding: 5rem 0;
    background: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(42, 116, 184, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card.large {
    text-align: center;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.service-features li i {
    color: var(--highlight-yellow);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.service-cta {
    margin-top: 2rem;
}

/* Specialized Services */
.specialized-services {
    padding: 5rem 0;
    background: var(--light-grey);
}

body.dark-mode .specialized-services {
    background: #1a1a1a;
}

.specialized-services h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialized-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.specialized-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.specialized-icon i {
    font-size: 1.8rem;
    color: white;
}

.specialized-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.specialized-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.advantages-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.advantage-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-main,
    .specialized-services,
    .advantages-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.7rem;
    }
    
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .specialized-card {
        padding: 2rem 1rem;
    }
    
    .advantage-item {
        padding: 1.5rem 0.5rem;
    }
}

/* ---------------------- PÁGINA SERVIÇOS ATUALIZADA ---------------------- */

/* Services Category Sections */
.services-category {
    padding: 5rem 0;
    background: var(--bg-color);
}

.services-category.aereo {
    background: var(--light-grey);
}

body.dark-mode .services-category.aereo {
    background: #1a1a1a;
}

.category-header {
    text-align: center;
    margin-bottom: 4rem;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(42, 116, 184, 0.2);
}

.service-card.featured {
    border-color: var(--highlight-yellow);
}

.service-card.premium {
    border-color: #FF6B6B;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--highlight-yellow);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-card.featured .service-badge {
    background: #FF6B6B;
    color: white;
}

.service-card.premium .service-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-tagline {
    color: var(--highlight-yellow);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.service-description {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
}

.service-features li i {
    color: var(--highlight-yellow);
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.9rem;
}

.service-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(42, 116, 184, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.service-note small {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.85rem;
    line-height: 1.4;
}

.service-cta {
    text-align: center;
}

.service-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.advantages-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.advantage-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-category {
        padding: 3rem 0;
    }
    
    .category-icon {
        width: 80px;
        height: 80px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .advantage-item {
        padding: 1.5rem 0.5rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ---------------------- PÁGINA TRABALHE CONOSCO ---------------------- */

/* Why Work Section */
.why-work-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.why-work-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

body.dark-mode .jobs-section {
    background: #1a1a1a;
}

.jobs-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.job-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
}

.job-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.job-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.job-location, .job-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.job-location i, .job-type i {
    color: var(--primary-blue);
}

.job-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-requirements {
    margin-bottom: 2rem;
}

.job-requirements h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.job-requirements ul {
    list-style: none;
}

.job-requirements li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-color);
}

.job-requirements li:before {
    content: "•";
    color: var(--highlight-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.spontaneous-application {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px dashed var(--primary-blue);
}

.spontaneous-application h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.spontaneous-application p {
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Application Form */
.application-form-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.form-container p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    border-color: #555;
    background: #2a2a2a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.file-upload-container {
    position: relative;
}

.file-upload-container input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-info {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
    background: var(--bg-color);
}

body.dark-mode .file-upload-info {
    border-color: #555;
}

.file-upload-container:hover .file-upload-info {
    border-color: var(--primary-blue);
}

.file-upload-info i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.file-upload-info span {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.file-upload-info small {
    color: var(--text-color);
    opacity: 0.7;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

body.dark-mode .process-section {
    background: #1a1a1a;
}

.process-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
    .why-work-section,
    .jobs-section,
    .application-form-section,
    .process-section {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .job-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-card,
    .job-card {
        padding: 2rem 1rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .file-upload-info {
        padding: 1.5rem 1rem;
    }
    
    .process-step {
        padding: 1.5rem 0.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ---------------------- PÁGINA CONTATOS ---------------------- */

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.contact-description {
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-text h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text small {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Social Contacts */
.social-contacts {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    text-align: center;
}

.social-contacts h4 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin {
    background: #0077B5;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
    color: white;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link i {
    font-size: 1.3rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-form {
    max-width: 100%;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form select,
body.dark-mode .contact-form textarea {
    border-color: #555;
    background: #2a2a2a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--light-grey);
}

body.dark-mode .map-section {
    background: #1a1a1a;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.map-section p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366 !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
}

.btn-whatsapp:hover {
    background: #128C7E !important;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Responsivo */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .map-section {
        padding: 3rem 0;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-details,
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .map-section h2 {
        font-size: 2rem;
    }
}

/* Ajuste da altura do Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    color: white;
    text-align: center;
    padding: 3rem 0; /* REDUZIDO: era 6rem 0 */
    min-height: auto; /* Remove altura mínima fixa */
}

.page-hero h1 {
    font-size: 2.5rem; /* Reduzido ligeiramente */
    margin-bottom: 0.5rem; /* Menor espaçamento */
    color: white;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95); /* Branco com leve transparência */
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Sombra suave para melhor legibilidade */
}



/* ---------------------- PÁGINA RASTREAMENTO ---------------------- */

/* Tracking Section */
.tracking-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.tracking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.tracking-info h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.tracking-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.tracking-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-color);
    font-weight: 500;
}

.tracking-help {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(42, 116, 184, 0.1);
}

.tracking-help h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.tracking-help p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.help-contacts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.help-contact:hover {
    background: #1e5a8a;
}

/* Tracking Form */
.tracking-form-container {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tracking-form .form-group {
    margin-bottom: 1.5rem;
}

.tracking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.tracking-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    background: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

body.dark-mode .tracking-form input {
    border-color: #555;
    background: #2a2a2a;
}

.tracking-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.tracking-form small {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.btn-tracking {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
}

.btn-tracking:hover {
    background: linear-gradient(135deg, #1e5a8a 0%, #164a75 100%);
}

/* Tracking Result */
.tracking-result {
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 2px solid rgba(42, 116, 184, 0.1);
    overflow: hidden;
}

.result-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    color: white;
    display: flex;
    justify-content: between;
    align-items: center;
}

.result-header h3 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.tracking-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Status Timeline */
.status-timeline {
    padding: 2rem;
}

.status-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.status-item:not(:last-child):before {
    content: '';
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: -2rem;
    width: 2px;
    background: #e0e0e0;
}

body.dark-mode .status-item:not(:last-child):before {
    background: #555;
}

.status-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    border: 3px solid white;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

body.dark-mode .status-dot {
    border-color: var(--card-bg);
}

.status-item.active .status-dot {
    background: var(--primary-blue);
}

.status-item.current .status-dot {
    background: var(--highlight-yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.status-content h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.status-item:not(.active):not(.current) h4 {
    color: var(--text-color);
    opacity: 0.6;
}

.status-content p {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.status-item:not(.active):not(.current) p {
    opacity: 0.6;
}

.status-date {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Delivery Info */
.delivery-info {
    padding: 1.5rem;
    background: rgba(42, 116, 184, 0.05);
    border-top: 1px solid rgba(42, 116, 184, 0.1);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .info-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--primary-blue);
}

.info-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--light-grey);
}

body.dark-mode .faq-section {
    background: #1a1a1a;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 968px) {
    .tracking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .tracking-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .tracking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .help-contacts {
        flex-direction: column;
    }
    
    .help-contact {
        justify-content: center;
    }
    
    .status-item {
        gap: 1rem;
    }
    
    .status-content h4 {
        font-size: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tracking-form-container {
        padding: 1.5rem 1rem;
    }
    
    .result-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .status-timeline {
        padding: 1.5rem 1rem;
    }
    
    .delivery-info {
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* ---------------------- MODAL POLÍTICA DE PRIVACIDADE ---------------------- */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--card-bg);
    margin: 2% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(42, 116, 184, 0.1);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e5a8a 100%);
    color: white;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-body {
    padding: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.privacy-content {
    padding: 2rem;
}

.privacy-content h3 {
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
    border-left: 4px solid var(--highlight-yellow);
    padding-left: 1rem;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content ul {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content strong {
    color: var(--primary-blue);
}

.privacy-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(42, 116, 184, 0.1);
    text-align: center;
}

.privacy-footer p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid rgba(42, 116, 184, 0.1);
    text-align: center;
    background: var(--light-grey);
}

body.dark-mode .modal-footer {
    background: #2a2a2a;
}

/* Scrollbar personalizada para o modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--light-grey);
}

body.dark-mode .modal-body::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #1e5a8a;
}

/* Responsivo */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .modal-footer {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content {
        padding: 1rem;
    }
    
    .privacy-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem;
    }
    
    .modal-footer {
        padding: 1rem;
    }
}


/* ---------------------- NOTIFICAÇÕES DO FORMULÁRIO ---------------------- */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.form-notification.success {
    background: #4CAF50 !important;
    border-left: 4px solid #2E7D32;
}

.form-notification.error {
    background: #f44336 !important;
    border-left: 4px solid #c62828;
}

.notification-close:hover {
    opacity: 0.8;
}

#curriculo-nome {
    color: #008000;
    font-weight: 600;
}

