/* ============================================
   MAIARA TEIXEIRA - LANDING PAGE
   Design: Sophisticated Legal Elegance
   Colors: Dark Charcoal (#121212), Gold (#A07D5D), Cream (#E0C5AD)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Buda:wght@300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Dark Theme (Default) */
    --bg-primary: #121212;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --text-main: #e0e0e0;
    --text-muted: #b0b0b0;
    --accent-gold: #A07D5D;
    --accent-cream: #E0C5AD;
    --accent-light: #d4af8a;
    --border-color: #2a2a2a;
    --green-whatsapp: #25D366;
    --header-bg: rgba(18, 18, 18, 0.95);
    --card-bg: rgba(160, 125, 93, 0.05);
    --shadow: rgba(0, 0, 0, 0.3);
}

[data-theme="light"] {
    --bg-primary: #f9f7f4;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f0ede9;
    --text-main: #2c2c2c;
    --text-muted: #5a5a5a;
    --accent-gold: #8c6a4a;
    --accent-cream: #f2e6dc;
    --accent-light: #a68b6e;
    --border-color: #e2d9d0;
    --header-bg: rgba(249, 247, 244, 0.95);
    --card-bg: rgba(140, 106, 74, 0.05);
    --shadow: rgba(0, 0, 0, 0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Lora', serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold); border-radius: 3px; }

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   HEADER/NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-main);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo-text h1 {
    font-family: "Buda", serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    margin: 0;
}

.logo-text h4 {
    font-size: 1.5rem;
    font-family: "Buda", serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1;
    margin: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--accent-gold);
}

.nav a.btn-cta {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav a.btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    margin-top: 60px;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-block;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h2 .accent {
    color: var(--accent-gold);
}

.hero-text > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}


.badge-item {
    font-size: 0.95rem;
    color: var(--text-main);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.btn-primary {
    background: var(--accent-gold);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(160, 125, 93, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image-placeholder .icon {
    font-size: 4rem;
}

.image-placeholder p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credential {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--header-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    max-width: 200px;
}

.credential-label {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.credential-text {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}


/* ===== TRUST BAR ===== */
    #trust-bar {
      background:rgba(160, 125, 93, 0.05) ;
      border-top: 1px solid rgba(160, 125, 93, 0.2);
      border-bottom: 1px solid rgba(160, 125, 93, 0.2);
      padding: 1.5rem 0;
    }
    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--accent-gold);
    }
    .trust-item i { color: var(--gold); font-size: 1rem; }
    .trust-item span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-main);
    }
    .trust-divider {
      width: 1px;
      height: 20px;
      background: rgba(201, 168, 76, 0.3);
    }
    
/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text h3 .accent {
    color: var(--accent-gold);
}

.about-text > p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.approach {
    background: rgba(160, 125, 93, 0.05);
    border-left: 3px solid var(--accent-gold);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.approach h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.approach p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.credential-item {
    background: rgba(160, 125, 93, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.credential-item .label {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.credential-item .value {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .about .container {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        font-size: 2rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services .container > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.services .container > h3 .accent {
    color: var(--accent-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(160, 125, 93, 0.2);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(160, 125, 93, 0.2);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-icon {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-tags span {
    background: rgba(160, 125, 93, 0.15);
    color: var(--accent-gold);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.link-arrow {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-arrow:hover {
    transform: translateX(5px);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.how-it-works .container > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.how-it-works .container > h3 .accent {
    color: var(--accent-gold);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: rgba(160, 125, 93, 0.05);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent-gold);
    background: rgba(160, 125, 93, 0.1);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.step-icon {
    color: var(--accent-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.faq .container > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.faq .container > h3 .accent {
    color: var(--accent-gold);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    width: 100%;
    background: var(--card-bg);
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(160, 125, 93, 0.1);
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact .container > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.contact .container > h3 .accent {
    color: var(--accent-gold);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h4,
.contact-form h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-gold);
    background: rgba(160, 125, 93, 0.1);
    transform: translateX(5px);
}

.method-icon {
    font-size: 1.8rem;
}

.method-title {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.method-text {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.guarantees {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.guarantees h5 {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.guarantees ul {
    list-style: none;
}

.guarantees li {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(160, 125, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-icon {
    font-size: 1.8rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        margin-top: 100px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about,
    .services,
    .how-it-works,
    .faq,
    .contact {
        padding: 4rem 0;
    }

    .about-text h3,
    .services .container > h3,
    .how-it-works .container > h3,
    .faq .container > h3,
    .contact .container > h3 {
        font-size: 1.8rem;
    }

    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: rotate(15deg);
}

[data-theme="light"] .theme-toggle .fa-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .fa-moon {
    display: none;
}

@media (max-width: 768px) {
    .theme-toggle {
        margin-left: 0;
    }
    
    .header-content {
        gap: 1rem;
    }
}
