/* ----------------------------------------------------
   FUENTE Y RESET
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  line-height: 1.6;
}



/* ----------------------------------------------------
   HEADER
---------------------------------------------------- */
.header {
  background: white;
  width: 100%;
  padding: 20px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 32px;
  font-weight: 700;
}

.logo span {
  color: #1ac97f;
}

.menu a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: 0.3s;
}

.menu a:hover {
  color: #0090ff;
}



/* ----------------------------------------------------
   SECCIÓN INICIO
---------------------------------------------------- */
.inicio-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 70px 40px;
  gap: 50px;
  background: white;
}

.inicio-texto h2 {
  font-size: 38px;
  color: #1a3e5c;
  margin-bottom: 15px;
}

.inicio-texto p {
  margin-bottom: 15px;
  font-size: 18px;
}

.inicio-detalle {
  margin-top: 10px;
  color: #0090ff;
  font-weight: 600;
}

.inicio-imagen img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}



/* BOTONES GENERALES */
.btn-principal {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(90deg, #1ac97f, #0090ff);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 15px;
}

.btn-principal:hover {
  opacity: 0.85;
}

.btn-secundario {
  display: inline-block;
  background: #0090ff;
  padding: 12px 22px;
  color: white;
  border-radius: 10px;
  margin-top: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secundario:hover {
  background: #0070cc;
}



/* ----------------------------------------------------
   TITULOS GENERALES
---------------------------------------------------- */
.section-title {
  text-align: center;
  color: #1a3e5c;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}



/* ----------------------------------------------------
   PLANES
---------------------------------------------------- */
.planes-section {
  padding: 70px 40px;
  background: #f2f6f9;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.plan-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  color: #0090ff;
  margin-bottom: 10px;
}

.plan-card .precio {
  font-size: 26px;
  font-weight: 700;
  color: #1ac97f;
  margin-bottom: 12px;
}

.plan-card .tv {
  margin-top: 12px;
  font-weight: 600;
  color: #1a3e5c;
}

.recomendado {
  border: 2px solid #0090ff;
}



/* ----------------------------------------------------
   COBERTURA
---------------------------------------------------- */
.cobertura-section {
  padding: 70px 40px;
  background: white;
}

.cobertura-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.cobertura-img {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cobertura-info {
  max-width: 500px;
}

.lista-cobertura div {
  background: #e8f4ff;
  padding: 10px 15px;
  border-radius: 12px;
  margin-top: 8px;
  font-weight: 500;
}



/* ----------------------------------------------------
   PAGOS
---------------------------------------------------- */
.pagos-section {
  background: #f2f6f9;
  padding: 70px 40px;
  text-align: center;
}

.lista-pagos {
  list-style: none;
  margin: 20px 0;
}

.lista-pagos li {
  margin: 8px 0;
  font-size: 18px;
}



/* ----------------------------------------------------
   NOSOTROS
---------------------------------------------------- */
.nosotros-section {
  padding: 70px 40px;
  background: white;
}

.nosotros-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.nosotros-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.nosotros-texto p {
  margin-bottom: 15px;
}



/* ----------------------------------------------------
   CONTACTO
---------------------------------------------------- */
.contacto-section {
  background: #f2f6f9;
  padding: 70px 40px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
}

.contact-form button {
  margin-top: 10px;
}



/* ----------------------------------------------------
   BOTÓN WHATSAPP
---------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
}

.whatsapp-float:hover {
  background: #20b75a;
}



/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  text-align: center;
  padding: 25px;
  background: white;
  color: #444;
  font-size: 14px;
  margin-top: 40px;
}



/* ----------------------------------------------------
   RESPONSIVE
---------------------------------------------------- */
@media (max-width: 900px) {
  .inicio-section {
    flex-direction: column;
    text-align: center;
  }

  .cobertura-grid,
  .nosotros-grid {
    flex-direction: column;
    text-align: center;
  }
}