:root { --bg-primary: #0a0a0a; --bg-secondary: #111111; --bg-card: #161616; --bg-card-hover: #1c1c1c; --gold: #c9a96e; --gold-light: #e4cfa0; --gold-dark: #9a7b4f; --red-glow: #c0392b; --blue-glow: #3498db; --text-primary: #f0ece4; --text-secondary: #a09a90; --text-muted: #8a857d; --border: #2a2520; --accent-glow: rgba(201, 169, 110, 0.08); --font-display: 'Cormorant Garamond', Georgia, serif; --font-body: 'Outfit', sans-serif; } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; } body { background: var(--bg-primary); color: var(--text-primary); font-family: var(--font-body); font-weight: 300; line-height: 1.7; overflow-x: hidden; } body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .section { padding: 7rem 0; position: relative; } .section-label { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; } .section-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); } .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--text-primary); margin-bottom: 1.5rem; } .section-title em { font-style: italic; color: var(--gold-light); } .section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.8; } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 0; transition: all 0.5s ease; background: transparent; } .nav.scrolled { background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(20px); padding: 1rem 0; border-bottom: 1px solid var(--border); } .nav .container { display: flex; justify-content: space-between; align-items: center; } .nav-logo { font-family: var(--font-body); font-weight: 200; font-size: 1.4rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-primary); text-decoration: none; } .nav-logo span { color: var(--gold); font-weight: 400; } .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; } .nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; } .nav-links a:hover { color: var(--gold); } .nav-cta { padding: 0.65rem 1.8rem; background: transparent; border: 1px solid var(--gold); color: var(--gold) !important; font-size: 0.75rem !important; letter-spacing: 0.15em !important; cursor: pointer; transition: all 0.4s ease; } .nav-cta:hover { background: var(--gold); color: var(--bg-primary) !important; } .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; } .mobile-toggle span { width: 24px; height: 1px; background: var(--text-primary); transition: all 0.3s; } .hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 70%; height: 120%; background: radial-gradient(ellipse at center, rgba(192, 57, 43, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 30% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 50%); pointer-events: none; } .hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, var(--bg-primary), transparent); pointer-events: none; } .hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; margin: 0 auto; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; } .hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; } .hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; } .hero h1 .line-gold { color: var(--gold-light); font-style: italic; } .hero-desc { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 2rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s; } .hero-stats { display: flex; gap: 3rem; justify-content: center; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.7s; } .hero-stat { position: relative; padding: 0 1.5rem; } .hero-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: var(--border); } .hero-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; } .hero-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-top: 0.3rem; } .hero-buttons { display: flex; gap: 1.5rem; align-items: center; justify-content: center; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; } .hero-banner { margin-top: 4rem; opacity: 0; animation: fadeUp 1s ease forwards 0.9s; } .hero-banner img { width: 100%; max-width: 1000px; display: block; margin: 0 auto; border-radius: 4px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35); } .btn-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2.5rem; background: var(--gold); color: var(--bg-primary); font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: all 0.4s ease; position: relative; overflow: hidden; } .btn-primary::after { content: '\2192'; transition: transform 0.3s; } .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2); } .btn-primary:hover::after { transform: translateX(4px); } .btn-secondary { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; transition: color 0.3s; border-bottom: 1px solid var(--border); padding-bottom: 0.25rem; } .btn-secondary:hover { color: var(--gold); border-color: var(--gold); } .img-placeholder { background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; position: relative; overflow: hidden; } .img-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201, 169, 110, 0.03) 0%, transparent 60%); } .wave-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; } .wave-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; transition: all 0.5s ease; position: relative; overflow: hidden; } .wave-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); } .wave-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; } .wave-card[data-color="nir"]::before { background: linear-gradient(90deg, #8b0000, #b22222); } .wave-card[data-color="red"]::before { background: linear-gradient(90deg, #c0392b, #e74c3c); } .wave-card[data-color="yellow"]::before { background: linear-gradient(90deg, #d4a017, #f1c40f); } .wave-card[data-color="blue"]::before { background: linear-gradient(90deg, #2471a3, #3498db); } .wave-nm { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; line-height: 1; margin-bottom: 0.25rem; } .wave-card[data-color="nir"] .wave-nm { color: #b22222; } .wave-card[data-color="red"] .wave-nm { color: #e74c3c; } .wave-card[data-color="yellow"] .wave-nm { color: #f1c40f; } .wave-card[data-color="blue"] .wave-nm { color: #3498db; } .wave-unit { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; } .wave-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--text-primary); } .wave-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; } .features-bg { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; } .feat-card { background: var(--bg-primary); border: 1px solid var(--border); padding: 2.5rem 2rem; transition: all 0.4s ease; } .feat-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); } .feat-icon { width: 48px; height: 48px; border: 1px solid var(--gold-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.2rem; color: var(--gold); } .feat-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--text-primary); } .feat-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ═══ SYNERGY VISUAL — JAVÍTOTT ═══ */
.synergy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.synergy-visual { border-radius: 2px; position: relative; overflow: hidden; cursor: pointer; border: 1px solid var(--border); background: #000; }
.synergy-visual img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.synergy-visual:hover img { transform: scale(1.02); }

.synergy-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; } .synergy-item { display: grid; grid-template-columns: 50px 1fr; gap: 1.25rem; align-items: start; } .synergy-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1; } .synergy-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: 0.4rem; color: var(--text-primary); } .synergy-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; } .vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; } .vs-col { padding: 3rem; border: 1px solid var(--border); } .vs-col.vs-ultima { background: rgba(201, 169, 110, 0.04); border-color: var(--gold-dark); } .vs-col.vs-others { background: var(--bg-card); } .vs-col-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); } .vs-ultima .vs-col-title { color: var(--gold-light); border-color: var(--gold-dark); } .vs-others .vs-col-title { color: var(--text-muted); } .vs-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; } .vs-list li { font-size: 0.92rem; color: var(--text-secondary); padding-left: 1.75rem; position: relative; line-height: 1.6; } .vs-ultima .vs-list li::before { content: '\2726'; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 0.7rem; } .vs-others .vs-list li::before { content: '\2014'; position: absolute; left: 0; top: 0; color: var(--text-muted); } .spec-table { width: 100%; border-collapse: collapse; margin-top: 3rem; } .spec-table th, .spec-table td { padding: 1.1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; } .spec-table thead th { font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); padding-bottom: 1rem; border-bottom: 1px solid var(--gold-dark); } .spec-table tbody tr { transition: background 0.3s; } .spec-table tbody tr:hover { background: rgba(201, 169, 110, 0.03); } .spec-table td { color: var(--text-secondary); } .spec-table td:first-child { color: var(--text-primary); font-weight: 400; } .spec-table .gold-val { color: var(--gold-light); } .science-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; } .sci-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem 2rem; transition: all 0.4s ease; } .sci-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); } .sci-card-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 1.25rem; } .sci-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.75rem; color: var(--text-primary); } .sci-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8; } .treat-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; } .treat-item { background: var(--bg-primary); border: 1px solid var(--border); padding: 2rem; transition: all 0.4s ease; } .treat-item:hover { border-color: var(--gold-dark); } .treat-item h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.6rem; color: var(--gold-light); } .treat-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; } .pricing-bg { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .pricing-card { max-width: 600px; margin: 3rem auto 0; background: var(--bg-primary); border: 1px solid var(--gold-dark); padding: 3.5rem; text-align: center; position: relative; } .pricing-card::before { content: ''; position: absolute; top: -1px; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); } .pricing-treatment { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; } .pricing-amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--gold-light); margin-bottom: 0.5rem; } .pricing-unit { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; } .pricing-features { list-style: none; text-align: left; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; } .pricing-features li { font-size: 0.88rem; color: var(--text-secondary); padding-left: 1.5rem; position: relative; } .pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 600; } .pricing-card .btn-primary { width: 100%; justify-content: center; } .clinic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; } .clinic-visual { aspect-ratio: 5/4; border-radius: 2px; overflow: hidden; cursor: pointer; border: 1px solid var(--border); background: #000; } .clinic-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; } .clinic-visual:hover img { transform: scale(1.02); } .clinic-features { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; } .clinic-feature { display: flex; gap: 1rem; align-items: start; font-size: 0.95rem; color: var(--text-secondary); } .clinic-feature::before { content: '\2726'; color: var(--gold); font-size: 0.7rem; margin-top: 0.35rem; flex-shrink: 0; } .cta-section { padding: 8rem 0; text-align: center; position: relative; overflow: hidden; } .cta-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%); pointer-events: none; } .cta-section .section-title { max-width: 700px; margin: 0 auto 1.5rem; } .cta-section .section-subtitle { margin: 0 auto 3rem; text-align: center; } .footer { padding: 3rem 0; border-top: 1px solid var(--border); } .footer .container { display: flex; justify-content: space-between; align-items: center; } .footer-left { font-size: 0.8rem; color: var(--text-muted); } .footer-logo { font-family: var(--font-body); font-weight: 200; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-secondary); } .footer-right { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; } .pdf-modal, .image-modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); align-items: center; justify-content: center; padding: 2rem; } .pdf-modal-inner, .image-modal-inner { position: relative; width: 100%; max-width: 900px; max-height: 90vh; background: var(--bg-card); border: 1px solid var(--gold-dark); display: flex; flex-direction: column; } .pdf-modal-header, .image-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); } .pdf-modal-title, .image-modal-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-light); } .pdf-modal-close, .image-modal-close { width: 36px; height: 36px; background: none; border: 1px solid var(--border); color: var(--text-secondary); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; } .pdf-modal-close:hover, .image-modal-close:hover { border-color: var(--gold); color: var(--gold); } .pdf-modal-body { flex: 1; overflow-y: auto; } .image-modal-body { padding: 0; background: #000; } .image-modal-body img { width: 100%; max-height: calc(90vh - 80px); object-fit: contain; display: block; } .modal-slide { display: none; width: 100%; } .modal-slide.active { display: block; animation: fadeUp 0.4s ease; } .video-section { padding: var(--padding-desktop) 0; background-color: var(--bg-main); } .video-wrapper { position: relative; width: 50%; max-width: 600px; margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); border: 1px solid var(--border); line-height: 0; background-color: #000; transition: transform 0.3s ease, box-shadow 0.3s ease; } .premium-video { width: 100%; height: auto; display: block; } .video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.03) 100%); pointer-events: none; } .video-wrapper:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(200, 169, 106, 0.15); } @media (max-width: 768px) { .video-wrapper { width: 85%; border-radius: 14px; } } @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } } .fade-in { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); } .fade-in.visible { opacity: 1; transform: translateY(0); } @media (max-width: 900px) { .nav-links { display: none; } .mobile-toggle { display: flex; } .nav-links.show { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 10, 10, 0.98); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 1rem 2rem; } .nav-links.show li { padding: 0.8rem 0; } .hero-grid, .synergy-grid, .clinic-grid { grid-template-columns: 1fr; gap: 3rem; } .wave-grid { grid-template-columns: repeat(2, 1fr); } .feat-grid, .science-cards { grid-template-columns: 1fr; } .treat-list { grid-template-columns: 1fr; } .vs-grid { grid-template-columns: 1fr; } .section { padding: 4rem 0; } .hero { min-height: auto; padding-top: 7rem; padding-bottom: 3rem; } .hero-stats { gap: 1.5rem; } .synergy-visual, .clinic-visual { aspect-ratio: auto; min-height: unset; max-height: none; } .pricing-card { padding: 2.5rem 1.5rem; } .footer .container { flex-direction: column; gap: 1rem; text-align: center; } } @media (max-width: 500px) { .wave-grid { grid-template-columns: 1fr; } .hero-stats { flex-direction: column; gap: 1rem; } }
