/* Variáveis de Cores e Fontes */
:root {
    /* Paleta Minimalismo Orgânico */
    --primary: #5F7161; /* Verde Sálvia Escuro */
    --primary-light: #E8ECE9; /* Verde Sálvia Claro */
    --secondary: #D4A373; /* Terracota Suave */
    --secondary-light: #FDF6F0; /* Bege Quente */
    --accent: #E9C46A; /* Dourado Suave */
    
    --bg-body: #FDFBF7; /* Off-white Areia */
    --bg-white: #FFFFFF;
    --bg-light: #F7F5F2;
    
    --text-main: #2C3333; /* Cinza Carvão */
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    
    --border: #E5E7EB;
    
    /* Tipografia */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
    
    /* Espaçamento */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilitários */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Garantir que o body não tenha overflow horizontal em mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
}

.section {
    padding: 80px 0;
}

.section-image {
    padding: 40px 0;
    background-color: var(--bg-body);
}

.section-decorative-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }
.bg-primary-light { background-color: var(--primary-light); }

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

.text-center .mt-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.text-highlight { color: var(--primary); font-style: italic; }
.text-highlight-2 { color: var(--secondary); font-style: italic; }

.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 3.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-6 { margin-top: 1.5rem; }

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 10;
    text-decoration: none;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.btn * {
    pointer-events: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #4A5A4C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 113, 97, 0.2);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-light);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Header */
#header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 6px;
}

.logo-crp {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    display: inline;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 60px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background-color: rgba(95, 113, 97, 0.08);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 163, 115, 0.08);
    bottom: -50px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.6;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.5;
}

/* Sobre Mim */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.align-center { align-items: center; }
.align-start { align-items: flex-start; }

.profile-image-container {
    position: relative;
    border-radius: 100px 20px 100px 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.crp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.crp-title {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
}

.crp-number {
    display: block;
    font-weight: 600;
    color: var(--primary);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-title-single-line {
    white-space: nowrap;
    font-size: 2rem;
}

.section-header {
    margin-bottom: 60px;
}

.section-subheading {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: var(--font-sans);
    line-height: 1.4;
}

.text-content p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.check-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-main);
}

.check-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.check-list i.ph-circle {
    font-size: 0.5rem;
    color: var(--text-main);
}

/* Separador de Seção */
.section-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 40px 0;
    width: 100%;
}

/* Seção de Identificação */
.max-w-800 { max-width: 800px; }
.max-w-1200 { max-width: 1200px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Seção de Identificação - Estilos específicos */
.identification-section .text-content {
    text-align: left;
}

.identification-section .text-content.text-center {
    text-align: center !important;
}

.identification-section .text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.identification-section .text-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.3;
}

.identification-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.identification-subtitle .text-primary {
    color: var(--primary);
}

/* Alinhar todos os textos à mesma posição à esquerda */
/* O texto no grid-2-cols está dentro de um grid de 1200px centralizado */
/* Precisamos alinhar os outros textos à mesma posição do texto dentro do grid */
.identification-section .max-w-1200.mx-auto {
    max-width: 1200px;
}

.identification-section .max-w-1200 .grid-2-cols {
    gap: 60px;
}

/* Calcular a posição do texto dentro do grid e aplicar aos outros textos */
/* O container tem max-width 1200px e padding 20px, então o conteúdo útil é 1160px */
/* O grid de 2 colunas com gap 60px: cada coluna tem (1160px - 60px) / 2 = 550px */
/* O texto dentro do grid começa na posição: padding do container (20px) */
    .identification-section .max-w-800.mx-auto:not(.text-center) {
        margin-left: 0;
        margin-right: auto;
        max-width: 100%;
        padding-left: 0;
    }
    
    .identification-section .max-w-800.mx-auto.text-center {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding-left: 0;
    }
    
    /* Parágrafo de largura total */
    .identification-section .identification-full-width {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    
    .identification-section .identification-full-width.text-center {
        text-align: center !important;
    }
    
    .identification-section .identification-full-width p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 0;
    }
    
    .identification-section .text-content h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .identification-subtitle {
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.5;
    }
    
    .identification-section .text-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.7;
    }

.identification-section .check-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 24px 0;
}

.identification-section .check-list li {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1rem;
}

.identification-section .check-list .list-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Grid de features para a seção de identificação */
/* Grid de features para a seção de identificação */
.identification-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.identification-features-grid .feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.identification-features-grid .feature i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.identification-features-grid .feature strong {
    display: block;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.identification-features-grid .feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .identification-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .identification-features-grid .feature {
        padding: 16px;
    }
}

.identification-image-col {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.identification-profile-img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: center top;
    display: block;
    margin: 0;
}

.identification-box {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.box-content {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    overflow: hidden;
    position: relative;
    min-height: 0;
}

.box-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

/* Abordagem */
.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.icon-primary { background: var(--primary-light); color: var(--primary); }
.icon-secondary { background: var(--secondary-light); color: var(--secondary); }
.icon-accent { background: #FFF8E1; color: var(--accent); }

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-muted);
}

/* Áreas de Atuação */
.bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#E5E7EB 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.specialties-list {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.specialty-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.specialty-item .dot {
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.specialty-item h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.specialty-item p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.image-frame {
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: rotate(2deg);
}

.frame-img {
    border-radius: var(--radius-md);
}

/* Serviços e Preços */
.pricing-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.5;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.price {
    margin: 16px 0;
    color: var(--text-main);
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: var(--text-muted);
}

.amount {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1;
}

.period {
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.pricing-features i {
    color: var(--primary);
}

.payment-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* FAQ Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.accordion-item.active {
    background: white;
    border-color: var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 24px;
}

/* Footer */
.footer {
    background-color: #2C3333;
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #9CA3AF;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer h4 {
    color: white;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul, .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9CA3AF;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #6B7280;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    :root {
        --container-width: 900px;
    }
    
    .hero h1 { font-size: 3rem; }
    
    .grid-2-cols, .grid-3-cols, .pricing-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-text { margin: 0 auto 40px; }
    
    .about-image-col { order: -1; }
    
    .pricing-card { position: static; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Melhorar renderização de fontes no mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        font-weight: 400;
    }
    
    .mobile-menu-btn { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .logo {
        font-size: 1rem;
        white-space: nowrap;
        font-weight: 700;
        line-height: 1.3;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 4px;
    }
    
    .logo-crp {
        font-size: 0.65rem;
        font-weight: 500;
        display: inline;
        white-space: nowrap;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .mobile-menu-btn {
        font-size: 1.4rem;
        padding: 8px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 30px;
        padding-bottom: 50px;
        min-height: auto;
    }
    
    .hero h1 { 
        font-size: 1.75rem; 
        line-height: 1.25;
        margin-bottom: 16px;
        font-weight: 700;
    }
    
    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 24px;
        font-weight: 400;
        color: var(--text-main);
        line-height: 1.7;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 5px 12px;
        margin-bottom: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        min-height: 48px;
    }
    
    .hero-image-wrapper {
        margin-top: 32px;
    }
    
    .floating-card {
        padding: 14px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
    
    .quote {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .quote-author {
        font-size: 0.75rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 50px 0;
    }
    
    .section-image {
        padding: 24px 0;
    }
    
    .section-decorative-img {
        max-width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: var(--radius-md);
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        font-weight: 700;
        line-height: 1.3;
    }
    
    .section-title-single-line {
        white-space: normal;
        font-size: 1.75rem;
    }
    
    .section-subheading {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .identification-subtitle {
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.5;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
        margin-bottom: 8px;
        font-weight: 700;
        letter-spacing: 1.5px;
    }
    
    .section-desc {
        font-size: 0.95rem;
        margin-bottom: 32px;
        font-weight: 400;
        line-height: 1.7;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Sobre Section Mobile */
    .text-content p {
        font-size: 0.95rem;
        margin-bottom: 12px;
        font-weight: 400;
        color: var(--text-main);
        line-height: 1.7;
    }
    
    .text-content {
        margin-bottom: 24px;
    }
    
    .check-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    
    .check-list li {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .check-list i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .profile-image-container {
        margin-bottom: 24px;
    }
    
    .crp-badge {
        padding: 8px 16px;
        bottom: 12px;
        right: 12px;
    }
    
    .crp-title {
        font-size: 0.7rem;
    }
    
    .crp-number {
        font-size: 0.85rem;
    }
    
    /* Cards Mobile */
    .card {
        padding: 24px 16px;
    }
    
    .card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .card p {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-main);
        line-height: 1.7;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .grid-3-cols {
        gap: 24px;
    }
    
    /* Áreas de Atuação Mobile */
    .specialty-item {
        padding: 16px;
        gap: 12px;
    }
    
    .specialty-item h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .specialty-item p {
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--text-main);
        line-height: 1.6;
        margin: 0;
    }
    
    .specialties-list {
        gap: 16px;
        margin-top: 24px;
    }
    
    .image-frame {
        padding: 12px;
        transform: rotate(1deg);
    }
    
    .grid-2-cols {
        gap: 32px;
    }
    
    /* Pricing Mobile */
    .pricing-container {
        gap: 32px;
    }
    
    .pricing-details h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .pricing-details p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    
    .feature {
        padding: 14px;
        gap: 12px;
    }
    
    .feature i {
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .feature strong {
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    .pricing-card {
        padding: 24px 16px;
        position: static;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-features {
        margin-bottom: 24px;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .pricing-features i {
        font-size: 1rem;
    }
    
    .btn-full {
        width: 100%;
        min-height: 48px;
    }
    
    /* FAQ Mobile */
    .accordion {
        gap: 12px;
    }
    
    .accordion-header {
        padding: 14px 16px;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .accordion-header i {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-left: 12px;
    }
    
    .accordion-content {
        padding: 0 16px;
    }
    
    .accordion-content p {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-main);
        line-height: 1.7;
    }
    
    .accordion-item.active .accordion-content {
        padding-bottom: 16px;
        max-height: 300px;
    }
    
    /* Feature Mobile */
    .feature strong {
        font-weight: 600;
    }
    
    .feature p {
        font-weight: 400;
        color: var(--text-main);
    }
    
    /* Nav Links Mobile */
    .nav-link {
        font-weight: 500;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo {
        max-width: 140px;
        margin-bottom: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .footer-brand h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.7;
    }
    
    .footer h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links ul,
    .footer-contact ul {
        gap: 10px;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-bottom p {
        margin-bottom: 8px;
    }
    
    /* Seção de Identificação Mobile */
    .identification-section {
        padding: 40px 0;
    }
    
    .identification-section .grid-2-cols {
        margin: 0;
        gap: 24px;
    }

    .identification-section .grid-2-cols.align-start {
        align-items: stretch;
    }

    .identification-section .grid-2-cols .text-content {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .identification-section .grid-2-cols .identification-box {
        height: 100%;
        align-self: stretch;
    }
    
    .identification-image-col {
        order: -1;
    }
    
    .identification-profile-img {
        max-width: 100%;
    }
    
    .identification-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
        margin-bottom: 24px;
    }
    
    .identification-features-grid .feature {
        padding: 16px;
        gap: 12px;
    }
    
    .identification-features-grid .feature i {
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .identification-features-grid .feature strong {
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .identification-features-grid .feature p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .identification-full-width {
        margin-bottom: 24px;
    }
    
    .max-w-800 {
        margin-bottom: 20px;
    }
    
    .mb-6 {
        margin-bottom: 24px;
    }
    
    .mb-4 {
        margin-bottom: 16px;
    }
    
    .mb-2 {
        margin-bottom: 8px;
    }
    
    .mt-8 {
        margin-top: 32px;
    }
    
    .mt-6 {
        margin-top: 24px;
    }
    
    .mb-10 {
        margin-bottom: 40px;
    }
}

/* Mobile Extra Pequeno (360px - 480px) - Otimização específica para 360px */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    
    .header-container {
        padding: 0 14px;
    }
    
    .logo {
        font-size: 0.95rem;
        gap: 3px;
    }
    
    .logo-crp {
        font-size: 0.6rem;
        display: inline;
    }
    
    .hero {
        padding-top: 24px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .hero-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-title-single-line {
        font-size: 1.6rem;
    }
    
    .card {
        padding: 20px 14px;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 20px 14px;
    }
    
    .accordion-header {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .accordion-content {
        padding: 0 14px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(95, 113, 97, 0.2);
    }
    
    .btn-lg {
        padding: 14px 20px;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .btn-sm {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .btn-agendar {
        min-height: 44px;
    }
    
    .nav-menu {
        padding: 16px;
        gap: 0;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 14px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    .nav-menu .btn-agendar {
        margin-top: 12px;
        width: 100%;
    }
    
    .floating-card {
        padding: 12px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .quote {
        font-size: 0.8rem;
    }
    
    .identification-features-grid {
        gap: 12px;
    }
    
    .identification-features-grid .feature {
        padding: 14px;
    }
    
    .specialty-item {
        padding: 14px;
    }
    
    .features-grid {
        gap: 10px;
    }
    
    .feature {
        padding: 12px;
    }
}

/* Otimização específica para 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .header-container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 0.9rem;
        line-height: 1.2;
        gap: 3px;
    }
    
    .logo-crp {
        font-size: 0.58rem;
        display: inline;
    }
    
    .hero {
        padding-top: 20px;
        padding-bottom: 36px;
    }
    
    .hero h1 {
        font-size: 1.45rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .section {
        padding: 36px 0;
    }
    
    .section-title {
        font-size: 1.45rem;
        line-height: 1.25;
    }
    
    .section-title-single-line {
        font-size: 1.45rem;
    }
    
    .section-subheading {
        font-size: 1rem;
    }
    
    .card {
        padding: 18px 12px;
    }
    
    .card h3 {
        font-size: 1.05rem;
    }
    
    .pricing-card {
        padding: 18px 12px;
    }
    
    .accordion-header {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 11px 18px;
        font-size: 0.85rem;
        min-height: 42px;
    }
    
    .btn-lg {
        padding: 13px 18px;
        font-size: 0.85rem;
        min-height: 46px;
    }
    
    .identification-features-grid {
        padding: 0 12px;
        gap: 10px;
    }
    
    .identification-features-grid .feature {
        padding: 12px;
    }
    
    .specialty-item {
        padding: 12px;
    }
    
    .features-grid {
        gap: 8px;
    }
    
    .feature {
        padding: 10px;
    }
    
    .footer {
        padding: 40px 0 16px;
    }
    
    .footer-grid {
        gap: 28px;
    }
}

/* Otimizações de Performance */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Otimizações de Performance - Containment */
.hero,
.section {
    contain: layout style;
}

.card,
.pricing-card {
    contain: layout style paint;
}

/* Prevenção de layout shift */
.hero-img,
.profile-img,
.frame-img {
    aspect-ratio: attr(width) / attr(height);
}

/* Modal de Escolha */
.choice-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.choice-modal.active {
    opacity: 1;
    visibility: visible;
}

.choice-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.choice-modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.choice-modal.active .choice-modal-content {
    transform: scale(1);
}

.choice-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.choice-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-main);
}

.choice-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
}

.choice-modal-content > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.choice-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.choice-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    gap: 12px;
}

.choice-btn:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(95, 113, 97, 0.15);
}

.choice-btn i {
    font-size: 2.5rem;
    color: var(--primary);
}

.choice-whatsapp:hover {
    background: var(--primary-light);
}

.choice-whatsapp:hover i {
    color: #25D366;
}

.choice-formulario:hover {
    background: var(--secondary-light);
}

.choice-formulario:hover i {
    color: var(--secondary);
}

.choice-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.choice-btn small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Modal Mobile - Otimização */
@media (max-width: 768px) {
    .choice-modal-content {
        padding: 24px 20px;
        width: 95%;
        max-width: 400px;
    }
    
    .choice-modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .choice-modal-content > p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .choice-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .choice-btn {
        padding: 20px 16px;
        gap: 10px;
    }
    
    .choice-btn i {
        font-size: 2rem;
    }
    
    .choice-btn span {
        font-size: 1rem;
    }
    
    .choice-btn small {
        font-size: 0.8rem;
    }
    
    .choice-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }
}

/* Otimização de animações para dispositivos móveis */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

