/* Reset e Variáveis */
:root {
    /* Paleta de Cores - Inspirada em logos jurídicas (tons de azul escuro, dourado e branco) */
    --cor-primaria: #1a2947;      /* Azul escuro institucional */
    --cor-secundaria: #d4af37;    /* Dourado elegante */
    --cor-terciaria: #2c4875;     /* Azul médio */
    --cor-destaque: #f0c14b;      /* Amarelo/Dourado mais claro */
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --cor-branco: #ffffff;
    --cor-cinza-claro: #f5f5f5;
    --cor-cinza: #e0e0e0;
    
    /* Tipografia */
    --fonte-principal: 'Poppins', sans-serif; 
    
    /* Sombras */
    --sombra-leve: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    --sombra-media: 0 4px 20px rgba(0, 0, 0, 0.15); /* Sombra média */
    --sombra-forte: 0 8px 30px rgba(0, 0, 0, 0.2); /* Sombra forte */

    
    /* Transições */
    --transicao: all 0.3s ease; /* Transição suave para hover e interações */
}

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

html {
    scroll-behavior: smooth; /* Rolagem suave */
    -webkit-text-size-adjust: 100%; /* Previne zoom em dispositivos móveis */
    text-size-adjust: 100%; /* Previne zoom em dispositivos móveis */
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    line-height: 1.6; /* Melhor legibilidade */
    overflow-x: hidden; /* Previne overflow horizontal */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Melhorias para touch */
a, button {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header / Navegação */
.header {
    position: fixed;
    top: 0; /* Ajuste para sobreposição suave */
    left: 0; /* Ajuste para sobreposição suave */
    width: 100%;
    background: var(--cor-branco);
    box-shadow: var(--sombra-leve);
    z-index: 1000;
    transition: var(--transicao);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px; /* Altura do logo */ /* Mantém proporção */
    border-radius: 10px; /* Bordas arredondadas */
}

.nav-menu {
    display: flex; /* Layout flexível */
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 500;
    transition: var(--transicao);
    position: relative;
}

.nav-menu a:hover {
    color: var(--cor-secundaria);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-secundaria);
    transition: var(--transicao);
}

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

.btn-contato {
    background: var(--cor-secundaria);
    color: var(--cor-branco) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    transition: var(--transicao);
}

.btn-contato:hover {
    background: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

.btn-contato::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-primaria);
    transition: var(--transicao);
}

/* Hero Section - Visual Premium */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Fundo com imagem nítida e efeito parallax */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
    will-change: transform;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.3s ease-out;
}

/* Efeito hover na imagem */
.hero:hover .hero-bg-image {
    transform: scale(1.02);
}

/* Overlay com gradiente escuro nas bordas */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Partículas douradas */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cor-secundaria);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s infinite ease-in-out;
    box-shadow: 0 0 10px var(--cor-secundaria), 0 0 20px var(--cor-secundaria);
}

@keyframes floatParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

/* Moldura elegante */
.hero-frame {
    position: absolute;
    top: 80px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 2;
    pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--cor-secundaria);
    border-style: solid;
}

.hero-frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.hero-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* Linhas decorativas */
.hero-decorative-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cor-secundaria), transparent);
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Conteúdo centralizado principal */
.hero-center-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

/* Nome - título principal com fonte elegante */
.hero-name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--cor-branco);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s backwards;
    position: relative;
}

/* Profissão - subtítulo */
.hero-profession {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.5s backwards;
    max-width: 600px;
}

/* Botão CTA com efeito brilho */
.btn-hero-cta {
    position: relative;
    display: inline-block;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transicao);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease 0.7s backwards;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Efeito de brilho passando pelo botão */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-hero-cta:hover {
    background: var(--cor-destaque);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6);
}

.btn-hero-cta:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.btn-hero-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.4);
}

/* Indicador de Scroll Animado */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1.2s backwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--cor-secundaria);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0.52; /* Valor inicial */
        transform: translateX(-50%) translateY(0); /* Posição inicial */
    }
    100% {
        opacity: 0; /* Valor final */
        transform: translateX(-50%) translateY(15px); /* Move para baixo */
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Seção secundária com stats */
.hero-secondary {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--cor-branco);
}

/* Mantendo compatibilidade com estilos antigos */
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--cor-destaque);
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Animação fadeInDown */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 3;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transicao);
    box-shadow: var(--sombra-media);
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-primary:hover {
    background: var(--cor-destaque);
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

/* Seção Sobre */
.sobre {
    padding: 100px 0;
    background: var(--cor-branco);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--cor-secundaria);
    border-radius: 20px;
    z-index: -1;
}

.sobre-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--cor-secundaria);
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    margin-bottom: 3rem;
}

.sobre-description {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.sobre-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cor-cinza-claro);
    border-radius: 10px;
    transition: var(--transicao);
}

.highlight-item:hover {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    transform: translateX(10px);
}

.highlight-item svg {
    color: var(--cor-secundaria);
    flex-shrink: 0;
}

.highlight-item:hover svg {
    color: var(--cor-branco);
}

.highlight-item span {
    font-weight: 500;
}

/* Seção Serviços */
.servicos {
    padding: 100px 0;
    background: var(--cor-cinza-claro);
}

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

.servico-card {
    background: var(--cor-branco);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transicao);
    box-shadow: var(--sombra-leve);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cor-secundaria), var(--cor-destaque));
    transform: scaleX(0);
    transition: var(--transicao);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cor-primaria), var(--cor-terciaria));
    border-radius: 20px;
    color: var(--cor-secundaria);
    transition: var(--transicao);
}

.servico-card:hover .servico-icon {
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    transform: rotateY(360deg);
}

.servico-title {
    font-size: 1.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

.servico-description {
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

/* Provas Sociais */
.provas-sociais {
    padding: 100px 0;
    background: var(--cor-branco);
}

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

.prova-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
    transition: var(--transicao);
    cursor: pointer;
}

.prova-card:hover {
    transform: scale(1.05);
    box-shadow: var(--sombra-forte);
}

.prova-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Seção Contato */
.contato {
    padding: 100px 0;
    background: var(--cor-cinza-claro);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-description {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contato-item svg {
    color: var(--cor-secundaria);
    flex-shrink: 0;
    margin-top: 5px;
}

.contato-item h4 {
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contato-item p {
    color: var(--cor-texto-claro);
}

.contato-form {
    background: var(--cor-branco);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--sombra-media);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cor-cinza);
    border-radius: 10px;
    font-family: var(--fonte-principal);
    font-size: 1rem;
    transition: var(--transicao);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cor-secundaria);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transicao);
}

.btn-submit:hover {
    background: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: var(--sombra-media);
}

/* Footer */
.footer {
    background: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
  filter: none;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
    color: var(--cor-secundaria);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a {
    color: var(--cor-branco);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transicao);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--cor-secundaria);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--cor-branco);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Cores específicas de cada rede social */
.social-icons a.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-icons a.social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icons a.social-linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s backwards;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transicao);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.badge-item svg {
    color: var(--cor-secundaria);
    flex-shrink: 0;
}

.badge-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Seção Diferenciais */
.diferenciais {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-terciaria) 100%);
    color: var(--cor-branco);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)" /></svg>');
}

.diferenciais .section-title,
.diferenciais .section-subtitle {
    color: var(--cor-branco);
    position: relative;
    z-index: 1;
}

.diferenciais .section-title::after {
    background: var(--cor-secundaria);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transicao);
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transicao);
}

.diferencial-item:hover::before {
    opacity: 1;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    border-color: var(--cor-secundaria);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.diferencial-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.diferencial-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--cor-branco);
}

.diferencial-item p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Seção FAQ */
.faq {
    padding: 100px 0;
    background: var(--cor-branco);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cor-cinza-claro);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transicao);
}

.faq-item:hover {
    box-shadow: var(--sombra-media);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cor-primaria);
    text-align: left;
    transition: var(--transicao);
}

.faq-question:hover {
    color: var(--cor-secundaria);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transicao);
    color: var(--cor-secundaria);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--cor-branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transicao);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--cor-primaria);
    color: var(--cor-branco);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transicao);
    font-size: 0.9rem;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--cor-primaria);
}

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-secundaria);
    color: var(--cor-branco);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicao);
    z-index: 998;
    box-shadow: var(--sombra-media);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--cor-primaria);
    transform: translateY(-5px);
}

/* Melhorias de Acessibilidade */
:focus-visible {
    outline: 3px solid var(--cor-secundaria);
    outline-offset: 3px;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, var(--cor-cinza-claro) 0%, var(--cor-cinza) 50%, var(--cor-cinza-claro) 100%);
    background-size: 1000px 100%;
}

/* Responsividade */

/* Ajuste de posição da imagem para telas largas */
@media (min-width: 1400px) {
    .hero-bg-image {
        object-position: center 20%;
    }
}

/* Tablets grandes e laptops pequenos */
@media (max-width: 1024px) {
    .hero-bg-image {
        object-position: center 10%;
    }

    .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .sobre-content,
    .contato-content {
        gap: 3rem;
    }

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--cor-branco);
        width: 100%;
        text-align: center;
        transition: var(--transicao);
        box-shadow: var(--sombra-media);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--cor-cinza);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section Responsiva */
    .hero {
        min-height: 100vh;
    }

    .hero-bg-image {
        object-position: center 5%;
    }

    .hero-frame {
        top: 70px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .hero-center-content {
        padding: 120px 20px 80px;
    }

    .hero-name {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-profession {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }

    .hero-decorative-line {
        width: 50px;
        margin: 1rem 0;
    }

    .btn-hero-cta {
        padding: 1rem 2.5rem;
        font-size: 0.85rem;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .scroll-indicator span {
        font-size: 0.65rem;
    }

    .hero-secondary {
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        width: 100%;
        max-width: 250px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 2rem;
    }

    .badge-item {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    /* Sobre */
    .sobre {
        padding: 60px 0;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sobre-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .sobre-image::before {
        width: 60px;
        height: 60px;
        top: -10px;
        left: -10px;
    }

    .sobre-text {
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .sobre-description {
        font-size: 1rem;
    }

    .sobre-highlights {
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    /* Diferenciais */
    .diferenciais {
        padding: 60px 0;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diferencial-item {
        padding: 1.5rem;
    }

    /* Serviços */
    .servicos {
        padding: 60px 0;
    }

    .servicos-grid,
    .provas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .servico-card {
        padding: 2rem 1.5rem;
    }

    .servico-icon {
        width: 60px;
        height: 60px;
    }

    .servico-title {
        font-size: 1.3rem;
    }

    /* Provas Sociais */
    .provas-sociais {
        padding: 60px 0;
    }

    .prova-card:hover {
        transform: scale(1.02);
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.2rem 1rem;
        font-size: 0.9rem;
    }

    /* Contato */
    .contato {
        padding: 60px 0;
    }

    .contato-info {
        text-align: center;
    }

    .contato-items {
        align-items: center;
    }

    .contato-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    .contato-form {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    /* Botões flutuantes */
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-top {
        bottom: 85px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
}

/* Smartphones médios */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    /* Hero Section - Smartphones */
    .hero-bg-image {
        object-position: center 0%;
    }

    .hero-frame {
        top: 65px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-color: rgba(212, 175, 55, 0.15);
    }

    .hero-frame::before,
    .hero-frame::after {
        width: 20px;
        height: 20px;
    }

    .hero-center-content {
        padding: 110px 15px 70px;
    }

    .hero-name {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-decorative-line {
        width: 40px;
        margin: 0.8rem 0;
    }

    .hero-profession {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        padding: 0 10px;
    }

    .btn-hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .mouse {
        width: 22px;
        height: 36px;
    }

    .scroll-indicator span {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    /* Desativar partículas completamente em mobile */
    .hero-particles {
        display: none !important;
    }
    
    .particle {
        display: none !important;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .sobre-image {
        max-width: 280px;
    }

    .sobre-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .highlight-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .diferencial-item h3 {
        font-size: 1.1rem;
    }

    .diferencial-item p {
        font-size: 0.9rem;
    }

    .diferencial-number {
        font-size: 2.5rem;
    }

    .servico-card {
        padding: 1.8rem 1.2rem;
    }

    .servico-title {
        font-size: 1.2rem;
    }

    .servico-description {
        font-size: 0.9rem;
    }

    .contato-form {
        padding: 1.5rem 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
    }

    .social-icons a svg {
        width: 18px;
        height: 18px;
    }
}

/* Smartphones pequenos */
@media (max-width: 380px) {
    .container {
        padding: 0 12px;
    }

    .logo img {
        height: 45px;
    }

    /* Hero Section - Smartphones pequenos */
    .hero-frame {
        display: none;
    }

    .hero-center-content {
        padding: 90px 12px 60px;
    }

    .hero-name {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .hero-decorative-line {
        width: 30px;
        margin: 0.6rem 0;
    }

    .hero-profession {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 8px;
        line-height: 1.5;
    }

    .btn-hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .mouse {
        width: 20px;
        height: 32px;
    }

    /* Esconder partículas em telas pequenas para performance */
    .hero-particles {
        display: none;
    }
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat-item {
        max-width: 200px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .badge-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .badge-item svg {
        width: 16px;
        height: 16px;
    }

    .btn-primary {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .sobre-image {
        max-width: 240px;
    }

    .servico-card {
        padding: 1.5rem 1rem;
    }

    .servico-icon {
        width: 50px;
        height: 50px;
    }

    .servico-icon svg {
        width: 28px;
        height: 28px;
    }

    .faq-question {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .contato-form {
        padding: 1.2rem 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 12px;
    }

    .scroll-top {
        width: 38px;
        height: 38px;
        bottom: 75px;
        right: 12px;
    }
}

/* Landscape mode para smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-center-content {
        padding: 80px 20px 30px;
    }

    .hero-name {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-profession {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .btn-hero-cta {
        padding: 0.7rem 2rem;
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-item {
        max-width: none;
        width: auto;
        padding: 0.5rem 1rem;
    }

    .hero-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-item {
        width: auto;
    }
}

/* Melhorias de touch para dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
    .servico-card:hover,
    .diferencial-item:hover,
    .prova-card:hover {
        transform: none;
    }

    .servico-card:active,
    .diferencial-item:active {
        transform: scale(0.98);
    }

    .btn-primary:hover,
    .btn-contato:hover,
    .btn-submit:hover,
    .btn-hero-cta:hover {
        transform: none;
    }

    .btn-primary:active,
    .btn-contato:active,
    .btn-submit:active,
    .btn-hero-cta:active {
        transform: scale(0.98);
    }

    .social-icons a:hover {
        transform: none;
    }

    .social-icons a:active {
        transform: scale(0.95);
    }

    .highlight-item:hover {
        transform: none;
    }

    /* Desabilitar efeito de hover na imagem em touch */
    .hero:hover .hero-bg-image {
        transform: none;
    }
}

.site-footer {
  background-color: #0b1a2a; /* azul escuro */
  padding: 12px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #c9c9c9;
}

.site-footer a {
  color: #c9a44d; /* dourado elegante */
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
}
