/* ============================================
   ESTILOS.CSS - VERSÃO FINAL COMPLETA
   Agência Digital - Site Multipáginas
   ============================================ */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #003d82;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    line-height: 1.3;
    color: #1a1a2e;
}

.destaque {
    color: #00a8ff;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    background-color: #0056b3;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background-color: #003d82;
    color: #fff;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #0056b3;
    color: #0056b3;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background-color: #0056b3;
    color: #fff;
}

.btn-grande {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Efeito Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== CABEÇALHO TRANSPARENTE (estado inicial) ===== */
.cabecalho {
    background: transparent;
    color: #ffffff00;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cabecalho .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== CABEÇALHO TRANSPARENTE (estado inicial) ===== */
.cabecalho {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.cabecalho-transparente {
    background: transparent;
    box-shadow: none;
}

/* Links e logo no estado transparente */
.cabecalho-transparente .logo,
.cabecalho-transparente .navegacao a,
.cabecalho-transparente .menu-toggle {
    color: #fff;
}

.cabecalho-transparente .logo span {
    color: #00a8ff;
}

.cabecalho-transparente .navegacao a:hover,
.cabecalho-transparente .navegacao a.ativo {
    color: #fff;
}

.cabecalho-transparente .navegacao a.ativo::after,
.cabecalho-transparente .navegacao a:hover::after {
    background: #fff;
}

/* ===== CABEÇALHO SÓLIDO (ao scrollar) ===== */
.cabecalho-solido {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cabecalho-solido .logo,
.cabecalho-solido .navegacao a,
.cabecalho-solido .menu-toggle {
    color: #1a1a2e;
}

.cabecalho-solido .logo span {
    color: #0056b3;
}

.cabecalho-solido .navegacao a:hover,
.cabecalho-solido .navegacao a.ativo {
    color: #0056b3;
}

.cabecalho-solido .navegacao a.ativo::after,
.cabecalho-solido .navegacao a:hover::after {
    background: #0056b3;
}

/* Botão login no cabeçalho sólido */
.cabecalho-solido .btn-outline {
    border-color: #0056b3;
    color: #0056b3;
}

.cabecalho-solido .btn-outline:hover {
    background: #0056b3;
    color: #fff;
}

.logo-img {
    height: auto;
    width: 150px;                    
    display: block;                 
}

.logo span {
    color: #00a8ff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #252323;
    font-size: 1.8rem;
    cursor: pointer;
}

.navegacao {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navegacao ul {
    display: flex;
    gap: 25px;
}

.navegacao a {
    color: #110f0f;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.navegacao a:hover,
.navegacao a.ativo {
    color: #181717;
}

.navegacao a.ativo::after,
.navegacao a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00a8ff;
}


/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0f0f23, #1a1a2e);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    font-size: 1.5rem;
    font-weight: bold;
}

/* ===== SEÇÕES COMUNS ===== */
.secao-titulo {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

/* Hero com vídeo */
.hero-video {
    position: relative;
    overflow: hidden;
    background: none; /* remove o gradiente antigo */
}

.video-fundo-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* cobre toda a área */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* escurece para contraste */
    z-index: 1;
}

.hero-video .container {
    position: relative;
    z-index: 2; /* conteúdo acima do vídeo e overlay */
}

/* ===== BANNER COM IMAGEM DE FUNDO ===== */
.pagina-banner1 {
    height: 310px;      
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagina-banner1 {
    color: #3fbdce;
    text-align: center;
}

.pagina-banner1 h1 {
     font-size: 2.5rem;
    margin-bottom: 10px;
    color: #3fbdce;
}
@media(max-width: 768px) {
    .pagina-banner {
        height: 280px;
    }
    }

/* ===== APRESENTAÇÃO JAS-TEC ===== */
.apresentacao {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.apresentacao-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.apresentacao-texto {
    flex: 1 1 400px;
}

.apresentacao-texto h2 {
    font-size: 2.8rem;
    color: #1919cc;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.apresentacao-texto .slogan {
    font-size: 1.2rem;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 20px;
}

.apresentacao-texto p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.apresentacao-pilares {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pilar {
    background: #0056b3;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgb(248, 247, 247);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pilar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(248, 247, 247);
}

.icone-pilar {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.pilar h4 {
    font-size: 1rem;
    color: #f2f2f3;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .apresentacao-grid {
        flex-direction: column;
        text-align: center;
    }
    .apresentacao-texto h2 {
        font-size: 2.2rem;
    }

}
/* ===== DESTAQUES / CARDS ===== */
.destaques {
    padding: 70px 0;
    background: #f8f9fa;
}

/* forçar os cards a ficarem lado a lado */
.destaques .grid-3 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    Overflow-x: auto;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icone {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.card p {
    color: #666;
    margin-bottom: 20px;
}

.card-triplo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 30px;
}

.card-item {
    flex: 1 1 200px;                        /* cada item ocupa pelo menos 200px e estica */
    min-width: 200px;
    text-align: center;
}

.link-seta {
    color: #0056b3;
    font-weight: 600;
}

/* ===== CARDS LADO A LADO COM GATILHOS ===== */
.cards-lado {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card-gatilho {
    flex: 1 1 300px;
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.card-gatilho:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #0056b3;
}

.card-icone {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card-gatilho h3 {
    margin-bottom: 10px;
    color: #1a1a2e;
    font-size: 1.3rem;
}

.card-descricao {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-beneficios {
    text-align: left;
    margin-bottom: 25px;
}

.card-beneficios li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: #333;
}

/* Responsivo: empilha em ecrãs pequenos */
@media (max-width: 768px) {
    .cards-lado {
        flex-direction: column;
    }
}

/* Grid dos cards de destaque */
.cards-destaque-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Cada card */
.card-destaque {
    flex: 1 1 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    /* Linha vertical separadora (excepto no último) */
    border-right: 1px solid #e0e0e0;
    padding-right: 15px;
    margin-right: 15px;
}

.card-destaque:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.card-destaque:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Imagem do topo */
.card-destaque-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}

/* Corpo do card */
.card-destaque-corpo {
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-destaque-corpo h3 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.card-destaque-corpo p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-destaque-corpo ul {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #444;
    flex: 1;
}

.card-destaque-corpo ul li {
    padding: 5px 0;
    border-bottom: 1px solid #071c44;
}

.card-destaque-corpo ul li:last-child {
    border-bottom: none;
}

/* Responsivo – empilha no telemóvel e remove linhas */
@media (max-width: 768px) {
    .cards-destaque-grid {
        flex-direction: column;
    }
    .card-destaque {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

/* ===== SOBRE RESUMO ===== */
.sobre-resumo {
    padding: 70px 0;
}

.flex-2col {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.flex-2col > * {
    flex: 1 1 300px;
}

.imagem-placeholder {
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.lista-vantagens {
    margin: 15px 0 20px;
}

.lista-vantagens li {
    margin-bottom: 8px;
}

/* ===== PLANOS ===== */
.planos {
    padding: 70px 0;
    background: #f8f9fa;
}

.plano {
    background: #f8f8f8;
    padding: 35px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(15, 12, 12, 0.877);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.plano:hover {
    transform: translateY(-5px);
}

.plano.destaque {
    border: 2px solid #00a8ff;
    transform: scale(1.03);
}

.plano.destaque:hover {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #00a8ff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plano h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.preco {
    font-size: 2.2rem;
    font-weight: 700;
    color: #f7fafd;
    margin-bottom: 20px;
}

.plano ul {
    margin-bottom: 25px;
}

.plano ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* ===== TESTEMUNHOS ===== */
.testemunhos {
    padding: 70px 0;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}

.testemunhos h2 {
    margin-bottom: 40px;
    color: #fff;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slide {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.slide.active {
    display: block;
}

.slide blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

.slide cite {
    font-weight: 600;
    color: #00a8ff;
    font-style: normal;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-controls button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(255,255,255,0.4);
}

/* ===== CTA FINAL ===== */
.cta-final {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, #0056b3, #00a8ff);
    color: #fff;
}

.cta-final h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-final p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cta-final .btn {
    background: #fff;
    color: #0056b3 !important;
}

.cta-final .btn:hover {
    background: #f0f0f0;
}

/* ===== LISTA DE SERVIÇOS ===== */
.lista-servicos {
    padding: 70px 0;
}

.servico-item {
    margin-bottom: 60px;
}

.servico-item h2 {
    margin-bottom: 15px;
}

.servico-item p {
    color: #555;
    margin-bottom: 15px;
}

.servico-item ul {
    list-style: disc;
    margin-left: 20px;
    color: #555;
}

.servico-item .btn {
    margin-top: 20px;
}

.reverse .flex-2col {
    flex-direction: row-reverse;
}

/* ===== PORTFÓLIO ===== */
.galeria {
    padding: 70px 0;
}

.projeto {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    background: #fff;
    cursor: pointer;
}

.projeto:hover {
    transform: translateY(-5px);
}

.projeto img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.projeto-info {
    padding: 20px;
}

.projeto-info h3 {
    margin-bottom: 5px;
    color: #1a1a2e;
}

.projeto-info p {
    color: #666;
}

/* ===== SOBRE DETALHE ===== */
.sobre-detalhe {
    padding: 70px 0;
}

/* ===== NÚMEROS / CONTADORES ===== */
.numeros {
    padding: 70px 0;
    background: #f8f9fa;
    text-align: center;
}

.numero-item {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a2e;
}

.numero-item .contador {
    font-size: 2.5rem;
    color: #0056b3;
    display: block;
}

/* ===== EQUIPA ===== */
.equipa {
    padding: 70px 0;
}

.equipa h2 {
    text-align: center;
    margin-bottom: 40px;
}

.membro {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.membro img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.membro h3 {
    color: #1a1a2e;
}

.membro p {
    color: #666;
}

/* ===== CONTACTOS ===== */
.contacto-info {
    padding: 70px 0;
}

.dados-contacto {
    margin: 20px 0 30px;
}

.dados-contacto li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.mapa-placeholder {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* ===== FORMULÁRIOS ===== */
.formulario {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.campo {
    margin-bottom: 20px;
}

.campo label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1a1a2e;
}

.campo input,
.campo textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.campo input:focus,
.campo textarea:focus {
    outline: none;
    border-color: #0056b3;
}

.erro-validacao {
    color: #dc3545;
    font-size: 0.85rem;
    display: block;
    min-height: 1.2em;
    margin-top: 3px;
}

.feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.feedback.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.feedback.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    flex-wrap: wrap;
}

.cookie-banner.mostrar {
    transform: translateY(0);
}

.cookie-banner a {
    color: #00a8ff;
    text-decoration: underline;
}

.cookie-botoes {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    background: #00a8ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.btn-cookie-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* ===== MODAL LOGIN ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.ativo {
    opacity: 1;
    pointer-events: auto;
}

.modal-conteudo {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    position: relative;
}

.modal-conteudo h2 {
    margin-bottom: 25px;
    text-align: center;
}

.modal-fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.modal-fechar:hover {
    color: #333;
}

.link-registo {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.link-registo a {
    color: #0056b3;
    font-weight: 600;
}

.oculto {
    display: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.lightbox.ativo {
    display: flex;
}

.lightbox-conteudo {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fechar-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10002;
}

.fechar-lightbox:hover {
    color: #ccc;
}

/* ===== NEWSLETTER ===== */
.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* ===== RODAPÉ ===== */
.rodape {
    background: #0f0f23;
    color: #ccc;
    padding: 50px 0 20px;
}

.rodape h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.rodape p,
.rodape li {
    margin-bottom: 10px;
}

.rodape a {
    color: #aaa;
}

.rodape a:hover {
    color: #00a8ff;
}

/* ===== REDES SOCIAIS NO RODAPÉ ===== */
.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.rede-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.rede-social:hover {
    background: #00a8ff;
    transform: translateY(-3px);
    color: #fff;
}

.direitos {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animar-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.animar-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animar-slide-up.visivel {
    opacity: 1;
    transform: translateY(0);
}

.animar-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animar-slide-left.visivel {
    opacity: 1;
    transform: translateX(0);
}

.animar-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.animar-slide-right.visivel {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navegacao {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a2e;
        flex-direction: column;
        display: none;
        padding: 20px;
    }

    .navegacao.ativo {
        display: flex;
    }

    .navegacao ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .flex-2col {
        flex-direction: column;
    }

    .reverse .flex-2col {
        flex-direction: column;
    }

    .servico-item .imagem-placeholder {
        order: -1;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}