/*
Theme Name: Toni Fitness BCN
Theme URI: https://entrenadorfitnessbcn.com
Author: Dev Senior SPA
Description: Tema optimizado de alto rendimiento para Toni Fitness.
Version: 1.0.0
Text Domain: tonifitness
*/

:root {
  --red: #e8001e;
  --red-glow: rgba(232,0,30,0.6);
  --red-dim: rgba(232,0,30,0.15);
  --red-mid: rgba(232,0,30,0.35);
  --black: #050507;
  --dark: #0d0d12;
  --dark2: #131318;
  --grey-dark: #1a1a22;
  --grey: #2a2a35;
  --grey-mid: #4a4a5a;
  --grey-light: #7a7a90;
  --white: #f0f0f5;
  --white-dim: rgba(240,240,245,0.07);
  --white-glass: rgba(240,240,245,0.04);
  --glass-border: rgba(240,240,245,0.08);
  --glass-border-red: rgba(232,0,30,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: ''; position: fixed; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(232,0,30,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(232,0,30,0.04) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridMove 20s linear infinite; pointer-events: none;
}
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 60px 60px; } }

.orb { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; animation: orbFloat 8s ease-in-out infinite alternate; }
.orb1 { width: 500px; height: 500px; top: -150px; left: -150px; background: radial-gradient(circle, rgba(232,0,30,0.12) 0%, transparent 70%); animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: radial-gradient(circle, rgba(232,0,30,0.08) 0%, transparent 70%); animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; top: 50%; left: 50%; background: radial-gradient(circle, rgba(80,0,15,0.1) 0%, transparent 70%); animation-delay: -2s; }
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(30px, 40px) scale(1.1); } }

body::after {
  content: ''; position: fixed; inset: 0; z-index: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); pointer-events: none;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px; background: rgba(5,5,7,0.85); backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5); border-bottom: 1px solid var(--glass-border); box-shadow: 0 0 40px rgba(232,0,30,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.nav-logo-circle { width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%; border: 2.5px solid var(--red); box-shadow: 0 0 0 1px rgba(232,0,30,0.3), 0 0 18px rgba(232,0,30,0.55), inset 0 0 12px rgba(0,0,0,0.6); overflow: hidden; background: #0a0a0a; animation: logoGlow 3s ease-in-out infinite alternate; }
.nav-logo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@keyframes logoGlow { from { box-shadow: 0 0 0 1px rgba(232,0,30,0.3), 0 0 14px rgba(232,0,30,0.5); } to { box-shadow: 0 0 0 1px rgba(232,0,30,0.5), 0 0 30px rgba(232,0,30,0.75), 0 0 50px rgba(232,0,30,0.2); } }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; gap: 3px; }
.logo-text .logo-name { font-family: 'Orbitron', monospace; font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; }
.logo-text .logo-sub { font-family: 'Rajdhani', sans-serif; font-size: 10px; font-weight: 500; color: var(--red); letter-spacing: 0.28em; text-transform: uppercase; }

.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; }
.nav-links li a {
  background: none; border: none; cursor: pointer; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-light); padding: 8px 16px; border-radius: 3px; transition: all 0.3s; position: relative; text-decoration: none;
}
.nav-links li a::before { content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 1px; background: var(--red); transition: all 0.3s; opacity: 0; }
.nav-links li a:hover, .nav-links li a.active { color: var(--white); }
.nav-links li a:hover::before, .nav-links li a.active::before { left: 10%; right: 10%; opacity: 1; }
.nav-cta { background: linear-gradient(135deg, var(--red), #8b0014) !important; color: white !important; border-radius: 3px !important; box-shadow: 0 0 20px var(--red-dim); transition: all 0.3s !important; }
.nav-cta:hover { box-shadow: 0 0 30px var(--red-glow) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

.glass { background: linear-gradient(135deg, rgba(240,240,245,0.06) 0%, rgba(240,240,245,0.02) 100%); backdrop-filter: blur(20px) saturate(1.3); -webkit-backdrop-filter: blur(20px) saturate(1.3); border: 1px solid var(--glass-border); border-radius: 12px; }
.glass-red { background: linear-gradient(135deg, rgba(232,0,30,0.1) 0%, rgba(232,0,30,0.03) 100%); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border-red); border-radius: 12px; }

.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--red), #8b0014); color: white; font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 32px; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; box-shadow: 0 0 30px var(--red-dim), 0 4px 20px rgba(0,0,0,0.5); transition: all 0.3s; position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s; }
.btn-primary:hover { box-shadow: 0 0 50px var(--red-glow), 0 8px 30px rgba(0,0,0,0.6); transform: translateY(-2px); }
.btn-primary:hover::before { left: 100%; }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 13px 30px; border: 1px solid var(--glass-border); border-radius: 4px; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-secondary:hover { border-color: var(--red); color: var(--red); box-shadow: 0 0 20px var(--red-dim); background: var(--red-dim); }

.section-tag { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.3em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-tag::before, .section-tag::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--red)); }
.section-tag::before { max-width: 60px; } .section-tag::after { display: none; }
.section-title { font-family: 'Orbitron', monospace; font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.section-title span { color: var(--red); }
.section-sub { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 400; color: var(--grey-light); line-height: 1.7; max-width: 600px; }
.cyber-divider { display: flex; align-items: center; gap: 16px; margin: 60px 0; }
.cyber-divider::before, .cyber-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--glass-border), var(--red), var(--glass-border), transparent); }
.cyber-divider-icon { width: 10px; height: 10px; background: var(--red); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); box-shadow: 0 0 15px var(--red-glow); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* INICIO */
#page-inicio { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,0,30,0.07) 0%, transparent 60%); }
.hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 40px 60px; max-width: 1200px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-dim); border: 1px solid var(--glass-border-red); border-radius: 100px; padding: 6px 16px; font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px; animation: fadeInDown 0.6s ease-out; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red-glow); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; transform: scale(1); } 50%{ opacity: 0.5; transform: scale(0.8); } }
.hero-title { font-family: 'Orbitron', monospace; font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 24px; animation: fadeInDown 0.6s ease-out 0.1s both; }
.hero-title .line-red { color: var(--red); display: block; }
.hero-title .line-outline { -webkit-text-stroke: 1px rgba(240,240,245,0.3); color: transparent; display: block; }
.hero-desc { font-size: 18px; font-weight: 400; color: var(--grey-light); line-height: 1.7; margin-bottom: 36px; max-width: 500px; animation: fadeInDown 0.6s ease-out 0.2s both; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; animation: fadeInDown 0.6s ease-out 0.3s both; }
.hero-pill { display: flex; align-items: center; gap: 8px; background: var(--white-dim); border: 1px solid var(--glass-border); border-radius: 4px; padding: 8px 16px; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; color: var(--white); }
.hero-pill .pi { color: var(--red); font-size: 16px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInDown 0.6s ease-out 0.4s both; }
.hero-visual { position: relative; animation: fadeInRight 0.8s ease-out 0.2s both; }
.hero-img-container { position: relative; border-radius: 12px; overflow: hidden; }
.hero-img-container::before { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(232,0,30,0.2) 0%, transparent 50%, rgba(0,0,0,0.3) 100%); pointer-events: none; }
.hero-img-container::after { content: ''; position: absolute; inset: -1px; z-index: 1; border-radius: 12px; background: linear-gradient(135deg, var(--red), transparent, var(--glass-border)); padding: 1px; pointer-events: none; }
.hero-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; display: block; border-radius: 12px; filter: grayscale(10%) contrast(1.1); }
.hero-stats { display: flex; gap: 12px; margin-top: 14px; }
.stat-card { padding: 16px 20px; text-align: center; min-width: 100px; }
.stat-num { font-family: 'Orbitron', monospace; font-size: 28px; font-weight: 900; color: var(--red); display: block; line-height: 1; text-shadow: 0 0 20px var(--red-glow); }
.stat-label { font-size: 11px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 4px; }
.hero-corner { position: absolute; top: -10px; right: -10px; background: var(--red); color: white; font-family: 'Orbitron', monospace; font-size: 10px; font-weight: 700; padding: 8px 14px; border-radius: 3px; letter-spacing: 0.1em; box-shadow: 0 0 20px var(--red-glow); z-index: 5; animation: cornerPop 2s ease-in-out infinite alternate; }
@keyframes cornerPop { from { transform: rotate(-2deg) scale(1); } to { transform: rotate(2deg) scale(1.05); } }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--grey-mid); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Share Tech Mono', monospace; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(180deg, var(--red), transparent); animation: scrollLine 1.5s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{ opacity: 0.3; } 50%{ opacity: 1; } }
.section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.method-card { padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden; }
.method-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); transform: scaleX(0); transition: transform 0.4s; }
.method-card:hover { transform: translateY(-6px); border-color: var(--glass-border-red); }
.method-card:hover::before { transform: scaleX(1); }
.method-icon { width: 56px; height: 56px; background: var(--red-dim); border: 1px solid var(--glass-border-red); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; transition: all 0.3s; }
.method-card:hover .method-icon { background: var(--red-mid); box-shadow: 0 0 25px var(--red-dim); }
.method-card h3 { font-family: 'Orbitron', monospace; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: 0.05em; }
.method-card p { font-size: 15px; color: var(--grey-light); line-height: 1.7; }
.method-num { position: absolute; top: 20px; right: 24px; font-family: 'Orbitron', monospace; font-size: 60px; font-weight: 900; color: rgba(232,0,30,0.05); line-height: 1; }
.reviews-section { background: var(--dark); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 50px; }
.review-card { padding: 28px 30px; position: relative; overflow: hidden; }
.review-card::before { content: '"'; position: absolute; top: -10px; right: 20px; font-family: 'Orbitron', monospace; font-size: 80px; color: rgba(232,0,30,0.1); line-height: 1; }
.review-text { font-size: 16px; color: var(--white); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #4a0009); display: flex; align-items: center; justify-content: center; font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; border: 1px solid var(--glass-border-red); }
.review-name { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); }
.review-stars { color: var(--red); font-size: 12px; letter-spacing: 2px; }
.zona-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.zona-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.zona-card { padding: 24px; text-align: center; transition: all 0.3s; }
.zona-card:hover { transform: translateY(-4px); border-color: var(--red); }
.zona-card h4 { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 8px; letter-spacing: 0.05em; }
.zona-card p { font-size: 13px; color: var(--grey-light); }
.cta-banner { padding: 80px 40px; background: linear-gradient(135deg, rgba(232,0,30,0.12) 0%, rgba(232,0,30,0.04) 100%); border-top: 1px solid var(--glass-border-red); border-bottom: 1px solid var(--glass-border-red); text-align: center; }

/* CONOCENOS */
.conocenos-hero { padding: 80px 40px 60px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trainer-photo-wrap { position: relative; }
.trainer-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; display: block; filter: grayscale(15%) contrast(1.1); }
.photo-frame { position: absolute; inset: -1px; border-radius: 12px; background: linear-gradient(135deg, var(--red), transparent 40%, transparent 60%, var(--glass-border)); padding: 1px; pointer-events: none; }
.photo-badge { position: absolute; bottom: 30px; left: -20px; padding: 14px 20px; min-width: 140px; text-align: center; }
.photo-badge .num { font-family: 'Orbitron', monospace; font-size: 32px; font-weight: 900; color: var(--red); display: block; text-shadow: 0 0 20px var(--red-glow); }
.photo-badge .lbl { font-size: 12px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.1em; text-transform: uppercase; }
.commitment-grid { display: grid; gap: 20px; margin-top: 50px; padding: 0 40px 80px; max-width: 1200px; margin: 0 auto 0; }
.commit-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; }
.commit-num { font-family: 'Orbitron', monospace; font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.1em; white-space: nowrap; padding-top: 3px; }
.commit-content h4 { font-family: 'Orbitron', monospace; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: 0.03em; }
.commit-content p { font-size: 15px; color: var(--grey-light); line-height: 1.7; }

/* PLANES */
.planes-hero { padding: 80px 40px 60px; text-align: center; max-width: 700px; margin: 0 auto; }
.planes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 40px 80px; max-width: 1300px; margin: 0 auto; }
.plan-card { padding: 36px 24px; position: relative; overflow: hidden; transition: all 0.4s; display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--red); background: linear-gradient(160deg, rgba(232,0,30,0.12) 0%, rgba(232,0,30,0.03) 100%); }
.plan-card:hover { transform: translateY(-8px); }
.plan-card.featured::before { content: 'POPULAR'; position: absolute; top: 14px; right: -25px; background: var(--red); color: white; font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 700; padding: 5px 30px; letter-spacing: 0.15em; transform: rotate(45deg); }
.plan-card.featured::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); box-shadow: 0 0 15px var(--red-glow); }
.plan-name { font-family: 'Orbitron', monospace; font-size: 13px; font-weight: 700; color: var(--grey-light); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.plan-card.featured .plan-name { color: var(--red); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.plan-price .amount { font-family: 'Orbitron', monospace; font-size: 48px; font-weight: 900; color: var(--white); line-height: 1; }
.plan-price .currency { font-family: 'Orbitron', monospace; font-size: 20px; font-weight: 600; color: var(--red); align-self: flex-start; margin-top: 8px; }
.plan-price .period { font-size: 14px; color: var(--grey-light); font-weight: 500; }
.plan-tag { font-size: 13px; color: var(--grey-light); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--glass-border); margin-bottom: 24px; }
.plan-features { list-style: none; flex: 1; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--white); padding: 8px 0; border-bottom: 1px solid rgba(240,240,245,0.04); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '▸'; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.plan-ideal { font-size: 12px; color: var(--grey-mid); font-style: italic; margin-bottom: 24px; padding: 12px; background: var(--white-glass); border-radius: 6px; border-left: 2px solid var(--red); line-height: 1.5; }
.plan-btn { display: block; text-align: center; background: transparent; border: 1px solid var(--glass-border); color: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px; border-radius: 4px; text-decoration: none; cursor: pointer; transition: all 0.3s; }
.plan-btn:hover, .plan-card.featured .plan-btn { background: var(--red); border-color: var(--red); box-shadow: 0 0 25px var(--red-dim); }
.how-section { padding: 60px 40px 100px; max-width: 1200px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.how-card { padding: 28px; text-align: center; }
.how-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.how-card h4 { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 10px; letter-spacing: 0.05em; }
.how-card p { font-size: 14px; color: var(--grey-light); line-height: 1.6; }

/* CONTACTO */
.contacto-section { padding: 80px 40px 100px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: 'Orbitron', monospace; font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.contact-info p { font-size: 16px; color: var(--grey-light); line-height: 1.7; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 20px; text-decoration: none; transition: all 0.3s; }
.contact-method:hover { border-color: var(--red); transform: translateX(6px); }
.contact-method .icon { width: 44px; height: 44px; border-radius: 8px; background: var(--red-dim); border: 1px solid var(--glass-border-red); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: all 0.3s; }
.contact-method:hover .icon { background: var(--red-mid); box-shadow: 0 0 15px var(--red-dim); }
.contact-method .details { flex: 1; }
.contact-method .type { font-size: 11px; color: var(--grey-light); letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Share Tech Mono', monospace; }
.contact-method .value { font-size: 16px; font-weight: 600; color: var(--white); }
.map-block { margin-top: 30px; padding: 20px; position: relative; overflow: hidden; }
.map-placeholder { height: 200px; border-radius: 8px; background: linear-gradient(135deg, var(--grey-dark), var(--dark)); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; font-size: 32px; }
.map-placeholder p { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--grey-light); margin: 0; letter-spacing: 0.1em; }
.map-address { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--grey-light); margin-top: 14px; }
.contact-form-wrap h3 { font-family: 'Orbitron', monospace; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 24px; letter-spacing: 0.05em; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Share Tech Mono', monospace; }
.form-input, .form-textarea { width: 100%; padding: 13px 16px; background: var(--white-glass); border: 1px solid var(--glass-border); border-radius: 4px; color: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 400; outline: none; transition: all 0.3s; }
.form-input:focus, .form-textarea:focus { border-color: var(--red); background: var(--red-dim); box-shadow: 0 0 0 3px rgba(232,0,30,0.08); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* CONSEJOS */
.consejos-hero { padding: 80px 40px 50px; text-align: center; max-width: 700px; margin: 0 auto; }
.consejos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 40px 80px; max-width: 1200px; margin: 0 auto; }
.consejo-card { padding: 0; overflow: hidden; transition: all 0.4s; }
.consejo-card:hover { transform: translateY(-6px); border-color: var(--glass-border-red); }
.consejo-img { height: 180px; background: linear-gradient(135deg, var(--grey-dark) 0%, var(--dark2) 100%); display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
.consejo-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(5,5,7,0.5)); }
.consejo-cat { position: absolute; bottom: 12px; left: 16px; z-index: 2; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; }
.consejo-body { padding: 22px 22px 26px; }
.consejo-body h3 { font-family: 'Orbitron', monospace; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; letter-spacing: 0.03em; }
.consejo-body p { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin-bottom: 16px; }
.consejo-read { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.consejo-read:hover { color: white; }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid var(--glass-border); padding: 60px 40px 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 50px; }
.footer-brand p { font-size: 14px; color: var(--grey-light); line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--glass-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.social-btn:hover { border-color: var(--red); background: var(--red-dim); }
.footer-col h5 { font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--grey-light); text-decoration: none; cursor: pointer; background: none; border: none; font-family: 'Rajdhani', sans-serif; font-weight: 400; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--glass-border); padding-top: 24px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p, .footer-bottom span { font-size: 12px; color: var(--grey-mid); letter-spacing: 0.05em; }
.footer-bottom .sep { margin: 0 10px; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.glitch { position: relative; animation: glitch 4s infinite; }
@keyframes glitch { 0%,90%,100%{ text-shadow: none; } 92%{ text-shadow: -2px 0 var(--red), 2px 0 rgba(0,255,255,0.3); } 94%{ text-shadow: 2px 0 var(--red), -2px 0 rgba(0,255,255,0.3); } 96%{ text-shadow: none; } }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(5,5,7,0.97); backdrop-filter: blur(20px); padding: 20px; border-bottom: 1px solid var(--glass-border); z-index: 99; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 50px 20px; gap: 50px; }
  .hero-visual { order: -1; }
  .hero-stats { position: relative; bottom: auto; left: auto; margin-top: 16px; }
  .conocenos-hero { grid-template-columns: 1fr; padding: 50px 20px; gap: 40px; }
  .planes-grid { grid-template-columns: 1fr 1fr; padding: 0 20px 60px; }
  .method-grid, .how-grid, .zona-cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .consejos-grid { grid-template-columns: 1fr; }
  .contacto-section { grid-template-columns: 1fr; padding: 50px 20px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 20px; }
  .container { padding: 0 20px; }
}
@media (max-width: 580px) {
  .planes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
.noise { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }