/* ==========================================================================
   SISTEMA DE DESIGN E VARIÁVEIS DE ESTILO (LUXO REFINADO)
   ========================================================================== */

:root {
    /* Cores Principais baseadas na Identidade Visual (Azul e Dourado) */
    --primary-color: #002349;        /* Azul Escuro (60% da paleta) */
    --primary-dark: #001226;         /* Azul Ultra Escuro para contrastes profundos */

    --accent-color: #D5AD36;         /* Dourado Nobre (30% da paleta) */
    --accent-hover: #C49B28;         /* Dourado Escurecido para hovers */

    /* Cores de Fundo e Apoio */
    --bg-light: #FAF8F5;             /* Off-white quente e luxuoso */
    --bg-white: #FFFFFF;
    --text-dark: #1E293B;            /* Cinza Escuro de alta leitura */
    --text-light: #F8FAFC;           /* Off-white para textos sobre fundo escuro */
    --text-muted: #64748B;           /* Texto de suporte */

    /* Sombras e Transições */
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 30px 60px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Tipografia de Prestígio */
    --font-title: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ==========================================================================
   CONFIGURAÇÕES GERAIS E RESETS
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Barra de rolagem personalizada em tom de ouro */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   COMPONENTES DE BOTÕES E ELEMENTOS VISUAIS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Brilho shimmer elegante que percorre o botão no hover */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}
.btn:hover::after {
    left: 125%;
    opacity: 1;
    transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Botão Dourado Premium com elevação sutil e brilho */
.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(213, 173, 84, 0.3);
}
.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 28px rgba(213, 173, 84, 0.5);
    color: var(--primary-dark);
}

/* Botão Azul Escuro com preenchimento dourado da esquerda para a direita no hover */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--accent-color);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.btn-primary:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(213, 173, 84, 0.25);
}

/* Botão Transparente com preenchimento de baixo para cima no hover */
.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    backdrop-filter: blur(5px);
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-light);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}
.btn-secondary:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Divisores dourados luxuosos */
.gold-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 20px auto 30px;
    position: relative;
}
.gold-divider::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    transform: rotate(45deg);
    position: absolute;
    top: -3px;
    left: calc(50% - 5px);
    border: 2px solid var(--bg-light);
}

.gold-divider-left {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px 0 25px;
}

/* Ícones SVG */
.icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-right: 10px;
    vertical-align: middle;
}

/* Tags de seção */
.section-tag {
    font-family: var(--font-title);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

/* ==========================================================================
   CABEÇALHO FIXO
   ========================================================================== */

.header-fixo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 35, 73, 0.95);
    border-bottom: 1px solid rgba(213, 173, 54, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: var(--transition-smooth);
}

/* Efeito compacto ao rolar */
.header-fixo.scrolled .header-container {
    height: 70px;
}

/* Logotipo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    height: 80px;   /* Tamanho principal da logo no cabeçalho */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.header-fixo.scrolled .logo-img {
    height: 65px;   /* Tamanho reduzido ao rolar a página */
}


/* Links do menu */
.nav-menu {
    display: flex;
    gap: 24px;
}
.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-color);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.oab-badge {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
}
.btn-header {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Menu Mobile Hamburguer */
.btn-menu-mobile {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}
.hamburguer {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    position: relative;
    transition: var(--transition-smooth);
}
.hamburguer::before, .hamburguer::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--bg-white);
    position: absolute;
    transition: var(--transition-smooth);
}
.hamburguer::before { top: -8px; }
.hamburguer::after { bottom: -8px; }

/* Menu Mobile Ativo */
.btn-menu-mobile.active .hamburguer {
    background-color: transparent;
}
.btn-menu-mobile.active .hamburguer::before {
    transform: rotate(45deg);
    top: 0;
}
.btn-menu-mobile.active .hamburguer::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
/* Conteúdo do Hero posicionado acima da imagem de fundo */
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 700px;
}
.hero-tagline {
    font-family: var(--font-title);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--bg-white);
    line-height: 1.25;
    margin-bottom: 24px;
}
.hero-title span {
    color: var(--accent-color);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   SEÇÃO SERVIÇOS
   ========================================================================== */

.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
}
.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Grid de cards de serviço */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(0, 35, 73, 0.05);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(213, 173, 54, 0.3);
}
.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(213, 173, 54, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-color);
    transition: var(--transition-smooth);
}
.service-card:hover .card-icon-box {
    background-color: var(--primary-color);
    color: var(--accent-color);
}
.card-icon {
    width: 28px;
    height: 28px;
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}
.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO SOBRE (F SOBRE)
   ========================================================================== */

.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.about-image-box {
    position: relative;
    padding: 20px;
}
.about-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--accent-color);
    z-index: 1;
}
.about-image {
    width: 90%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transform: translate(20px, 20px);
    box-shadow: var(--shadow-luxury);
    filter: brightness(0.95) contrast(1.05);
}

.about-content {
    padding-right: 20px;
}
.about-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.about-subtitle {
    font-family: var(--font-title);
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-text {
    margin-bottom: 30px;
}
.about-text p {
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 35, 73, 0.1);
    padding-top: 30px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 600;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   SEÇÃO DIFERENCIAIS
   ========================================================================== */

.differentials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diff-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 4px;
    border: 1px solid rgba(0, 35, 73, 0.05);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
}
.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(213, 173, 54, 0.3);
}

.diff-number {
    font-family: var(--font-title);
    font-size: 3rem;
    color: rgba(213, 173, 54, 0.2);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.diff-card:hover .diff-number {
    color: var(--accent-color);
    transform: scale(1.1);
    display: inline-block;
}

.diff-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.diff-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO CTA WHATSAPP
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 18, 38, 0.92);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}
.cta-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}
/* Espaçamento interno entre ícone e texto no botão CTA */
.btn-cta {
    gap: 12px;
}

/* ==========================================================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES ACORDEÃO)
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid rgba(0, 35, 73, 0.05);
    border-radius: 4px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item:hover {
    border-color: rgba(213, 173, 54, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.faq-question:hover {
    color: var(--accent-color);
}

/* Seta indicadora dourada com rotação animada */
.faq-arrow {
    display: block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    margin-right: 5px;
}

/* Estado ativo do acordeão */
.faq-item.active .faq-arrow {
    transform: rotate(-135deg);
}
.faq-item.active {
    background-color: var(--bg-white);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-luxury);
}

/* Transições suaves de recolhimento da resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Limite de altura seguro para transição suave */
    padding: 0 24px 24px;
}
.faq-answer p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */

.footer-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-top: 2px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px 24px 60px;
}

.logo-footer {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 20px;
    max-width: 320px;
}
.footer-oab {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.footer-col-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: 1px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1.5px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.contact-icon {
    font-size: 1.1rem;
}
.contact-link {
    color: rgba(255, 255, 255, 0.75);
}
.contact-link:hover {
    color: var(--accent-color);
}
.contact-text {
    color: rgba(255, 255, 255, 0.6);
}

/* Área inferior do rodapé */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}
.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}
.disclaimer {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
}



/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE COMPLETA
   ========================================================================== */

/* Telas Médias / Laptops / Tablets Paisagem (Abaixo de 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .about-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Tablets Retrato (Abaixo de 768px) */
@media (max-width: 768px) {
    /* Altera a imagem de fundo do hero para a versão mobile com prioridade sobre o estilo inline */
    .hero-bg {
        background-image: url('../assets/mobile-frank.webp') !important;
    }
    
    /* Adiciona um overlay azul em degradê sobre a imagem do hero no mobile para melhorar a legibilidade do texto */
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 35, 73, 0.5) 0%, rgba(0, 18, 38, 0.75) 100%);
    }

    /* Menu mobile lateral suspenso */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 50px 24px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-menu-mobile {
        display: block;
    }
    
    .header-actions {
        display: none; /* Oculta badge OAB e botão na barra no mobile por espaço */
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .about-image-box {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-frame {
        width: 90%;
        height: 90%;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Centraliza a logo no rodapé e reduz o tamanho para a versão mobile */
    .logo-footer {
        justify-content: center;
    }
    .logo-footer .logo-img {
        height: 60px;
    }
    
    .footer-desc {
        margin: 0 auto 20px;
    }
    
    .footer-col-title::after {
        left: calc(50% - 20px);
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* Dispositivos Móveis Pequenos (Abaixo de 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    

    .btn {
        width: 100%;
        text-align: center;
    }
}
