/* ========== YGEIAVITA WELLNESS THEME ========== */
:root {
    --yv-bg: #f4f8f7;
    --yv-bg-alt: #e8f2f0;
    --yv-panel: #ffffff;
    --yv-border: #c9e0db;
    --yv-accent: #0d7377;
    --yv-accent-hover: #0a5c5f;
    --yv-accent-soft: rgba(13, 115, 119, 0.12);
    --yv-teal: #14919b;
    --yv-mint: #2a9d8f;
    --yv-text: #1a2e2b;
    --yv-muted: #4a6b66;
    --yv-shadow: 0 12px 32px rgba(13, 115, 119, 0.12);
    --font-heading: 'Noto Serif', Georgia, serif;
    --font-body: 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--yv-text);
    background: var(--yv-bg);
    min-height: 100vh;
}

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

.site-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.publicidad-banner {
    background: linear-gradient(180deg, #e8f4f2 0%, #d4ebe7 100%);
    border-bottom: 1px solid var(--yv-border);
    text-align: center;
    padding: 0.4rem 1rem;
}

.publicidad-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--yv-accent);
}

.header {
    background: var(--yv-panel);
    border-bottom: 2px solid var(--yv-accent);
    box-shadow: 0 4px 18px rgba(13, 115, 119, 0.08);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--yv-accent);
    letter-spacing: 0.5px;
}

.logo a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--yv-mint);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--yv-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--yv-accent);
}

.header-nav .btn-nav {
    background: var(--yv-accent);
    color: #fff;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

.header-nav .btn-nav:hover {
    background: var(--yv-accent-hover);
    color: #fff;
}

.hero {
    background: linear-gradient(145deg, #0d7377 0%, #14919b 45%, #1a6b7a 100%);
    color: #fff;
    padding: 4.5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.28) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 4.2vw + 0.6rem, 3.25rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.25;
    color: #fff;
    overflow-wrap: break-word;
    word-break: break-word;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto 1.75rem;
    color: rgba(255, 255, 255, 0.92);
    overflow-wrap: break-word;
}

.hero .btn-primary {
    width: auto;
    min-width: 260px;
}

.product-section {
    padding: 5rem 0;
    background: var(--yv-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: start;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--yv-border);
    background: #fff;
    box-shadow: var(--yv-shadow);
    padding: 1.5rem;
}

.product-photo {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--yv-border);
    box-shadow: var(--yv-shadow);
    padding: 1.5rem;
}

.product-photo img {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
}

.product-badge {
    display: inline-block;
    background: var(--yv-accent-soft);
    color: var(--yv-accent);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.product-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw + 0.8rem, 2rem);
    margin-bottom: 1.15rem;
    color: var(--yv-text);
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}

.product-description {
    margin-bottom: 1.75rem;
    color: var(--yv-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.9rem 1.1rem;
    background: var(--yv-panel);
    border-radius: 10px;
    border: 1px solid var(--yv-border);
    border-left: 4px solid var(--yv-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature > span:last-child {
    min-width: 0;
    flex: 1 1 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.feature:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(13, 115, 119, 0.08);
}

.feature-icon {
    font-size: 1.25rem;
    min-width: 24px;
}

.product-specs {
    background: var(--yv-panel);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--yv-border);
}

.product-specs h3 {
    margin-bottom: 1rem;
    color: var(--yv-accent);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
}

.product-specs p {
    color: var(--yv-muted);
    line-height: 1.7;
    margin-bottom: 0.45rem;
}

.product-price {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-value {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--yv-accent);
    font-family: var(--font-heading);
}

.price-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--yv-muted);
}

.btn-primary {
    background: var(--yv-accent);
    color: #fff;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-shadow: 0 8px 20px rgba(13, 115, 119, 0.25);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: var(--yv-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(13, 115, 119, 0.32);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.35rem;
    margin-bottom: 3rem;
    color: var(--yv-text);
    font-weight: 700;
}

.how-it-works {
    padding: 5rem 0;
    background: var(--yv-bg-alt);
}

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

.comparison-item {
    background: var(--yv-panel);
    padding: 2.25rem;
    border-radius: 12px;
    border: 1px solid var(--yv-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--yv-shadow);
}

.comparison-item h3 {
    margin-bottom: 1.25rem;
    color: var(--yv-accent);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.comparison-image {
    margin-bottom: 1.25rem;
}

.comparison-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--yv-border);
    padding: 0.75rem;
}

.comparison-item p {
    margin-bottom: 0.85rem;
    color: var(--yv-muted);
    line-height: 1.8;
}

.benefits-section {
    padding: 5rem 0;
    background: var(--yv-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.benefit-card {
    background: var(--yv-panel);
    padding: 1.85rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--yv-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--yv-shadow);
}

.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--yv-accent);
    font-weight: 700;
}

.benefit-card p {
    color: var(--yv-muted);
    line-height: 1.7;
}

.guarantee {
    padding: 4.5rem 0;
    background: linear-gradient(145deg, #0d7377 0%, #1a6b7a 100%);
    text-align: center;
    color: #fff;
}

.guarantee .section-title {
    color: #fff;
    margin-bottom: 1.25rem;
}

.guarantee p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.faq {
    padding: 5rem 0;
    background: var(--yv-bg);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--yv-panel);
    border: 1px solid var(--yv-border);
    border-radius: 12px;
    padding: 1.6rem 1.75rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: var(--yv-accent);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--yv-muted);
    line-height: 1.85;
}

.faq-item a {
    color: var(--yv-accent);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

.contact-section {
    padding: 5rem 0;
    background: var(--yv-bg-alt);
}

.contact-section > .container > p {
    text-align: center;
    color: var(--yv-muted);
    max-width: 720px;
    margin: -1.5rem auto 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0 0;
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
    padding: 1.5rem 1.75rem;
    background: var(--yv-panel);
    border-radius: 12px;
    min-width: 220px;
    border: 1px solid var(--yv-border);
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--yv-accent);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.contact-item span {
    color: var(--yv-muted);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--yv-accent);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.footer {
    background: #123a3c;
    color: #e8f2f0;
    padding: 4rem 0 1.5rem;
}

.footer-legal h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.legal-info {
    margin-bottom: 1.75rem;
}

.legal-info p,
.contact-info-footer p,
.health-notice p {
    color: rgba(232, 242, 240, 0.85);
    margin-bottom: 0.65rem;
    line-height: 1.8;
}

.legal-info strong,
.contact-info-footer strong {
    color: #fff;
}

.health-notice {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.health-notice h4 {
    color: #fff;
    margin-bottom: 0.9rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.contact-info-footer {
    margin-bottom: 1.75rem;
}

.contact-info-footer a {
    color: #9ee0d8;
    text-decoration: none;
}

.contact-info-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: none;
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(232, 242, 240, 0.85);
    text-decoration: none;
    font-weight: 500;
}

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

.footer-bottom p {
    color: rgba(232, 242, 240, 0.7);
}

.footer-bottom a {
    color: #9ee0d8;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4.5rem 0;
    min-height: 60vh;
    background: var(--yv-bg);
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2.25rem;
    color: var(--yv-accent);
    font-weight: 700;
}

.legal-page section {
    margin-bottom: 2.75rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--yv-border);
}

.legal-page section:last-child {
    border-bottom: none;
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    margin-bottom: 1rem;
    color: var(--yv-text);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--yv-accent);
    font-weight: 700;
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--yv-muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.6rem;
    color: var(--yv-muted);
    line-height: 1.8;
}

.legal-page a {
    color: var(--yv-accent);
    text-decoration: none;
    font-weight: 600;
}

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

.withdrawal-form {
    background: var(--yv-panel);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.75rem 0;
    border: 1px solid var(--yv-border);
}

p, h1, h2, h3, .subtitle, .product-description, .feature, .benefit-card {
    max-width: 100%;
    overflow-wrap: break-word;
}

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

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .header-nav {
        width: 100%;
        gap: 0.45rem 0.7rem;
        font-size: 0.82rem;
    }

    .header-nav .btn-nav {
        padding: 0.4rem 0.85rem;
    }

    .product-grid,
    .comparison-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 2.75rem 0 2.4rem;
    }

    .hero-content h1 {
        font-size: 1.28rem;
        letter-spacing: 0;
    }

    .subtitle {
        font-size: 0.95rem;
        padding: 0 0.35rem;
        max-width: 100%;
    }

    .hero .btn-primary {
        min-width: 0;
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .product-info h2 {
        font-size: 1.35rem;
        overflow-wrap: anywhere;
    }

    .feature {
        padding: 0.8rem 0.85rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: stretch;
    }

    .legal-page h1 {
        font-size: 1.7rem;
    }
}
