/* ============================================
   RESET Y VARIABLES
   ============================================ */
:root {
    --color-cream: #f3f4f6;
    --color-green: #059669;
    --color-green-dark: #047857;
    --color-orange: #fbbf24;
    --color-orange-dark: #f59e0b;
    --color-lime: #d1fae5;
    --color-brown: #1e3a8a;
}

* {
    box-sizing: border-box;
}

body.page-template-template-landing {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--color-cream);
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ============================================
   HEADER
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-green);
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav a {
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.header-cta {
    display: none;
    gap: 0.75rem;
}

.btn-secondary {
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: var(--color-green);
}

.btn-primary {
    padding: 0.625rem 1.25rem;
    background-color: var(--color-orange);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--color-orange-dark);
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #374151;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .header-cta {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    background-image: url('https://ext.same-assets.com/1124030780/1533687289.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.hero-text {
    max-width: 42rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.trust-badge span {
    color: white;
    font-size: 0.875rem;
}

.hero-tag {
    display: inline-block;
    background-color: var(--color-lime);
    color: var(--color-green-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.hero-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-green);
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.btn-primary-lg:hover {
    background-color: var(--color-green-dark);
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.btn-secondary-lg:hover {
    background-color: #f3f4f6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: 5rem 0;
    background-color: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background-color: var(--color-lime);
    color: var(--color-green-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.section-title {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    position: relative;
    background-color: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-lime);
    color: var(--color-green-dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.step-content h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
}

.step-content p {
    color: #4b5563;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--color-brown);
}

.section-header-white {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag-white {
    display: inline-block;
    background-color: var(--color-lime);
    color: var(--color-green-dark);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}

.section-title-white {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    position: relative;
    background-color: var(--color-cream);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.benefit-check {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--color-lime);
    color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.benefit-card h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    margin-top: 0.5rem;
}

.benefit-card p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .section-title-white {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-title-white {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--color-cream);
}

.pricing-card {
    max-width: 48rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 4px solid var(--color-orange);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-orange);
}

.price-period {
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.pricing-features .check {
    color: var(--color-green);
    font-weight: 700;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--color-lime);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #10b981;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background-color: var(--color-cream);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    color: #111827;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: #4b5563;
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    background-color: var(--color-green);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #d1d5db;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: #d1d5db;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}