:root {
  --bg-deep: #0a0f1a;
  --bg-card: #111827;
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --text-light: #e2e8f0;
  --text-muted: #93c5fd;
  --border-glow: rgba(37, 99, 235, 0.3);
  --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}
/* El resto del CSS es IDÉNTICO al de Catalina, solo cambia la variable --primary y --primary-light */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background-color: var(--bg-deep); color: var(--text-light); line-height: 1.5; overflow-x: hidden; }
#particleCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
body::before { content: ""; position: fixed; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.2), #0a0514); pointer-events: none; z-index: 0; }
h1, h2, h3, .logo-text, .badge, .card-tag, .trust-footer { font-family: var(--font-title); }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 600; background: linear-gradient(135deg, #fff, #a78bfa); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 1px; }
.age-alert { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2000; width: 90%; max-width: 400px; background: rgba(20, 11, 36, 0.96); backdrop-filter: blur(12px); border-radius: 24px; border: 1px solid var(--primary-light); padding: 16px 20px; animation: fadeIn 0.35s ease; }
.age-alert-content { display: flex; align-items: center; gap: 12px; justify-content: space-between; }
.age-alert-content i { color: var(--primary-light); font-size: 1.5rem; }
.age-alert-content span { font-size: 0.8rem; line-height: 1.4; }
.close-alert { background: rgba(167, 139, 250, 0.2); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--primary-light); transition: 0.2s; }
.close-alert:hover { background: var(--primary-light); color: #140b24; transform: rotate(90deg); }
@keyframes fadeIn { from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.navbar { position: sticky; top: 0; background: rgba(10, 5, 20, 0.95); backdrop-filter: blur(16px); padding: 0.8rem 2rem; display: flex; justify-content: space-between; align-items: center; z-index: 1100; border-bottom: 1px solid var(--border-glow); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.flag-icon { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--primary-light); box-shadow: 0 0 8px rgba(167, 139, 250, 0.4); }
.logo-text { font-size: 1.9rem; font-weight: 700; background: linear-gradient(135deg, #c4b5fd, #7c3aed); -webkit-background-clip: text; background-clip: text; color: transparent; }
.menu-toggle { display: none; background: none; border: none; font-size: 2rem; color: var(--primary-light); cursor: pointer; }
.nav-links { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--text-light); transition: 0.2s; }
.nav-links a:hover { color: var(--primary-light); text-shadow: 0 0 6px rgba(167, 139, 250, 0.4); }
.btn-outline { border: 1px solid var(--primary-light); padding: 8px 22px; border-radius: 40px; background: rgba(167, 139, 250, 0.05); }
.btn-outline:hover { background: rgba(167, 139, 250, 0.15); transform: translateY(-1px); }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; z-index: 1; padding: 4rem 1.5rem; }
.hero-content { max-width: 800px; }
.badge { background: rgba(167, 139, 250, 0.12); padding: 6px 20px; border-radius: 40px; font-size: 0.85rem; display: inline-block; border: 1px solid var(--primary-light); color: var(--primary-light); }
h1 { font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 700; background: linear-gradient(135deg, #fff, #c4b5fd); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 20px 0 10px; }
.hero-tagline { font-size: clamp(0.9rem, 3vw, 1.2rem); color: var(--primary-light); margin-bottom: 30px; letter-spacing: 1px; }
.hero-description p { margin-bottom: 18px; color: var(--text-muted); line-height: 1.7; font-size: clamp(0.85rem, 2.5vw, 1rem); }
.hero-features { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin: 35px 0; }
.hero-features span { background: rgba(20, 11, 36, 0.7); padding: 8px 18px; border-radius: 40px; font-size: 0.85rem; border: 1px solid rgba(167, 139, 250, 0.3); }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, #6d28d9, #3b0764); padding: 14px 38px; border-radius: 50px; text-decoration: none; color: white; font-weight: 700; transition: 0.3s; box-shadow: 0 5px 20px rgba(124, 58, 237, 0.4); font-size: clamp(0.85rem, 2.5vw, 1rem); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(167, 139, 250, 0.4); }
.btn-secondary { text-decoration: none; color: var(--primary-light); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid transparent; transition: 0.2s; }
.btn-secondary:hover { gap: 12px; border-bottom-color: var(--primary-light); }
.about { padding: 80px 1.5rem; position: relative; z-index: 1; }
.about-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.about-image { flex: 0.9; min-width: 250px; max-width: 350px; }
.image-frame { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: auto; display: block; }
.about-text { flex: 1.1; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; color: var(--text-muted); line-height: 1.7; font-size: clamp(0.85rem, 2.5vw, 1rem); }
.about-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.about-tags span { background: rgba(167, 139, 250, 0.1); padding: 6px 16px; border-radius: 40px; font-size: 0.8rem; border: 1px solid rgba(167, 139, 250, 0.3); }
.btn-wsp { background: #25D366; color: #000; display: inline-flex; gap: 12px; padding: 12px 28px; border-radius: 60px; text-decoration: none; font-weight: 600; transition: 0.2s; }
.btn-wsp:hover { background: #20b859; transform: scale(1.02); }
.services { padding: 70px 1.5rem; background: rgba(20, 11, 36, 0.4); position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 50px; }
.services-header p { color: var(--text-muted); margin-top: 10px; font-size: clamp(0.85rem, 2.5vw, 1rem); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1300px; margin: 0 auto; }
.service-card { background: rgba(20, 11, 36, 0.7); backdrop-filter: blur(8px); border-radius: 32px; padding: 35px 28px; border: 1px solid rgba(167, 139, 250, 0.25); transition: 0.3s; text-align: center; }
.service-card:hover { transform: translateY(-8px); border-color: var(--primary-light); box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.5); }
.card-icon { font-size: 3rem; color: var(--primary-light); margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-light); }
.service-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; font-size: 0.9rem; }
.card-tag { display: inline-block; font-size: 0.75rem; padding: 5px 12px; background: rgba(167, 139, 250, 0.15); border-radius: 30px; letter-spacing: 1px; }
.trust { padding: 80px 1.5rem; position: relative; z-index: 1; }
.trust-header { text-align: center; margin-bottom: 50px; }
.trust-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.trust-item { background: linear-gradient(135deg, rgba(20, 11, 36, 0.8), rgba(10, 5, 20, 0.9)); border-radius: 32px; padding: 40px 35px; text-align: center; border: 1px solid rgba(167, 139, 250, 0.3); transition: 0.3s; flex: 1; min-width: 260px; }
.trust-item:hover { transform: translateY(-5px); border-color: var(--primary-light); box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4); }
.trust-ring { width: 80px; height: 80px; background: rgba(167, 139, 250, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; border: 1px solid rgba(167, 139, 250, 0.4); }
.trust-ring i { font-size: 2.5rem; color: var(--primary-light); }
.trust-item h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-light); }
.trust-item p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.9rem; }
.trust-footer { display: inline-block; font-size: 0.8rem; padding: 5px 15px; background: rgba(167, 139, 250, 0.15); border-radius: 30px; letter-spacing: 1px; }
.testimonials { padding: 70px 1.5rem; background: rgba(20, 11, 36, 0.3); position: relative; z-index: 1; overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 50px; }
.testimonials-header p { color: var(--text-muted); margin-top: 10px; }
.carousel-wrapper { position: relative; max-width: 1300px; margin: 0 auto; }
.carousel-container { overflow: hidden; margin: 0 50px; }
.carousel-track { display: flex; transition: transform 0.4s ease; gap: 24px; }
.testimonial-card { background: rgba(20, 11, 36, 0.7); backdrop-filter: blur(8px); border-radius: 28px; padding: 28px; flex-shrink: 0; border: 1px solid rgba(167, 139, 250, 0.2); transition: 0.3s; }
.testimonial-card:hover { border-color: rgba(167, 139, 250, 0.5); }
.testimonial-card img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 20px; border: 2px solid var(--primary-light); }
.testimonial-card p { font-style: italic; line-height: 1.6; margin-bottom: 20px; color: var(--text-muted); font-size: 0.9rem; }
.testimonial-author { font-weight: 600; color: var(--primary-light); margin-bottom: 5px; }
.testimonial-city { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(20, 11, 36, 0.9); backdrop-filter: blur(4px); border: 1px solid var(--primary-light); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; color: var(--primary-light); font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: 0.2s; z-index: 10; }
.carousel-btn:hover { background: var(--primary-light); color: #140b24; }
.prev { left: 0; }
.next { right: 0; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(167, 139, 250, 0.3); cursor: pointer; transition: 0.2s; }
.dot.active { background: var(--primary-light); width: 24px; border-radius: 10px; }
.unique-message { text-align: center; max-width: 800px; margin: 20px auto 40px; padding: 16px 24px; background: rgba(167, 139, 250, 0.08); border-radius: 60px; font-size: 0.9rem; color: var(--text-muted); position: relative; z-index: 1; }
.footer { padding: 80px 1.5rem 50px; background: #050210; border-top: 1px solid rgba(167, 139, 250, 0.2); text-align: center; position: relative; z-index: 1; }
.footer-content h2 { font-size: clamp(1.6rem, 5vw, 2rem); margin-bottom: 20px; }
.footer-content p { color: var(--text-muted); margin-bottom: 30px; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 12px; background: rgba(167, 139, 250, 0.1); padding: 12px 24px; border-radius: 60px; margin-bottom: 30px; font-size: 1.2rem; font-weight: 600; }
.footer-whatsapp i { color: #25D366; font-size: 1.5rem; }
.btn-footer { background: #25D366; color: #000; display: inline-block; padding: 14px 40px; border-radius: 60px; text-decoration: none; font-weight: 700; transition: 0.3s; margin-bottom: 30px; }
.btn-footer:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); }
.footer-small { font-size: 0.75rem; color: var(--text-muted); }
.float-whatsapp { position: fixed; bottom: 30px; right: 25px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: #000; text-decoration: none; z-index: 1000; animation: pulse 2s infinite; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
@media (max-width: 768px) { .menu-toggle { display: block; } .navbar-right { position: fixed; top: 70px; left: -100%; width: 75%; height: calc(100vh - 70px); background: rgba(10, 5, 20, 0.98); backdrop-filter: blur(20px); transition: 0.3s; padding: 28px; z-index: 999; } .navbar-right.active { left: 0; } .nav-links { flex-direction: column; align-items: flex-start; gap: 1.5rem; } .carousel-container { margin: 0 35px; } .carousel-btn { width: 36px; height: 36px; font-size: 1rem; } .trust-cards { flex-direction: column; align-items: center; } .trust-item { width: 100%; max-width: 350px; } .about-container { flex-direction: column; text-align: center; } .about-text { text-align: center; } .about-tags { justify-content: center; } .float-whatsapp { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 20px; } }
@media (max-width: 480px) { .hero-buttons { flex-direction: column; align-items: center; } .hero-features { gap: 10px; } .hero-features span { font-size: 0.7rem; padding: 5px 12px; } .services-grid { grid-template-columns: 1fr; } .carousel-container { margin: 0 25px; } .unique-message { margin: 20px 1rem 40px; font-size: 0.8rem; } }
@media (min-width: 769px) and (max-width: 1023px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }