/* ==========================================================================
   Base Styles & Resets
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Premium - Terra e Natureza */
    --bg-body: #faf9f5;
    --bg-light: #ffffff;
    --bg-dark: #3a3f3a;
    --primary: #758a74; /* Verde Sálvia */
    --primary-hover: #5d6f5c;
    --accent: #d8cbbc; /* Bege Areia */
    
    --text-main: #333333;
    --text-muted: #666666;
    
    /* Typography */
    --font-head: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Utilities */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 400;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(117, 138, 116, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 138, 116, 0.4);
}

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

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

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline-dark:hover {
    background: var(--text-main);
    color: #fff;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--primary);
}

.logo-icon {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

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

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

@media (max-width: 992px) {
    .nav-links {
        display: none; /* Hide on mobile initially */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 15px 24px;
        border-bottom: 1px solid #eee;
    }
    
    .header-actions .btn-outline {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 100px;
    left: 0;
    width: 50%;
    height: calc(100% - 140px);
    background-size: cover;
    background-position: center;
    z-index: -2;
    right: 0;
    left: auto;
    border-radius: 40px 0 0 40px;
    margin: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-body) 45%, rgba(250, 249, 245, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    width: 65%;
    max-width: 100%;
    margin: 0;
    padding-right: 40px;
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 28px;
}

@media (max-width: 992px) {
    .hero-bg {
        width: 100%;
        border-radius: 0;
        margin: 0;
    }
    .hero-overlay {
        background: linear-gradient(0deg, var(--bg-body) 20%, rgba(250, 249, 245, 0.85) 100%);
    }
    .hero-content {
        padding: 0;
        text-align: center;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.bg-light {
    background-color: var(--bg-light);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.card-diferencial {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.card-diferencial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.icon-accent {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.card-diferencial p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Processo & Especialidades
   ========================================================================== */
.section-title {
    margin-bottom: 60px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 3px;
}

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

.especialidades-box {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary);
}

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

@media (max-width: 768px) {
    .processo-content {
        grid-template-columns: 1fr;
    }
}

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

.sobre-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.sobre-img {
    border-radius: 16px;
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.decoration-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: var(--accent);
    border-radius: 16px;
    z-index: 1;
}

.crp-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-body);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-main);
    font-weight: 500;
}

.social-link i {
    font-size: 1.5rem;
    color: #E1306C; /* Instagram Color */
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .sobre-img-wrapper {
        margin: 0 auto;
        max-width: 400px;
    }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid #e0dfdc;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-btn:hover {
    color: var(--primary);
}

.accordion-btn i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-btn[aria-expanded="true"] i {
    transform: rotate(45deg);
}

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

.accordion-content p {
    padding-bottom: 24px;
    padding-right: 40px;
    margin-bottom: 0;
}

/* ==========================================================================
   Contato & Footer
   ========================================================================== */
.contato {
    background-color: var(--bg-dark);
    color: var(--bg-light);
}

.contato h2, .contato p {
    color: var(--bg-light);
}

.contato p {
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
}

.text-link {
    display: block;
    color: var(--bg-light);
    opacity: 0.9;
}

.text-link:hover {
    color: var(--accent);
}

.contato-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(117, 138, 116, 0.1);
}

footer {
    background-color: #2c302c;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #fff;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-note {
    font-size: 0.8rem;
    opacity: 0.5;
    text-align: right;
}

@media (max-width: 768px) {
    .flex-footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-note {
        text-align: center;
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite ease-in-out;
}

.floating-wpp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    animation: none;
}

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

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

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

.review-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #f5b301;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

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

.review-author::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}
