:root {
    --bg-main: #f6ebe4;
    --bg-alt: #faf4ef;
    --text-primary: #382d20;
    --text-muted: #6f6659;
    --accent: #926337;
    --accent-hover: #a67d50;
    --accent-light: #eedec1;
    --white: #ffffff;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Geist', sans-serif;
    
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 14px rgba(62, 48, 35, 0.08);
    --shadow-md: 0 12px 36px -12px rgba(0, 0, 0, 0.14);
    --shadow-lg: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 250, 243, 0.85);
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
    border-bottom: 1px solid rgba(146, 99, 55, 0.1);
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
}

.logo .tagline {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
    margin-top: 0.1rem;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--accent);
}

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

/* Buttons */
.btn, .btn-primary, .btn-outline, .btn-contato {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(146, 99, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(146, 99, 55, 0.4);
    color: var(--white) !important;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

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

/* Hero Section */
.hero {
    position: relative;
    z-index: 200;
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #0b0c10;
    color: var(--white);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    animation: zoomSlow 25s linear infinite alternate;
}

@keyframes zoomSlow {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: #0b0c10 !important;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-solid:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white) !important;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.4);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--white);
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* Effects */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Panel / Cards */
.glass-panel {
    background: rgba(250, 244, 239, 0.7); /* Translucent bg-alt */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(146, 99, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(146, 99, 55, 0.3);
}

/* Sections General */
.section {
    padding: 6rem 0;
}

#areas, #direito-saude, #contato {
    background: linear-gradient(to bottom, transparent 0%, var(--bg-alt) 15%, var(--bg-alt) 85%, transparent 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

.sobre-texto h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.sobre-imagem {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.sobre-imagem img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.sobre-imagem:hover img {
    transform: scale(1.03);
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 1.5rem;
    row-gap: 1rem;
    align-items: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(146, 99, 55, 0.2);
}

.area-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    grid-column: 1;
    grid-row: 1;
}

.area-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

.area-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    grid-column: 1 / -1;
    grid-row: 2;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-left: 2rem;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--bg-alt);
}

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

.depoimento-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.depoimento-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-light);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.depoimento-texto {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.depoimento-autor::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
}

/* Contato */
.cta-panel {
    background: #1c150e;
    border-radius: var(--radius-lg);
    padding: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(146,99,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.contato-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contato-info p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contato-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contato-lista li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 1rem;
}

.contato-lista i {
    width: 40px;
    height: 40px;
    background: rgba(146,99,55,0.2);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-media {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.form-group option {
    background: #0d1422;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--bg-alt);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--accent);
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 480px) {
    .hero { padding-top: 6rem; padding-bottom: 4rem; }
    .hero h2 { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .cta-panel { padding: 1.5rem; margin: 2rem 0; }
    .contato-info h3 { font-size: 2rem; }
    .contato-lista li { font-size: 0.9rem; word-break: break-word; }
}

/* Divisores de Secao */
.section-divider {
    text-align: center;
    padding: 2rem 0;
    color: var(--accent); /* Tom bronze/dourado */
    font-size: 2.5rem;
    background-color: var(--bg-main);
}

.section-divider svg {
    display: inline-block;
}

.scale-beam-group {
    transform-origin: 50px 20px;
    animation: swing-beam 4s ease-in-out infinite;
}

.scale-tray-left {
    transform-origin: 12px 24px;
    animation: swing-tray-counter 4s ease-in-out infinite;
}

.scale-tray-right {
    transform-origin: 88px 24px;
    animation: swing-tray-counter 4s ease-in-out infinite;
}

@keyframes swing-beam {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

@keyframes swing-tray-counter {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-fade-up {
    transform: translateY(40px);
}

.scroll-blur-in {
    filter: blur(10px);
    transform: scale(0.98);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

@media (max-width: 992px) {
    .sobre-content, .contato-content {
        grid-template-columns: 1fr;
    }
    
    .cta-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        background: rgba(253, 250, 243, 0.98);
        padding: 2rem;
        border-bottom: 1px solid rgba(146, 99, 55, 0.1);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero {
        padding-top: 6rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .footer-content, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
