/* ============================================================
   styles.css  ·  Klinapps
   Hoja de estilos compartida: index, aviso-privacidad, terminos
   ============================================================ */

/* --- Variables --- */
:root {
            --primary: #0B1D3A;
            --primary-light: #132d56;
            --accent: #00B4D8;
            --accent-glow: #00D4FF;
            --accent-warm: #F0A500;
            --surface: #F7F9FC;
            --surface-warm: #FFF8ED;
            --white: #FFFFFF;
            --text: #1A1A2E;
            --text-muted: #5A6478;
            --text-light: #8B95A8;
            --border: #E2E8F0;
            --gradient-hero: linear-gradient(165deg, #0B1D3A 0%, #142E5C 40%, #1A3A6E 70%, #0D4A6B 100%);
            --gradient-accent: linear-gradient(135deg, #00B4D8, #00D4FF);
            --gradient-warm: linear-gradient(135deg, #F0A500, #FFD166);
            --shadow-sm: 0 2px 8px rgba(11, 29, 58, 0.06);
            --shadow-md: 0 8px 30px rgba(11, 29, 58, 0.1);
            --shadow-lg: 0 20px 60px rgba(11, 29, 58, 0.12);
            --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.15);
            --radius: 16px;
            --radius-sm: 10px;
        }

/* --- Base --- */
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
body.home  { background: var(--white);   overflow-x: hidden; }
body.legal { background: var(--surface); line-height: 1.6; }

.logo-icon {
    background: var(--gradient-accent);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 700; font-family: 'DM Sans', sans-serif;
}
body.home  .logo-icon { width: 36px; height: 36px; border-radius: 10px; font-size: 1.1rem;
                         box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3); }
body.legal .logo-icon { width: 32px; height: 32px; border-radius: 8px;  font-size: 0.9rem; }


/* ============================================================
   LANDING  ·  index.html
   ============================================================ */

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

html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

nav.scrolled {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(11, 29, 58, 0.08);
            padding: 0.6rem 2rem;
        }

.nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--white);
            transition: color 0.3s;
        }

nav.scrolled .logo { color: var(--primary); }

.nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

.nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.92rem;
            font-weight: 500;
            transition: color 0.3s;
            letter-spacing: 0.01em;
        }

.nav-links a:hover { color: var(--accent-glow); }

nav.scrolled .nav-links a { color: var(--text-muted); }

nav.scrolled .nav-links a:hover { color: var(--accent); }

.nav-cta {
            background: rgba(255, 255, 255, 0.12) !important;
            border: 1px solid rgba(255, 255, 255, 0.25) !important;
            color: var(--white) !important;
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            transition: all 0.3s !important;
        }

.nav-cta:hover {
            background: var(--accent) !important;
            border-color: var(--accent) !important;
            color: var(--white) !important;
        }

nav.scrolled .nav-cta {
            background: var(--accent) !important;
            border-color: var(--accent) !important;
            color: var(--white) !important;
        }

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

.mobile-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

nav.scrolled .mobile-toggle span { background: var(--primary); }

.hero {
            background: var(--gradient-hero);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 8rem 2rem 6rem;
        }

.hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }

.hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 165, 0, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }

@keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.15); opacity: 1; }
        }

.hero-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

.hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

.hero-text { animation: fadeUp 1s ease-out; }

@keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

.hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 180, 216, 0.12);
            border: 1px solid rgba(0, 180, 216, 0.25);
            color: var(--accent-glow);
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            margin-bottom: 1.8rem;
            text-transform: uppercase;
        }

.hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-glow);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

@keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

.hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

.hero h1 em {
            font-style: italic;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.hero-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 520px;
            margin-bottom: 2.5rem;
        }

.hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

.btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            border: none;
            letter-spacing: 0.01em;
        }

.btn-primary {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 6px 25px rgba(0, 180, 216, 0.35);
        }

.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 35px rgba(0, 180, 216, 0.45);
        }

.btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
        }

.btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.5);
        }

.hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeUp 1s ease-out 0.3s both;
        }

.product-orbit {
            position: relative;
            width: 420px;
            height: 420px;
        }

.orbit-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 140px;
            height: 140px;
            background: rgba(0, 180, 216, 0.08);
            border: 2px solid rgba(0, 180, 216, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.02em;
            backdrop-filter: blur(10px);
        }

.orbit-ring {
            position: absolute;
            inset: 0;
            border: 1px solid rgba(0, 180, 216, 0.1);
            border-radius: 50%;
            animation: rotate 40s linear infinite;
        }

.orbit-ring:nth-child(2) {
            inset: 40px;
            animation-duration: 30s;
            animation-direction: reverse;
            border-color: rgba(240, 165, 0, 0.08);
        }

@keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

.float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            padding: 1.2rem 1.5rem;
            min-width: 190px;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

.float-card:nth-child(4) { top: 0; right: 0; animation-delay: 0s; }

.float-card:nth-child(5) { bottom: 20px; left: -20px; animation-delay: -2s; }

.float-card:nth-child(6) { bottom: 60px; right: -10px; animation-delay: -4s; }

@keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
        }

.float-card h4 {
            color: var(--white);
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

.float-card p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.76rem;
        }

.section {
            padding: 7rem 2rem;
        }

.section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 4rem;
        }

.section-label {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 1rem;
        }

.section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

.section-subtitle {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
        }

.products-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
        }

.product-card {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

.product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

.product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: var(--radius) var(--radius) 0 0;
            transition: height 0.4s;
        }

.product-card:hover::before { height: 5px; }

.product-card.klinafy::before { background: var(--gradient-accent); }

.product-card.simulador::before { background: var(--gradient-warm); }

.product-card.embarazo::before { background: linear-gradient(135deg, #EC4899, #F472B6); }

.product-type {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 0.6rem;
        }

.product-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }

.product-card > p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.8rem;
        }

.product-features {
            list-style: none;
            margin-bottom: 2rem;
        }

.product-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            padding: 0.45rem 0;
            color: var(--text);
            font-size: 0.9rem;
            line-height: 1.5;
        }

.product-features li::before {
            content: '✓';
            font-weight: 700;
            font-size: 0.8rem;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

.product-card.klinafy .product-features li::before { color: var(--accent); }

.product-card.simulador .product-features li::before { color: var(--accent-warm); }

.product-card.embarazo .product-features li::before { color: #EC4899; }

.product-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s;
        }

.product-card.klinafy .product-link { color: var(--accent); }

.product-card.simulador .product-link { color: var(--accent-warm); }

.product-card.embarazo .product-link { color: #EC4899; }

.product-link:hover { gap: 0.8rem; }

.product-link .arrow { transition: transform 0.3s; }

.product-link:hover .arrow { transform: translateX(3px); }

.coming-soon-badge {
            display: inline-block;
            background: rgba(236, 72, 153, 0.1);
            color: #EC4899;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

.about {
            background: var(--surface);
            position: relative;
        }

.about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

.about-visual {
            position: relative;
        }

.about-card-stack {
            position: relative;
            height: 380px;
        }

.about-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
        }

.about-card:nth-child(1) {
            top: 0;
            left: 0;
            width: 280px;
            z-index: 2;
        }

.about-card:nth-child(2) {
            top: 60px;
            right: 0;
            width: 260px;
            z-index: 1;
        }

.about-card:nth-child(3) {
            bottom: 0;
            left: 40px;
            width: 300px;
            z-index: 3;
        }

.about-stat {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }

.about-stat.blue { color: var(--accent); }

.about-stat.amber { color: var(--accent-warm); }

.about-stat.dark { color: var(--primary); }

.about-stat-label {
            color: var(--text-muted);
            font-size: 0.88rem;
        }

.about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.25;
            margin-bottom: 1.5rem;
        }

.about-text p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

.values-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

.value-item {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text);
        }

.value-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gradient-accent);
            flex-shrink: 0;
        }

.contact {
            background: var(--surface);
        }

.contact-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

.contact-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            margin-top: 2rem;
        }

.contact-email {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.8rem;
        }

.contact-email a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }

.contact-email a:hover { color: var(--primary); }

.contact-note {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

footer {
            background: var(--primary);
            padding: 3.5rem 2rem 2rem;
        }

.footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

.footer-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 2rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

.footer-brand .logo {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }

.footer-brand p {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.85rem;
            max-width: 320px;
            line-height: 1.6;
        }

.footer-links-group h5 {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

.footer-links-group ul {
            list-style: none;
        }

.footer-links-group li {
            margin-bottom: 0.6rem;
        }

.footer-links-group a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s;
        }

.footer-links-group a:hover { color: var(--accent-glow); }

.footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

.footer-legal {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.8rem;
            line-height: 1.7;
        }

.footer-legal strong {
            color: rgba(255, 255, 255, 0.55);
            font-weight: 600;
        }

.reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

.reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

@media (prefers-reduced-motion: reduce) {
            .reveal { opacity: 1; transform: none; transition: none; }
        }

@keyframes fallbackReveal { to { opacity: 1; transform: translateY(0); } }

.reveal { animation: fallbackReveal 0.01s 2s forwards; }

.reveal.visible { animation: none; }

@media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-desc { margin: 0 auto 2.5rem; }
            .hero-actions { justify-content: center; }
            .hero-visual { display: none; }

            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-visual { order: 2; }

            .about-card-stack {
                height: auto;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .about-card {
                position: static;
                width: 100% !important;
            }


            .values-list {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }

            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 1.5rem 2rem;
                box-shadow: var(--shadow-md);
                border-radius: 0 0 var(--radius) var(--radius);
            }

            .nav-links.open a {
                color: var(--text) !important;
                padding: 0.6rem 0;
            }

            .nav-links.open .nav-cta {
                background: var(--accent) !important;
                color: var(--white) !important;
                text-align: center;
                justify-content: center;
                margin-top: 0.5rem;
            }

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

            .about-card-stack {
                grid-template-columns: 1fr;
            }

            .hero { padding: 7rem 1.5rem 4rem; }
            .section { padding: 4.5rem 1.5rem; }

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

/* ============================================================
   PAGINAS LEGALES  ·  aviso-privacidad + terminos
   ============================================================ */

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

.container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

.header {
            background: linear-gradient(165deg, #0B1D3A 0%, #142E5C 40%, #1A3A6E 70%, #0D4A6B 100%);
            color: white;
            padding: 48px 40px;
            border-radius: var(--radius) var(--radius) 0 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

.header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

.header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4em;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
        }

.subtitle {
            font-size: 1rem;
            opacity: 0.7;
            font-weight: 400;
            position: relative;
        }

.logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
        }

.content {
            background: var(--white);
            padding: 40px;
            border-radius: 0 0 var(--radius) var(--radius);
            box-shadow: var(--shadow-md);
        }

.back-button {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            padding: 10px 22px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

.back-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(11, 29, 58, 0.3);
        }

.date-stamp {
            background: var(--surface);
            padding: 10px 16px;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 28px;
            font-size: 0.9rem;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

.legal-section {
            margin-bottom: 36px;
        }

.legal-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.35em;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--surface);
        }

.legal-section h3 {
            font-size: 1.05em;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0 10px;
        }

.legal-section p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 12px;
        }

.legal-section ul {
            margin: 12px 0 16px 20px;
        }

.legal-section li {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 8px;
            padding-left: 4px;
        }

.legal-section li::marker {
            color: var(--accent);
        }

.legal-section li strong {
            color: var(--text);
        }

.medical-disclaimer {
            background: linear-gradient(135deg, #fffbf0 0%, #fff8e7 100%);
            border: 1px solid #f0dca0;
            border-left: 4px solid #e8a838;
            padding: 28px 28px 28px 32px;
            margin: 28px 0;
            border-radius: var(--radius-sm);
        }

.disclaimer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8a838;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

.medical-disclaimer h3 {
            color: var(--text);
            font-family: 'Playfair Display', serif;
            font-size: 1.15em;
            font-weight: 700;
            margin-bottom: 16px;
            margin-top: 0;
        }

.medical-disclaimer li { color: var(--text-muted); }

.medical-disclaimer li strong { color: var(--text); }

.highlight-box {
            background: var(--surface);
            border-left: 4px solid var(--accent);
            padding: 20px 24px;
            margin: 16px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }

.highlight-box p { color: var(--text-muted); margin-bottom: 8px; }

.highlight-box p:last-child { margin-bottom: 0; }

.highlight-box strong { color: var(--text); }

.warning-box {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 1px solid #fca5a5;
            border-left: 4px solid #ef4444;
            padding: 20px 24px;
            margin: 16px 0;
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        }

.warning-box p {
            font-weight: 600;
            color: #991b1b;
            font-size: 0.9rem;
            text-align: center;
            margin-bottom: 0;
        }

.warning-box ul { margin-top: 12px; }

.warning-box li { color: #7f1d1d; font-size: 0.9rem; }

.contact-box {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 28px;
            border-radius: var(--radius-sm);
            margin: 16px 0;
        }

.contact-box p { margin-bottom: 8px; }

.contact-box a { color: var(--accent); text-decoration: none; font-weight: 600; }

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

.product-scope {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin: 20px 0;
        }

.product-scope-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 20px;
            text-align: center;
        }

.product-scope-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }

.product-scope-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0; }

.footer {
            text-align: center;
            margin-top: 48px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

.footer p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; }

.footer strong { color: var(--text-muted); }

.footer small { color: var(--text-light); font-size: 0.78rem; }

.legal-section a { color: var(--accent); text-decoration: none; }

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

.company-info {
            background: var(--surface);
            padding: 24px;
            border-radius: var(--radius-sm);
            margin: 16px 0;
            border: 1px solid var(--border);
        }

.company-info p { color: var(--text-muted); margin-bottom: 8px; }

.company-info p:last-child { margin-bottom: 0; }

.contact-info {
            background: linear-gradient(135deg, #fff8e7 0%, #ffefcc 100%);
            padding: 24px;
            border-radius: var(--radius-sm);
            margin: 16px 0;
            border: 1px solid #ffe6b3;
        }

.contact-info p { color: var(--text-muted); margin-bottom: 8px; }

.contact-info a { color: var(--accent); text-decoration: none; font-weight: 600; }

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

/* ============================================================
   RESPONSIVE  ·  paginas legales
   ============================================================ */

@media (max-width: 768px) {
            .container { padding: 20px 12px; }
            .header { padding: 32px 20px; }
            .header h1 { font-size: 1.75em; }
            .content { padding: 28px 20px; }
            .legal-section h2 { font-size: 1.2em; }
            .medical-disclaimer { padding: 20px; }
        }
