@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --orange: #ff5a00;
  --dark: #121212;
  --gray: #666;
  --light-gray: #f9f9f9;
  --green: #25D366;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', Arial, sans-serif; color: var(--dark); background: var(--white); line-height: 1.5; overflow-x: hidden; }

/* NAV */
.nav { height: 80px; padding: 0 5%; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); font-weight: 900; font-size: 24px; line-height: 1; }
.brand img { height: 45px; width: auto; }
.brand span { display: flex; flex-direction: column; }
.brand span span { color: var(--orange); display: inline; }
.brand small { font-size: 8px; font-weight: 700; color: var(--gray); letter-spacing: 0.5px; }

nav { display: flex; gap: 20px; }
nav a { color: var(--dark); text-decoration: none; font-weight: 700; font-size: 13px; padding-bottom: 5px; border-bottom: 3px solid transparent; transition: 0.3s; }
nav a:hover, nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.menu { display: none; background: none; border: none; font-size: 30px; cursor: pointer; color: var(--orange); }

.btn-green { background: var(--green); color: var(--white); padding: 10px 20px; border-radius: 30px; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
.btn-green:hover { background: #1eb955; }

/* HERO */
.hero { position: relative; min-height: 600px; display: flex; flex-direction: column; background: url('../img/hero-bg.jpg') center/cover no-repeat; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 80px 5%; display: flex; justify-content: space-between; align-items: center; flex: 1; }
.hero-text { max-width: 600px; }
.hero-text h1 { font-size: clamp(40px, 5vw, 65px); font-weight: 900; line-height: 1.1; margin-bottom: 15px; color: var(--dark); }
.hero-text h1 span { color: var(--orange); }
.hero-text p { font-size: 18px; font-weight: 600; color: #444; margin-bottom: 30px; }

.hero-features { display: flex; gap: 20px; margin-bottom: 40px; }
.hf-item { display: flex; align-items: center; gap: 10px; }
.hf-item i { font-size: 35px; color: var(--orange); }
.hf-item b { display: block; font-size: 14px; line-height: 1.2; }
.hf-item small { font-size: 12px; color: var(--gray); }

.hero-actions { display: flex; gap: 15px; }
.btn { padding: 12px 25px; border-radius: 30px; font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer; transition: 0.3s; border: 2px solid transparent; }
.btn.primary { background: var(--orange); color: white; }
.btn.primary:hover { background: #e65200; transform: translateY(-3px); }
.btn.ghost { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn.ghost:hover { background: var(--orange); color: white; transform: translateY(-3px); }

.hero-badge { background: rgba(255,255,255,0.95); padding: 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); width: 280px; text-align: center; border-top: 5px solid var(--orange); margin-top: 40px; }
.hero-badge h2 { font-size: 50px; color: var(--orange); line-height: 1; margin-bottom: 5px; }
.hero-badge h3 { font-size: 18px; color: var(--orange); margin-bottom: 20px; }
.hero-badge ul { list-style: none; text-align: left; }
.hero-badge ul li { margin-bottom: 10px; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.hero-badge ul li i { color: var(--orange); font-size: 18px; }

.hero-bottom-bar { position: relative; z-index: 2; background: var(--orange); color: white; padding: 15px 5%; display: flex; align-items: center; }
.bar-content { display: flex; width: 100%; align-items: center; gap: 20px; }
.bar-title { font-weight: 900; display: flex; align-items: center; gap: 5px; white-space: nowrap; font-size: 14px; }
.bar-locations { display: flex; gap: 15px; overflow-x: auto; font-size: 12px; font-weight: 600; white-space: nowrap; flex: 1; scrollbar-width: none; }
.bar-locations::-webkit-scrollbar { display: none; }
.bar-locations span { display: flex; align-items: center; gap: 5px; }

/* SECTIONS GENERAL */
.section { padding: 80px 5%; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 45px; font-weight: 900; margin-bottom: 10px; }
.section-head h2 span { color: var(--orange); }
.section-head p { font-size: 18px; color: var(--gray); font-weight: 600; }

/* PLANES */
.planes-section { background: var(--light-gray); }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.plans-category-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--dark);
  text-transform: uppercase;
}
.plan-up-speed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 5px;
  background: rgba(0,0,0,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  color: white;
}
.plan-card.featured {
  border: 2px solid var(--orange);
  transform: translateY(-5px);
}
.plan-card.featured .plan-header {
  background: var(--dark);
}
.plan-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: flex; flex-direction: column; align-items: center; text-align: center; padding-bottom: 25px; transition: transform 0.3s; }
.plan-card:hover { transform: translateY(-10px); }
.plan-header { background: var(--orange); color: white; width: 100%; padding: 15px; }
.plan-header h3 { font-size: 35px; font-weight: 900; display: flex; align-items: baseline; justify-content: center; gap: 5px; line-height: 1; }
.plan-header h3 span { font-size: 18px; font-weight: 700; }
.plan-price { padding: 25px 0; width: 100%; border-bottom: 1px solid #eee; }
.plan-price strong { display: block; font-size: 32px; font-weight: 900; }
.plan-price small { color: var(--gray); font-weight: 600; }
.plan-features { list-style: none; padding: 20px; width: 100%; text-align: left; }
.plan-features li { margin-bottom: 15px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.plan-features li i { color: var(--orange); font-size: 18px; }
.plan-btn { width: 80%; text-align: center; justify-content: center; background: var(--orange); color: white; margin-top: auto; border-radius: 30px; }
.plan-btn:hover { background: #e65200; }

.plans-banners { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.banner { background: white; padding: 15px 30px; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 4px solid var(--orange); }
.banner i { color: var(--orange); font-size: 24px; }

/* COBERTURA */
.coverage-section { position: relative; background: url('../img/coverage-bg.jpg') center/cover no-repeat; color: white; padding: 80px 5%; display: flex; align-items: center; min-height: 500px; }
.coverage-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,15,30,0.8); z-index: 1; }
.coverage-content { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 40px; }
.coverage-text { max-width: 500px; }
.coverage-text h2 { font-size: 45px; font-weight: 900; margin-bottom: 15px; }
.coverage-text h2 span { color: var(--orange); }
.coverage-text p { font-size: 18px; margin-bottom: 30px; color: #ddd; }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.coverage-grid span { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.coverage-grid span i { color: var(--orange); font-size: 20px; }
.coverage-map { max-width: 500px; width: 100%; }
.coverage-map img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 0 20px rgba(255,90,0,0.4)); }

/* POR QUE ELEGIR */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }
.why-card { text-align: center; display: flex; flex-direction: column; align-items: center; background: white; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; }
.why-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.icon-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--orange); color: white; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 20px; }
.why-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); }

/* NOSOTROS */
.about-section { display: grid; grid-template-columns: 1fr 1fr; background: var(--light-gray); margin: 50px 5%; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-text { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: 40px; font-weight: 900; margin-bottom: 20px; }
.about-text p { margin-bottom: 15px; font-size: 15px; color: #444; line-height: 1.6; }
.about-text .btn { align-self: flex-start; margin-top: 15px; }

/* CONTACTO */
.contact-section { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; align-items: center; }
.contact-left h2 { font-size: 35px; font-weight: 900; margin-bottom: 30px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 14px; }
.ci-item i { background: rgba(255,90,0,0.1); color: var(--orange); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; font-size: 14px; outline: none; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,0,0.1); }
.contact-form textarea { height: 120px; resize: none; }
.contact-form button { border: none; align-self: flex-start; }
.mini-map { width: 100%; height: 250px; border-radius: 15px; overflow: hidden; }
.mini-map img { width: 100%; height: 100%; object-fit: cover; }

/* FOOTER */
.footer { background: var(--dark); color: white; padding: 60px 5% 20px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; border-bottom: 1px solid #333; padding-bottom: 40px; }
.footer .brand { color: white; display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 24px; text-decoration: none; }
.footer-text { font-weight: 600; text-align: center; }
.social-icons { display: flex; gap: 15px; }
.social-icons a { color: white; font-size: 24px; transition: 0.3s; }
.social-icons a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #888; }
.footer-links a { color: #888; text-decoration: none; margin: 0 5px; font-weight: 600; }
.footer-links a:hover { color: white; }

/* FLOAT WA */
.wa-float { position: fixed; bottom: 30px; right: 30px; background: var(--green); color: white; padding: 15px 25px; border-radius: 40px; font-weight: 700; display: flex; align-items: center; gap: 10px; text-decoration: none; box-shadow: 0 10px 20px rgba(37,211,102,0.3); z-index: 99; transition: 0.3s; }
.wa-float i { font-size: 24px; }
.wa-float:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(37,211,102,0.4); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; align-items: flex-start; padding-top: 50px; }
  .hero-text { margin-bottom: 40px; }
  .hero-badge { margin-top: 0; }
  .hero::before { background: rgba(255,255,255,0.85); }
  .about-section { grid-template-columns: 1fr; margin-left: 0; margin-right: 0; border-radius: 0; }
  .about-img img { min-height: 300px; }
  .contact-section { grid-template-columns: 1fr; }
  .coverage-content { flex-direction: column; text-align: center; gap: 30px; }
  .coverage-grid { text-align: left; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .menu { display: block; }
  .nav-cta { display: none; }
  .hero-features { flex-direction: column; gap: 15px; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 30px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; padding: 15px; border-radius: 50%; }
  .wa-float span { display: none; }
  .wa-float i { margin: 0; }
  .bar-content { flex-direction: column; align-items: flex-start; }
}
