:root {
    --color-pearl: #FAF8F5;
    --color-gold: #B8943E;
    --color-gold-dark: #8B6914;
    --color-steel-blue: #7B9BC5;
    --color-foreground: #2D2D2D;
    --color-muted: #5D5D5D;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-foreground);
    background-color: var(--color-pearl);
    line-height: 1.6;
}

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

/* Header */
header {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .icon {
    font-size: 28px;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-gold);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--color-foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-pearl) 0%, #F5F0E8 100%);
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 20px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 48px;
}

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

.hero-text p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--color-foreground);
}

.download-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 148, 62, 0.3);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-preview {
    width: 300px;
    height: 600px;
    background: var(--color-white);
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--color-foreground);
}

.preview-icon {
    font-size: 120px;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid rgba(184, 148, 62, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-foreground);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Ximena Section */
.ximena-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(184, 148, 62, 0.05) 0%, rgba(123, 155, 197, 0.05) 100%);
}

.ximena-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ximena-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ximena-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-gold);
    box-shadow: 0 8px 32px rgba(184, 148, 62, 0.2);
}

.ximena-bio h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.ximena-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.ximena-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-foreground);
    margin-bottom: 16px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-foreground);
    font-weight: 500;
}

.credential-icon {
    color: var(--color-gold);
    font-size: 18px;
}

/* Consultations Section */
.consultations {
    padding: 80px 0;
    background: var(--color-white);
}

.consultations h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 48px;
}

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.consultation-card {
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.consultation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(184, 148, 62, 0.2);
}

.consultation-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
}

.consultation-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-foreground);
    margin-bottom: 16px;
}

.consultation-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 24px;
    min-height: 120px;
}

.consultation-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(184, 148, 62, 0.2);
    border-bottom: 1px solid rgba(184, 148, 62, 0.2);
}

.meta-duration, .meta-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-foreground);
}

.meta-price {
    color: var(--color-gold);
    font-size: 18px;
}

.consultation-note {
    text-align: center;
    font-size: 16px;
    color: var(--color-muted);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(123, 155, 197, 0.05) 0%, rgba(184, 148, 62, 0.05) 100%);
}

.testimonials h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-foreground);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold-dark);
    text-align: right;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--color-white);
}

.about h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 32px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--color-foreground);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-steel-blue) 0%, #A8C4E0 100%);
    text-align: center;
}

.cta h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 32px;
}

/* Footer */
footer {
    background: var(--color-foreground);
    color: var(--color-pearl);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--color-pearl);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding-top: 24px;
    text-align: center;
    color: var(--color-muted);
}

/* Legal Pages Styles */
.legal-page {
    padding: 48px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.legal-page .last-updated {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-foreground);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-foreground);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p, .legal-page li {
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul, .legal-page ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--color-gold);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .app-preview {
        width: 250px;
        height: 500px;
    }

    .preview-icon {
        font-size: 80px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .ximena-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ximena-img {
        width: 200px;
        height: 200px;
    }

    .ximena-bio h2 {
        font-size: 32px;
    }

    .credentials {
        align-items: center;
    }

    .consultation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-card p {
        min-height: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
