:root {
    /* Paleta Principal */
    
    --sage-100: #C3CA92;
    --sage-200: #A4B17B;
    --sage-300: #859864;
    --sage-400: #697E50;
    --sage-500: #4E653D;
    
    /* Neutros */
    --cream: #FDFDF8;
    --cream-warm: #F8F6F0;
    --stone: #E8E6DE;
    --text-primary: #2D3A2D;
    --text-secondary: #4A5A4A;
    --text-muted: #6B7B6B;
    
    /* Tipografia */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Transições */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-medium: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.heading-display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.heading-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.heading-2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.heading-3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-accent {
    color: var(--sage-400);
}

.text-muted {
    color: var(--text-muted);
}

.text-balance {
    text-wrap: balance;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--sage-400);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--sage-500);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(78, 101, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--sage-500);
    border: 1.5px solid var(--sage-300);
}

.btn-secondary:hover {
    background: var(--sage-100);
    border-color: var(--sage-400);
}

.btn-text {
    background: transparent;
    color: var(--sage-500);
    padding: 0.5rem 0;
    border-radius: 0;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--sage-400);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-medium);
}

.header.scrolled {
    background: rgba(253, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--sage-200), var(--sage-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--cream);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sage-500);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--sage-400);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.nav-link:hover {
    color: var(--sage-500);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: var(--space-sm);
}

/* Mobile Menu */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--sage-500);
    border-radius: 1px;
    transition: all var(--transition-fast);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--sage-500);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--sage-100) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1rem;
    background: var(--sage-100);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--sage-500);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--stone);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1s forwards;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--sage-400);
}

/* Hero Image */
.hero-visual {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 200px 200px 40px 40px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--sage-100) 0%, var(--sage-200) 100%);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--sage-400);
    font-size: 0.9rem;
    text-align: center;
    padding: var(--space-lg);
}

.hero-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
}

.hero-float-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.hero-float svg {
    width: 24px;
    height: 24px;
    color: var(--sage-400);
}

.hero-float strong {
    color: var(--sage-500);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--cream-warm);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sage-200), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--sage-100);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--sage-200);
    border-radius: 24px;
    transform: translate(16px, 16px);
    z-index: -1;
}

.about-decoration {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--sage-200);
    opacity: 0.3;
    top: -40px;
    right: -40px;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-400);
    margin-bottom: var(--space-sm);
}

.about-title {
    margin-bottom: var(--space-md);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-signature {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--sage-400);
    margin-top: var(--space-lg);
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--stone);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.credential svg {
    width: 20px;
    height: 20px;
    color: var(--sage-400);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.services-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-400);
    margin-bottom: var(--space-sm);
}

.services-subtitle {
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: var(--space-lg);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-200), var(--sage-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover {
    border-color: var(--sage-200);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(78, 101, 61, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--sage-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all var(--transition-medium);
}

.service-card:hover .service-icon {
    background: var(--sage-400);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--sage-500);
    transition: color var(--transition-medium);
}

.service-card:hover .service-icon svg {
    color: white;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--sage-100);
    border-radius: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-note p {
    font-size: 0.95rem;
    color: var(--sage-500);
    font-style: italic;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.process {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.process-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-400);
    margin-bottom: var(--space-sm);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }
    
    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(90deg, var(--sage-200), var(--sage-400), var(--sage-200));
        z-index: 0;
    }
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--sage-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--sage-500);
    transition: all var(--transition-medium);
}

.process-step:hover .step-number {
    background: var(--sage-400);
    color: white;
    border-color: var(--sage-400);
    transform: scale(1.1);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--sage-500);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--sage-400) 0%, transparent 70%);
    opacity: 0.3;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.testimonials-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-100);
    margin-bottom: var(--space-sm);
}

.testimonials-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: var(--space-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.95);
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    vertical-align: bottom;
    color: var(--sage-200);
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--sage-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.author-info {
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: white;
}

.author-detail {
    color: var(--sage-100);
    font-size: 0.85rem;
}

.testimonials-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.85rem;
    color: var(--sage-100);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--cream-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-3xl);
    }
}

.faq-header {
    position: static;
    top: 120px;
}

.faq-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-400);
    margin-bottom: var(--space-sm);
}

.faq-title {
    margin-bottom: var(--space-md);
}

.faq-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stone);
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--sage-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--sage-500);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--sage-500);
    transition: all var(--transition-medium);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--sage-400);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--sage-400) 0%, var(--sage-500) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, var(--sage-300) 0%, transparent 50%);
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--sage-100);
    margin-bottom: var(--space-lg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.cta .btn-primary {
    background: white;
    color: var(--sage-500);
}

.cta .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.cta .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: var(--sage-100);
}

.cta-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--sage-100);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

.contact-info {
    padding: var(--space-md) 0;
}

.contact-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sage-400);
    margin-bottom: var(--space-sm);
}

.contact-title {
    margin-bottom: var(--space-md);
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--cream-warm);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.contact-method:hover {
    background: var(--sage-100);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: var(--sage-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sage-500);
}

.contact-method-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-method-value {
    font-weight: 500;
    color: var(--text-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: var(--space-xl);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-label .required {
    color: var(--sage-400);
}

.form-input,
.form-textarea,
.form-select {
    padding: 1rem 1.25rem;
    border: 1.5px solid var(--stone);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--sage-400);
    background: white;
    box-shadow: 0 0 0 4px rgba(105, 126, 80, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--sage-400);
    flex-shrink: 0;
}

.form-consent a {
    color: var(--sage-500);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    margin-top: var(--space-sm);
}

.form-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.form-secure svg {
    width: 14px;
    height: 14px;
    color: var(--sage-400);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--sage-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--sage-400);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    color: var(--sage-200);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: white;
}

.crp-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: var(--space-md);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 100;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-medium);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: var(--space-xl);
    }
    
    .hero-float {
        display: none;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
    }
}