/* =====================================================
   PÁGINAS INTERNAS — CSS Compartilhado
   Letícia Barros | Advocacia e Consultoria Jurídica
   ===================================================== */

:root {
    --fundo-escuro: #231E1A;
    --fundo-alt: #2E2720;
    --fundo-card: #352E26;
    --fundo-light: #3A3228;
    --dourado: #C9A962;
    --dourado-light: #D4BC7D;
    --dourado-dark: #B8943F;
    --areia: #E8DED1;
    --areia-light: #F2EBE0;
    --cafe: #3D2B1F;
    --branco: #FAF6F0;
    --branco-puro: #FFFFFF;
    --dourado-glow: rgba(201, 169, 98, 0.15);
    --dourado-glow-md: rgba(201, 169, 98, 0.25);
    --dourado-glow-strong: rgba(201, 169, 98, 0.4);
    --gradient-gold: linear-gradient(135deg, var(--dourado), var(--dourado-light));
    --gradient-dark: linear-gradient(180deg, var(--fundo-escuro), var(--fundo-alt));
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.15);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--fundo-escuro);
    color: var(--areia);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

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

::selection { background: var(--dourado); color: var(--fundo-escuro); }

.highlight { color: var(--dourado); }

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 16px 0; transition: var(--transition);
}
.header.scrolled {
    padding: 10px 0;
    background: rgba(26,22,20,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,169,98,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header .container {
    display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid rgba(201,169,98,0.3);
    object-fit: cover; transition: var(--transition);
}
.logo:hover .logo-img { border-color: var(--dourado); }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--dourado); letter-spacing: 0.5px;
}
.logo-text .subtitle {
    font-size: 0.6rem; color: var(--dourado-light);
    letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.6;
}

.nav-menu {
    display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-menu a {
    font-size: 0.82rem; font-weight: 400; color: var(--areia);
    letter-spacing: 0.3px; position: relative; padding: 4px 0;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--dourado);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--dourado); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--dourado); }
.nav-menu a.active::after { width: 100%; }

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--dourado) !important;
    color: var(--dourado) !important;
    padding: 10px 24px !important; border-radius: 4px;
    font-size: 0.75rem !important; font-weight: 600 !important;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: var(--transition); cursor: pointer;
}
.nav-cta:hover {
    background: var(--dourado) !important;
    color: var(--fundo-escuro) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; z-index: 1001; padding: 8px; background: none; border: none;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--dourado);
    transition: var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-overlay.visible { opacity: 1; visibility: visible; }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-gold); color: var(--fundo-escuro);
    padding: 16px 32px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    transition: var(--transition); border: none; cursor: pointer;
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,98,0.35);
}

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(201,169,98,0.25); color: var(--dourado);
    padding: 12px 24px; border-radius: 6px;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.5px; background: transparent;
    transition: var(--transition); cursor: pointer;
}
.btn-outline:hover {
    background: var(--dourado-glow); border-color: var(--dourado);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 16px 32px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.5px; border: none; cursor: pointer;
    transition: var(--transition);
}
.btn-whatsapp:hover {
    background: #20bd5a; transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

/* ========== SECTION HELPERS ========== */
.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
    display: inline-block; font-size: 0.68rem;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--dourado); margin-bottom: 16px;
    position: relative; padding: 0 50px;
}
.section-tag::before, .section-tag::after {
    content: ''; position: absolute; top: 50%;
    width: 30px; height: 1px; background: var(--dourado); opacity: 0.3;
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-header h2 {
    font-size: 2.6rem; color: var(--branco); margin-bottom: 16px;
}
.section-header p {
    font-size: 1rem; color: var(--areia); opacity: 0.7;
    max-width: 520px; margin: 0 auto;
}

.gold-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
    opacity: 0.25;
}

/* ========== PAGE HERO (internal pages) ========== */
.page-hero {
    padding: 140px 0 60px;
    background: var(--fundo-alt);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -30%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,98,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero .breadcrumb {
    font-size: 0.75rem; color: var(--areia); opacity: 0.5;
    margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--dourado); opacity: 0.7; }
.page-hero .breadcrumb a:hover { opacity: 1; }

.page-hero h1 {
    font-size: 3rem; color: var(--branco); margin-bottom: 16px;
}
.page-hero p {
    font-size: 1.05rem; color: var(--areia-light); opacity: 0.8;
    max-width: 600px; line-height: 1.8;
}

/* ========== ABOUT PAGE ========== */
.about-full {
    padding: 80px 0;
}
.about-full .container {
    display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start;
}

.about-photo-area { position: relative; }
.about-photo-wrapper {
    width: 100%; aspect-ratio: 3/4;
    border-radius: 180px 180px 24px 24px;
    overflow: hidden;
    border: 2px solid rgba(201,169,98,0.15);
    background: var(--fundo-alt);
}
.about-photo-wrapper img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.img-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--fundo-card) 0%, var(--cafe) 50%, var(--fundo-alt) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
}
.img-fallback .initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; font-weight: 700;
    color: var(--dourado); opacity: 0.3;
    border: 2px solid rgba(201,169,98,0.15);
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.img-fallback span {
    font-size: 0.75rem; color: var(--dourado-light);
    opacity: 0.35; text-align: center; padding: 0 24px;
}

.about-text-area h2 {
    font-size: 2.2rem; color: var(--branco); margin-bottom: 20px;
}
.about-text-area .about-oab {
    font-size: 0.75rem; color: var(--dourado); letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 24px; opacity: 0.7;
}

.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-style: italic;
    color: var(--dourado-light); opacity: 0.85;
    border-left: 3px solid var(--dourado);
    padding-left: 20px; margin-bottom: 28px;
    line-height: 1.7;
}

.about-text-area p {
    font-size: 0.95rem; color: var(--areia-light); opacity: 0.8;
    margin-bottom: 20px; line-height: 1.8;
}

.credentials {
    display: flex; flex-direction: column; gap: 10px; margin: 28px 0;
}
.credential {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--areia); opacity: 0.8;
}
.credential i { color: var(--dourado); font-size: 0.75rem; }

/* Values section */
.values-section {
    padding: 80px 0; background: var(--fundo-alt);
}
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value-card {
    background: var(--fundo-card);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-md); padding: 36px 28px;
    transition: var(--transition);
}
.value-card:hover {
    border-color: rgba(201,169,98,0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.value-card .value-icon {
    width: 52px; height: 52px;
    background: var(--dourado-glow); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado); font-size: 1.2rem; margin-bottom: 20px;
}
.value-card h3 {
    font-size: 1.3rem; color: var(--branco); margin-bottom: 10px;
}
.value-card p {
    font-size: 0.88rem; color: var(--areia); opacity: 0.7; line-height: 1.7;
}

/* ========== CONTACT PAGE ========== */
.contact-full {
    padding: 80px 0;
}
.contact-full .container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}

.contact-info-card {
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-md); padding: 36px;
}

.contact-item {
    display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-item:last-of-type { margin-bottom: 0; }
.contact-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--dourado-glow); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado); font-size: 1rem;
}
.contact-item h4 {
    font-family: 'Inter', sans-serif; font-size: 0.82rem;
    font-weight: 600; color: var(--dourado); margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.contact-item p {
    font-size: 0.88rem; color: var(--areia); opacity: 0.7; line-height: 1.6;
}

.contact-social {
    display: flex; gap: 10px; margin-top: 28px;
    padding-top: 28px; border-top: 1px solid rgba(201,169,98,0.06);
}
.social-btn {
    width: 44px; height: 44px;
    background: var(--fundo-card);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--dourado); font-size: 1rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--dourado-glow); border-color: var(--dourado);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.06);
    border-radius: var(--radius-md); padding: 36px;
}
.contact-form-wrapper h3 {
    font-size: 1.5rem; color: var(--branco); margin-bottom: 8px;
}
.contact-form-wrapper > p {
    font-size: 0.82rem; color: var(--areia); opacity: 0.5;
    margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 500;
    color: var(--areia); margin-bottom: 6px; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 16px;
    background: var(--fundo-escuro);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-sm);
    color: var(--branco); font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast); outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--areia); opacity: 0.3;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--dourado);
    box-shadow: 0 0 0 3px rgba(201,169,98,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--fundo-alt); color: var(--branco); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-lgpd {
    font-size: 0.7rem; color: var(--areia); opacity: 0.35;
    margin-top: 12px; display: flex; align-items: center; gap: 6px;
}
.form-lgpd i { color: var(--dourado); opacity: 0.5; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ========== MAP ========== */
.map-section {
    padding: 0; background: var(--fundo-alt);
}
.map-section iframe {
    width: 100%; height: 350px; border: none;
    filter: grayscale(0.8) contrast(1.1) brightness(0.7);
    transition: filter 0.4s ease;
}
.map-section iframe:hover { filter: grayscale(0.3) contrast(1) brightness(0.85); }

/* ========== FAQ PAGE ========== */
.faq-full {
    padding: 80px 0;
}
.faq-category { margin-bottom: 48px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category h3 {
    font-size: 1.4rem; color: var(--dourado);
    margin-bottom: 20px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,169,98,0.1);
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(201,169,98,0.06);
}
.faq-question {
    width: 100%; background: none; border: none;
    padding: 20px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--branco); font-size: 1rem; font-weight: 500;
    font-family: 'Inter', sans-serif; text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--dourado); }
.faq-question i {
    color: var(--dourado); font-size: 0.75rem;
    transition: transform 0.3s ease; min-width: 20px; text-align: center;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.9rem; color: var(--areia); opacity: 0.75;
    line-height: 1.8;
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
}
.cta-box {
    background: var(--fundo-alt);
    border: 1px solid rgba(201,169,98,0.08);
    border-radius: var(--radius-lg);
    padding: 60px 48px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(201,169,98,0.04) 0%, transparent 60%);
}
.cta-box h2 {
    font-size: 2.4rem; color: var(--branco); margin-bottom: 16px;
    position: relative;
}
.cta-box p {
    font-size: 1rem; color: var(--areia); opacity: 0.7;
    max-width: 520px; margin: 0 auto 32px;
    position: relative;
}
.cta-buttons {
    display: flex; gap: 16px; justify-content: center;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--fundo-escuro); padding: 70px 0 28px;
    border-top: 1px solid rgba(201,169,98,0.06);
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand p {
    font-size: 0.82rem; color: var(--areia); opacity: 0.6;
    line-height: 1.7; margin: 16px 0 20px;
}

.footer h4 {
    font-family: 'Inter', sans-serif; font-size: 0.78rem;
    font-weight: 600; color: var(--dourado);
    margin-bottom: 18px; letter-spacing: 1.5px;
    text-transform: uppercase;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    font-size: 0.82rem; color: var(--areia); opacity: 0.6;
}
.footer-links a:hover { color: var(--dourado); opacity: 1; padding-left: 3px; }

.ft-contact-item {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px;
}
.ft-contact-item i {
    color: var(--dourado); font-size: 0.8rem; margin-top: 3px; opacity: 0.6;
}
.ft-contact-item span {
    font-size: 0.82rem; color: var(--areia); opacity: 0.6; line-height: 1.5;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(201,169,98,0.05);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.72rem; color: var(--areia); opacity: 0.4; }
.footer-bottom a { color: var(--dourado); opacity: 0.4; }
.footer-bottom a:hover { opacity: 1; }

/* ========== FLOATING ELEMENTS ========== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 1.5rem;
    z-index: 999; cursor: pointer; border: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.15), 0 0 0 10px rgba(37,211,102,0.08); }
}

.back-top {
    position: fixed; bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    background: var(--fundo-alt); border: 1px solid rgba(201,169,98,0.15);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: var(--dourado); font-size: 0.9rem;
    z-index: 999; cursor: pointer;
    opacity: 0; visibility: hidden; transition: var(--transition);
}
.back-top.visible { opacity: 1; visibility: visible; border-color: var(--dourado); box-shadow: var(--shadow-gold); }
.back-top:hover {
    background: var(--dourado-glow); border-color: var(--dourado);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 40px rgba(201, 169, 98, 0.25);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-full .container { grid-template-columns: 1fr; gap: 40px; }
    .about-photo-area { display: flex; justify-content: center; }
    .about-photo-wrapper { max-width: 340px; }
    .about-text-area { text-align: center; }
    .about-quote { border-left: none; padding-left: 0; padding-bottom: 16px; border-bottom: 2px solid var(--dourado); }
    .credentials { align-items: center; }

    .contact-full .container { grid-template-columns: 1fr; }

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

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

@media (max-width: 768px) {
    html { font-size: 15px; }

    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: var(--fundo-alt); flex-direction: column;
        justify-content: center; align-items: center;
        gap: 24px; transition: right 0.4s ease;
        border-left: 1px solid rgba(201,169,98,0.08);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { font-size: 1rem; }
    .hamburger { display: flex; }

    .page-hero h1 { font-size: 2.2rem; }

    .section-header h2 { font-size: 2rem; }

    .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .cta-box h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .form-row { grid-template-columns: 1fr; }

    .faq-category h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    html { font-size: 14px; }
    .page-hero h1 { font-size: 1.9rem; }
    .logo-text .name { font-size: 1rem; }
    .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
}
