/* --- CONFIGURAÇÃO GLOBAL E ÂNCORA --- */
/* Scroll Suave */
html { scroll-behavior: smooth; }

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 90px; /* Acima do botão do WhatsApp */
    right: 25px;
    background: var(--primary-color, #004aad);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none; /* Invisível inicialmente */
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-to-top:hover { transform: translateY(-5px); background: #333; }

/* Validação Visual de Inputs */
input.error { border: 2px solid #ff4d4d !important; }
input.success { border: 2px solid #2ecc71 !important; }

/* Estilo para WebP/Imagens */
img { max-width: 100%; height: auto; }

/* Importação de fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* --- BARRA DE PROGRESSO --- */
.progress-container {
    position: fixed;
    top: 0;
    z-index: 3000;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, #fdc710, #fdc710);
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
    width: 0%;
    transition: width 0.1s ease;
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333399;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

header.scrolled {
    padding: 8px 0;
    background-color: rgba(51, 51, 153, 0.95);
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    transition: 0.4s;
}

header.scrolled .logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-menu li { margin-left: 25px; position: relative; }

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -2px; left: 0;
    background-color: #ffff66;
    transition: 0.3s;
}

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

.btn-rastrear {
    background: #FFFF66;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    color: rgb(14, 13, 13) !important;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: 0.3s;
}

.btn-rastrear:hover {
    transform: translateY(-3px);
    background: #fdfcfb;
}

/* --- SEÇÃO HOME & CARROSSEL DE CARDS --- */
.home-section {
    padding: 120px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #333399;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 0; width: 80px; height: 4px;
    background-color: #E2751A;
    border-radius: 2px;
}

.carousel-container {
    max-width: 1250px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.carousel-label {
    text-align: left;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 25px;
    border-left: 5px solid #E2751A;
    padding-left: 15px;
}

/* --- ESTILO DOS CARDS (ITENS DO CARROSSEL) --- */
.card-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
    border: 1px solid #eee;
    height: auto;
    display: flex;
    flex-direction: column;
}

.card-item:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-info {
    padding: 25px;
    text-align: left;
}

.card-info h3 {
    font-size: 1.3rem;
    color: #333399;
    margin-bottom: 10px;
}

.card-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #333399;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.card-btn:hover {
    background: #e2751a;
}

/* --- MINI CARDS (DIFERENCIAIS) --- */
.mini-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border-bottom: 4px solid #333399;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.mini-card .icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.mini-card h4 { color: #333; font-size: 1.1rem; }

/* --- CONTROLES DO SWIPER --- */
.swiper-button-next, .swiper-button-prev {
    color: #333399 !important;
    background: white;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.2rem !important; }

.swiper-pagination-bullet-active { background: #E2751A !important; }

/* --- HAMBURGER & MOBILE --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 2px;
}

@media (max-width: 1100px) {
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-menu {
        position: fixed; 
        left: -100%; 
        top: 0;
        flex-direction: column; 
        background: #333399;
        width: 100%; 
        height: 100vh; 
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        z-index: 1500;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 1.5rem 0; width: 100%; text-align: center; }
    .nav-link { font-size: 1.2rem; }
}

/* --- SEÇÃO QUEM SOMOS PERSONALIZADA --- */
.about-section {
    padding: 100px 5% 80px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text { text-align: left; }
.about-text .subtitle { color: #E2751A; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
.about-text h2 { color: #333399; font-size: 2.4rem; margin: 15px 0 25px; line-height: 1.2; }
.about-text p { color: #666; line-height: 1.8; margin-bottom: 20px; }

.about-stats { display: flex; gap: 40px; margin: 30px 0; }
.stat-number { display: block; font-size: 2rem; font-weight: 600; color: #333399; }
.stat-text { color: #888; font-size: 0.9rem; }

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: #333399;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #333399;
}

.about-btn:hover { background: transparent; color: #333399; }

.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px #f4f7f6; }

.image-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #E2751A;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.image-experience span { font-size: 1.8rem; font-weight: 600; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: #f8f9fa; padding: 40px 30px; border-radius: 20px; transition: 0.4s; border: 1px solid transparent; }
.value-card:hover { background: #ffffff; border-color: #E2751A; transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.value-icon { font-size: 3rem; margin-bottom: 20px; display: inline-block; }
.value-card h3 { color: #333399; margin-bottom: 15px; }

@media (max-width: 992px) {
    .about-content { grid-template-columns: 1fr; }
    .about-image { order: -1; margin-bottom: 40px; }
    .values-grid { grid-template-columns: 1fr; }
}

/* --- ESTILOS COLETA ON-LINE --- */
.coleta-section { padding: 100px 5%; background: #f4f7f6; }
.form-container { max-width: 1100px; margin: 0 auto; background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Stepper */
.stepper { display: flex; justify-content: center; margin-bottom: 40px; gap: 50px; }
.step { color: #ccc; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.step span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.step.active { color: #333399; }
.step.active span { color: #333399; }

/* Grid do Formulário */
.form-step { display: none; animation: fadeIn 0.5s ease; }
.form-step.active { display: block; }

.form-row { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.input-group { flex: 1; min-width: 200px; display: flex; flex-direction: column; }
.input-group label { font-size: 0.85rem; font-weight: 600; color: #555; margin-bottom: 8px; text-align: left;}

.input-group input, .input-group select, .input-group textarea {
    padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 0.9rem; outline: none; transition: 0.3s;
}
.input-group input:focus { border-color: #333399; box-shadow: 0 0 0 3px rgba(51, 51, 153, 0.1); }

.form-divider { 
    margin: 30px 0 20px; padding-bottom: 10px; border-bottom: 2px solid #f0f0f0; 
    color: #333399; font-weight: 600; text-align: left;
}

/* Flex Helpers (Essencial para o ajuste do E-mail) */
.flex-1 { flex: 1; } 
.flex-2 { flex: 2; } 
.flex-3 { flex: 3; }
.group-uf { max-width: 100px; }

/* Botões */
.form-actions { display: flex; justify-content: flex-end; gap: 15px; margin-top: 30px; }
.btn-next, .btn-submit { background: #333399; color: white; padding: 12px 30px; border: none; border-radius: 8px; cursor: pointer; font-weight: 600; }
.btn-prev { background: #eee; color: #666; padding: 12px 30px; border: none; border-radius: 8px; cursor: pointer; }

.checkbox-group { display: flex; align-items: center; gap: 10px; margin-top: 20px; color: #666; font-size: 0.9rem; }

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

/* Responsividade específica do formulário */
@media (max-width: 768px) { 
    .form-row { flex-direction: column; } 
    .input-group.flex-2, .input-group.flex-3 { flex: 1; } 
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-tooltip { display: none; }
}

/* --- SEÇÃO COTAÇÃO PERSONALIZADA (ESTILO ISOLADO) --- */
.cotacao-section {
    padding: 100px 5%;
    background-color: #f4f7f6;
}

/* Container principal para não afetar o formulário de coleta */
.cotacao-grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Classes de colunas exclusivas para a Cotação */
.row-cotacao {
    display: grid;
    gap: 20px;
    margin-bottom: 15px;
}

.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Ajustes de Responsividade exclusivos */
@media (max-width: 992px) {
    .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cols-3, .cols-2, .cols-4 {
        grid-template-columns: 1fr;
    }
}

/* Botão de Envio Cotação */
.btn-cotacao-enviar {
    width: 100%;
    background: #333399;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-cotacao-enviar:hover {
    background: #E2751A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* --- SEÇÃO ATENDIMENTO --- */
.atendimento-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.unidades-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
}

.unidade-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    min-width: 180px;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.unidade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(51, 51, 153, 0.15);
    border-color: #333399;
}

.unidade-icon { font-size: 2.5rem; margin-bottom: 15px; }
.unidade-card h3 { color: #333399; margin-bottom: 5px; font-size: 1.2rem; }
.unidade-card p { font-size: 0.9rem; color: #666; margin-bottom: 20px; }

/* Container dos botões empilhados */
.card-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

.btn-unidade {
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}

/* Botão Falar com Unidade */
.btn-unidade.primary {
    background: #f0f0f5;
    color: #333399;
}

.unidade-card:hover .btn-unidade.primary {
    background: #333399;
    color: white;
}

/* Botão Saiba Mais */
.btn-unidade.outline {
    background: transparent;
    color: #888;
    border: 1px solid #ddd;
}

.unidade-card:hover .btn-unidade.outline {
    border-color: #333399;
    color: #333399;
}

.btn-unidade.outline:hover { background: #f0f0ff; }

/* Ajuste Mobile */
@media (max-width: 1024px) {
    .unidades-grid { flex-wrap: wrap; justify-content: center; }
    .unidade-card { min-width: 250px; }
}


/* --- BOTÃO DOWNLOAD PORTFÓLIO --- */
.portfolio-download-wrapper {
    margin: -20px auto 40px; /* Ajuste para ficar próximo ao título */
    text-align: center;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #333399;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #333399;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 51, 153, 0.1);
}

.btn-portfolio:hover {
    background: #E2751A; /* Cor verde para combinar com seus detalhes */
    color: white;
    border-color: #E2751A;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.btn-portfolio .icon {
    font-size: 1.2rem;
}

/* Efeito sutil para dispositivos desktop */
@media (min-width: 1024px) {
    .btn-portfolio {
        animation: subtle-bounce 3s infinite;
    }
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


/* --- TRABALHE CONOSCO --- */
.work-with-us {
    padding: 100px 5%;
    background-color: #ffffff;
}

.work-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Card Esquerdo Informativo */
.work-info-card {
    background: #333399;
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(51, 51, 153, 0.2);
}

.work-badge {
    display: inline-block;
    background: #E2751A;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.work-info-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
.work-info-card p { opacity: 0.9; line-height: 1.6; margin-bottom: 30px; }

.work-benefits { list-style: none; margin-bottom: 30px; }
.work-benefits li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 300; }

/* Card Direito Formulário */
.work-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { grid-column: span 2; }

.btn-submit-work {
    width: 100%;
    background: #E2751A;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-submit-work:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .work-container { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}


/* --- SEÇÃO PORTAL DO CLIENTE --- */
.portal-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.portal-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.portal-card:hover { transform: translateY(-5px); }

.portal-icon { font-size: 3rem; margin-bottom: 20px; }
.portal-card h3 { color: #333399; font-size: 1.6rem; margin-bottom: 15px; }
.portal-card p { color: #666; margin-bottom: 25px; line-height: 1.6; }

/* Estilo do Formulário Interno do Card */
.portal-mini-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.portal-mini-form .input-group label {
    font-size: 0.8rem;
    color: #333399;
    font-weight: 600;
}

/* Botões Personalizados */
.btn-portal-access {
    background: #333399;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: auto;
    transition: 0.3s;
}

.btn-portal-access:hover { background: #E2751A; }

.btn-portal-register {
    background: #E2751A;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-portal-register:hover { background: #27ae60; }

@media (max-width: 850px) {
    .portal-grid { grid-template-columns: 1fr; }
}

/* --- CENTRALIZAÇÃO DOS TÍTULOS ESPECÍFICOS --- */
#coleta .section-title,
#cotacao .section-title,
#trabalhe-conosco .section-title,
#acesso-portal .section-title {
    text-align: center;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* --- RODAPÉ PERSONALIZADO --- */
.main-footer {
    background-color: #1a1a4d; /* Azul mais escuro para contraste */
    color: #ffffff;
    padding: 80px 5% 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Deixa a logo branca */
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #E2751A;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #E2751A;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #E2751A;
    transform: translateY(-5px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .main-footer { text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
}



/* Estilização dos Ícones das Redes Sociais */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efeito Hover Individual */
.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* Cores de destaque ao passar o mouse */
.social-icon[aria-label="Facebook"]:hover { background-color: #3b5998; border-color: #3b5998; }
.social-icon[aria-label="Instagram"]:hover { background-color: #e4405f; border-color: #e4405f; }
.social-icon[aria-label="LinkedIn"]:hover { background-color: #0077b5; border-color: #0077b5; }
.social-icon[aria-label="WhatsApp"]:hover { background-color: #25d366; border-color: #25d366; }





/* --- INTEGRAÇÃO LGPD (CONSENTIMENTO DE COOKIES) --- */

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: -150px; /* Começa escondido para animação */
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    z-index: 5000; /* Acima do Header e WhatsApp */
    padding: 20px 5%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #E2751A; /* Verde da sua identidade */
}

.cookie-banner.active {
    bottom: 0; /* Desliza para cima via JS */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.cookie-content a {
    color: #333399; /* Seu azul principal */
    font-weight: 600;
    text-decoration: underline;
}

.btn-cookie {
    background: #333399;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease;
}

.btn-cookie:hover {
    background: #E2751A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* Modal de Políticas de Privacidade */
.policy-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 77, 0.9); /* Seu azul escuro com transparência */
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-container {
    background: white;
    max-width: 850px;
    width: 100%;
    max-height: 85vh;
    border-radius: 20px;
    padding: 40px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.policy-text h2 {
    color: #333399;
    margin-bottom: 25px;
    border-bottom: 2px solid #E2751A;
    padding-bottom: 10px;
}

.policy-text h3 {
    color: #333399;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Responsividade do Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .btn-cookie {
        width: 100%;
    }
}


/* --- AJUSTES DE COR (TROCA DO VERDE PELO LARANJA) --- */

/* Borda do Banner LGPD e Títulos de Política */
.cookie-banner { border-top: 4px solid #E2751A !important; }
.policy-text h2 { border-bottom: 2px solid #E2751A !important; }

/* Botão de Cookies e outros botões que eram verdes */
.btn-cookie:hover, .btn-portfolio:hover, .btn-submit-work:hover {
    background-color: #E2751A !important;
    border-color: #E2751A !important;
    color: white !important;
}

/* Sombra da barra de progresso */
.progress-bar { box-shadow: 0 0 8px rgba(226, 117, 26, 0.6) !important; }

/* --- NOVO ESTILO DO AVATAR WHATSAPP (SEM MEXER NO RESTO) --- */

.whatsapp-float {
    background-color: transparent !important; /* Remove o fundo verde original */
    padding: 0 !important;
}

.whatsapp-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 5px;
    width: 15px;
    height: 15px;
    background-color: #25d366; /* Verde de "disponível" */
    border: 2px solid white;
    border-radius: 50%;
}



/* Estilos do Popup */
.modal-jovem-aprendiz {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 10001; /* Acima de tudo */
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    right: 20px; top: 10px;
    font-size: 28px; cursor: pointer; color: #999;
}

.modal-content h2 { color: #004a8d; margin-bottom: 10px; }
.subtitle { font-style: italic; color: #666; margin-bottom: 20px; }

.info-box {
    background-color: #f4f7f9;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 20px;
}

.info-box p { margin: 10px 0; color: #333; }
.status-fechada { color: #ff0000; font-weight: bold; }
.footer-msg { color: #004a8d; font-weight: bold; font-size: 14px; }


