* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}


body.carregado {
    opacity: 1;
    transform: translateY(0);
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== ESTILOS DO CABEÇALHO ===== */
.cabecalho {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    
    top: 64px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.cabecalho.transparente {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.cabecalho-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-imagem {
    height: 6rem;
    width: 7rem;
    margin-bottom: 40px;
}

.navegacao {
    display: flex;
    gap: 2rem;
}

.link-navegacao {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.link-navegacao:hover,
.link-navegacao.ativo {
    color: #2563eb;
}

.link-navegacao.ativo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.botao-cabecalho {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.botao-cabecalho:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.icone-botao {
    width: 1rem;
    height: 1rem;
}

/* ===== ESTILOS DA SEÇÃO HERO ===== */
.secao-hero {
    background: linear-gradient(to bottom, #dbeafe, #ffffff);
    padding: 8rem 0 5rem;
    margin-top: 4rem;
}

.hero-conteudo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-texto {
    text-align: left;
}

.hero-titulo {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitulo {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-imagem {
    display: flex;
    justify-content: center;
}

.imagem-principal {
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* ===== ESTILOS DOS BOTÕES ===== */
.botao {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.botao-primario {
    background: #2563eb;
    color: white;
}

.botao-primario:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.botao-secundario {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.botao-secundario:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* ===== ESTILOS GERAIS DAS SEÇÕES ===== */
.cabecalho-secao {
    text-align: center;
    margin-bottom: 4rem;
}

.titulo-secao {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.subtitulo-secao {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== ESTILOS DA SEÇÃO DE SERVIÇOS ===== */
.secao-servicos {
    padding: 5rem 0;
}

.destaque-servicos {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.imagem-destaque {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.overlay-texto {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.overlay-texto p {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.125rem;
}

.grade-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cartao-servico {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.cartao-servico.visivel {
    opacity: 1;
    transform: translateY(0);
}

.cartao-servico:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.icone-servico {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icone-servico svg {
    width: 2rem;
    height: 2rem;
}

.icone-servico.azul {
    background: #dbeafe;
    color: #2563eb;
}

.icone-servico.verde {
    background: #dcfce7;
    color: #16a34a;
}

.icone-servico.roxo {
    background: #f3e8ff;
    color: #9333ea;
}

.titulo-servico {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.descricao-servico {
    color: #4b5563;
    line-height: 1.6;
}

/* ===== ESTILOS DA SEÇÃO DE EQUIPE ===== */
.secao-equipe {
    padding: 5rem 0;
    background: #f9fafb;
}

.destaque-equipe {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.imagem-destaque-container {
    position: relative;
    max-width: 48rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.imagem-equipe-destaque {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-equipe {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.texto-overlay {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.grade-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cartao-equipe {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.cartao-equipe.visivel {
    opacity: 1;
    transform: translateY(0);
}

.cartao-equipe:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icone-equipe {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icone-equipe svg {
    width: 3rem;
    height: 3rem;
}

.icone-equipe.azul {
    background: #bfdbfe;
    color: #2563eb;
}

.icone-equipe.verde {
    background: #bbf7d0;
    color: #16a34a;
}

.icone-equipe.roxo {
    background: #e9d5ff;
    color: #9333ea;
}

.titulo-equipe {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.descricao-equipe {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badges-equipe {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== ESTILOS DA SEÇÃO DE DEPOIMENTOS ===== */
.secao-depoimentos {
    padding: 5rem 0;
}

.destaque-depoimentos {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.imagem-depoimento-destaque {
    max-width: 600px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.overlay-depoimento {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

.overlay-depoimento p {
    color: #1f2937;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.grade-depoimentos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cartao-depoimento {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.cartao-depoimento.visivel {
    opacity: 1;
    transform: translateY(0);
}

.cartao-depoimento:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.estrelas {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.estrela {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.texto-depoimento {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.autor-depoimento {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
}

/* ===== ESTILOS DA SEÇÃO DE CONTATO ===== */
.secao-contato {
    padding: 5rem 0;
    background: #2563eb;
    color: white;
}

.secao-contato .titulo-secao {
    color: white;
}

.secao-contato .subtitulo-secao {
    color: rgba(255, 255, 255, 0.8);
}

.grade-contato {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cartao-contato {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cartao-contato:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.icone-contato {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.info-contato {
    text-decoration: none;
    color: white;
}

.icone-contato svg {
    width: 2rem;
    height: 2rem;
}

.titulo-contato {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subtitulo-contato {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.info-contato {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nota-contato {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== ESTILOS DO RODAPÉ ===== */
.rodape {
    background: #111827;
    color: white;
    padding: 3rem 0;
}

.rodape-conteudo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.logo-rodape {
    margin-bottom: 1rem;
}

.logo-rodape-imagem {
    height: 5rem;
    width: 3,5rem;
    width: auto;
   
}

.descricao-rodape {
    color: #9ca3af;
    line-height: 1.6;
}

.titulo-rodape {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.links-rodape {
    list-style: none;
    color: #9ca3af;
}

.links-rodape li {
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.links-rodape li:hover {
    color: #60a5fa;
}

.contato-rodape {
    color: #9ca3af;
}

.contato-rodape p {
    margin-bottom: 0.5rem;
}

.rodape-inferior {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ===== DESIGN RESPONSIVO PARA TABLETS ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-conteudo {
        gap: 2rem;
    }
    
    .hero-titulo {
        font-size: 2.5rem;
    }
    
    .titulo-secao {
        font-size: 2.25rem;
    }
    
    .grade-servicos,
    .grade-equipe,
    .grade-depoimentos {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

/* ===== DESIGN RESPONSIVO PARA TABLETS PEQUENOS ===== */
@media (max-width: 768px) {
    .navegacao {
        display: none;
    }
    
    .cabecalho-conteudo {
        gap: 1rem;
    }
    
    .botao-cabecalho {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .hero-conteudo {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-texto {
        text-align: center;
    }
    
    .hero-titulo {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitulo {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .titulo-secao {
        font-size: 2rem;
    }
    
    .subtitulo-secao {
        font-size: 1rem;
    }
    
    .secao-hero {
        padding: 6rem 0 4rem;
    }
    
    .secao-servicos, 
    .secao-equipe, 
    .secao-depoimentos, 
    .secao-contato {
        padding: 4rem 0;
    }
    
    .cabecalho-secao {
        margin-bottom: 3rem;
    }
    
    .imagem-destaque {
        height: 300px;
    }
    
    .imagem-depoimento-destaque {
        height: 300px;
    }
    
    .destaque-servicos,
    .destaque-equipe,
    .destaque-depoimentos {
        margin-bottom: 3rem;
    }
    
    .overlay-texto,
    .overlay-equipe,
    .overlay-depoimento {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.75rem;
    }
    
    .overlay-texto p,
    .overlay-depoimento p {
        font-size: 1rem;
    }
    
    .grade-contato {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rodape-conteudo {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ===== DESIGN RESPONSIVO PARA CELULAR ===== */
@media (max-width: 480px) {
     .cabecalho-conteudo {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.7rem;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        height: auto;
    }
    .logo {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .logo-imagem {
        height: 7rem; /* Logo grande */
        width: auto;
        margin-bottom: 0.2rem;
        display: block;
    }
    .botao-cabecalho {
        width: 100%;
        max-width: 320px;
        padding: 0.7rem 1.2rem;
        font-size: 1.1rem;
        border-radius: 0.7rem;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navegacao {
        display: none;
        margin: 0;
    }


    
        .secao-hero {
        margin-top: 0.2rem; /* Ajuste conforme a altura real do seu header */
    }
    
    .hero-titulo {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-top: 7rem;
    }
    
    .hero-subtitulo {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .titulo-secao {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .subtitulo-secao {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .secao-servicos, 
    .secao-equipe, 
    .secao-depoimentos, 
    .secao-contato {
        padding: 3rem 0;
    }
    
    .cabecalho-secao {
        margin-bottom: 2rem;
    }
    
    .grade-servicos,
    .grade-equipe,
    .grade-depoimentos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cartao-servico,
    .cartao-equipe,
    .cartao-depoimento {
        padding: 1.25rem;
    }
    
    .titulo-servico,
    .titulo-equipe {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .descricao-servico,
    .descricao-equipe {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .icone-servico {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .icone-servico svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .icone-equipe {
        width: 5rem;
        height: 5rem;
        margin-bottom: 0.75rem;
    }
    
    .icone-equipe svg {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .badges-equipe {
        gap: 0.25rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .imagem-destaque,
    .imagem-depoimento-destaque {
        height: 250px;
    }
    
    .destaque-servicos,
    .destaque-equipe,
    .destaque-depoimentos {
        margin-bottom: 2rem;
    }
    
    .overlay-texto,
    .overlay-equipe,
    .overlay-depoimento {
        padding: 0.5rem;
    }
    
    .overlay-texto p,
    .overlay-depoimento p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .texto-overlay {
        font-size: 0.875rem;
    }
    
    .estrelas {
        gap: 0.125rem;
        margin-bottom: 0.75rem;
    }
    
    .estrela {
        width: 1rem;
        height: 1rem;
    }
    
    .texto-depoimento {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    
    .autor-depoimento {
        font-size: 0.8rem;
    }
    
    .cartao-contato {
        padding: 1.25rem;
    }
    
    .icone-contato {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .icone-contato svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .titulo-contato {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .info-contato {
        font-size: 1rem;
    }
    
    .subtitulo-contato,
    .nota-contato {
        font-size: 0.8rem;
    }
    
    .rodape {
        padding: 2rem 0;
    }
    
    .rodape-conteudo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-rodape-imagem {
        height: 3rem;
    }
    
    .descricao-rodape {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .titulo-rodape {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .links-rodape li,
    .contato-rodape p {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .rodape-inferior {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* ===== DESIGN RESPONSIVO PARA CELULAR PEQUENO ===== */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-titulo {
        font-size: 1.5rem;
    }
    
    .titulo-secao {
        font-size: 1.5rem;
    }
    
    .cartao-servico,
    .cartao-equipe,
    .cartao-depoimento,
    .cartao-contato {
        padding: 1rem;
    }
    
    .imagem-destaque,
    .imagem-depoimento-destaque {
        height: 200px;
    }
    
    .overlay-texto p,
    .overlay-depoimento p {
        font-size: 0.8rem;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes deslizarParaCima {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animacao-entrada {
    animation: deslizarParaCima 0.6s ease forwards;
}

/* ===== NAVEGAÇÃO POR TECLADO ===== */
.navegacao-teclado *:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* ===== UTILITÁRIOS ===== */
.texto-centro {
    text-align: center;
}

.margem-superior {
    margin-top: 2rem;
}

.oculto {
    display: none;
}

.visivel {
    display: block;
}

/* ===== CARREGAMENTO DE IMAGENS ===== */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.carregada {
    opacity: 1;
}

/* ===== OTIMIZAÇÕES PARA PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===== MODO LANDSCAPE PARA CELULAR ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .secao-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-conteudo {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .hero-texto {
        text-align: left;
    }
    
    .hero-titulo {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitulo {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .imagem-principal {
        max-height: 250px;
        object-fit: cover;
    }
}
