/* Body y contenedor */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.container2 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0; /* si querés mantener separación vertical */
}

/* Header */
header {
  background: #111;
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
   gap: 12px; /* Espacio entre el logo y la bandera */
}



.bandera-argentina {
  height: 24px; /* Tamaño discreto y profesional */
  width: auto;
  border-radius: 4px; /* Opcional: bordes suaves */
  box-shadow: 0 0 5px rgba(0,0,0,0.15); /* Opcional: leve sombra para destacar */
}


header h1 {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 2px;
}

/* Navegación */
nav {
  position: relative;
}

#menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

#nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

#nav-links li a:hover,
#nav-links li a:focus {
  color: #1db954;
  outline: none;
}

.hero-tienda {
  background-color: #14833b; /* Fondo verde */
  border: 2px solid #22c55e;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-tienda h1,
.hero-tienda p {
  color: white;
}

.hero-tienda .boton {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-tienda .boton:hover {
  background-color: white;
  color: #14833b;
}



/* Hero */
.hero {
  background: linear-gradient(135deg, #1db954, #14833b);
  color: #fff;
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-texto {
  max-width: 700px;
  margin: 0 auto 2rem;
  transition: opacity 0.5s ease;
}

.hero-texto.fade-out {
  opacity: 0;
}

.hero h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 400;
}

.botones-hero {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.boton {
  background: #fff;
  color: #1db954;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.boton:hover,
.boton:focus {
  background-color: #14833b;
  color: #fff;
  outline: none;
}

.boton-ejemplo {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.boton-ejemplo:hover,
.boton-ejemplo:focus {
  background-color: #fff;
  color: #1db954;
}

.boton-whatsapp {
  background-color: #25d366;
  color: #fff;
}

.boton-whatsapp:hover,
.boton-whatsapp:focus {
  background-color: #128c4a;
  color: #fff;
}

/* Sección Planes */
.planes {
  padding: 4rem 0;
  background: #fff;
}

.planes h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #111;
  font-weight: 700;
}

.planes-grid-doble {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.plan {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan.destacado {
  background: #1db954;
  color: #fff;
  box-shadow: 0 6px 15px rgb(29 185 84 / 0.5);
}

.plan h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.precio {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.precio-original {
  text-decoration: line-through;
  font-size: 1rem;
  opacity: 0.7;
}

.precio-descuento {
  font-size: 2rem;
  font-weight: 900;
}

.etiqueta-descuento {
  background: #fff;
  color: #1db954;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  width: fit-content;
}

.plan ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.plan ul li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.plan a.boton {
  align-self: stretch;
  margin-top: auto;
  text-align: center;
}

.boton-inspeccionar {
  background-color: #eee;
  color: #333;
  font-weight: 600;
  margin-top: 0.75rem;
}

.boton-inspeccionar:hover,
.boton-inspeccionar:focus {
  background-color: #ddd;
  color: #111;
}

/* Detalle lado derecho */
.detalle-plan {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 350px;
  max-width: 600px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
  color: #333;
}

.detalle-plan h4 {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.detalle-plan ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

.detalle-plan ul li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.beneficios {
  background: #25d366;
  background-size: cover;       /* Para que cubra toda la sección */
  background-position: center;  /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que se repita */
  color: rgb(255, 255, 255);                 /* Texto blanco para que contraste (si la imagen es oscura) */
  padding: 60px 20px;           /* Asegura espacio interno */
  position: relative;           /* Por si querés agregar overlays */
}

.beneficios::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); /* Oscurece la imagen de fondo para mejor legibilidad */
  z-index: 0;
}

.beneficios .container {
  position: relative;
  z-index: 1; /* Asegura que el contenido esté por encima del overlay */
}


.beneficios h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.beneficios-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.beneficio {
  background: #14a347;
  border-radius: 12px;
  padding: 2rem;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.25);
}

.beneficio h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.beneficio p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Sección Contacto */
.contacto {
  padding: 4rem 0;
  background: #fff;
}

.contacto h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #111;
}

.form-contacto {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-contacto label {
  font-weight: 600;
  color: #555;
}

.form-contacto input,
.form-contacto textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-contacto input:focus,
.form-contacto textarea:focus {
  outline: none;
  border-color: #1db954;
  box-shadow: 0 0 5px rgba(29, 185, 84, 0.7);
}

.form-contacto button.boton {
  background-color: #1db954;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-contacto button.boton:hover,
.form-contacto button.boton:focus {
  background-color: #14833b;
  outline: none;
}

.estado-envio {
  margin-top: 1rem;
  font-weight: 700;
  text-align: center;
}

.estado-envio.exito {
  color: #1db954;
}

.estado-envio.error {
  color: #d9534f;   
}

/* Footer */
footer {
  background: #111;
  color: #eee;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

    footer2 {
      text-align: center;
      color: #666;
      font-size: 0.9rem;
      margin: 40px 0 20px;
    }

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.25);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c4a;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 0.1rem rgba(0,0,0,0.3));
}

/* Popup WhatsApp */
.whatsapp-popup {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.25);
  width: 280px;
  max-width: 90vw;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10001;
}

.whatsapp-popup.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-header {
  background-color: #25d366;
  color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 1rem 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cerrar-popup {
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  user-select: none;
  font-weight: 900;
}

.whatsapp-body {
  padding: 1rem 1.25rem 1.5rem;
  color: #111;
  font-size: 1rem;
  text-align: center;
}

.boton-whatsapp-popup {
  background-color: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.boton-whatsapp-popup:hover,
.boton-whatsapp-popup:focus {
  background-color: #128c4a;
  outline: none;
}

/* Responsive */
@media (max-width: 900px) {
  .planes-grid-doble {
    flex-direction: column;
    align-items: center;
  }

  .plan, .detalle-plan {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  #nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    width: 200px;
    flex-direction: column;
    gap: 0;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  #nav-links.activo {
    max-height: 400px;
  }

  #nav-links li {
    border-bottom: 1px solid #222;
  }

  #nav-links li a {
    padding: 1rem 1.5rem;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .botones-hero {
    flex-direction: column;
  }

  .botones-hero .boton {
    width: 100%;
    padding: 0.75rem 0;
  }
}

.mb-espacio {
  margin-bottom: 8px; /* Podés ajustar el valor a gusto */
}

.separacion-superior {
  margin-top: 40px; /* Ajustá el valor según lo que necesites */
}

.planes-grid-doble {
  margin-top: 40px;
}










.plan.destacado {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra el contenido */
  position: relative;
  padding-top: 20px;
}

.contenedor-flecha {
  position: absolute;
  top: 0;
  left: -50px; /* Ajustá según necesites */
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flecha-animada {
  width: 30px;
  height: auto;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.logo-header {
  max-height: 120px;
  width: auto;
}

.logo-header2 {
  margin-top: -40px;
   max-height: 40px; 
  width: auto;
  
}

.popup-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px; /* espacio entre el texto y la "X" */
  padding: 10px 14px; /* separa del borde superior y derecho */
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.3); /* opcional: fondo suave */
  border-bottom-left-radius: 10px; /* suaviza la esquina */
}

.contador-salto {
  font-weight: bold;
  color: #ffffff !important;
  font-size: 14px;
  margin: 0;
}

.popup-cerrar {
  font-size: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none; /* se muestra después de los 7 segundos */
}



.popup-publicidad {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-contenido {
  position: relative;
  background-color: white;
  border-radius: 12px;
  padding: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgb(0, 0, 0);
}

.popup-contenido img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}


.contador-salto {
  color: rgb(0, 0, 0);
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.acordeon-titulo {
  background-image: url('img/banner.png'); /* Cambiá la ruta si está en otra carpeta */ 
  width: 100%;
  background-color: #25d366; /* verde waiser */
  color: #fff;
  cursor: pointer;
  padding: 1em;
  font-size: 1.2em;
  border: none;
  text-align: left;
  outline: none;
  transition: background 0.3s;
  border-radius: 8px;
  margin-bottom: 5px;
}

.acordeon-titulo.activo {
  background-color: #128c4a;
  
}

/* Hover: cuando el usuario pasa el mouse */
.acordeon-titulo:hover {
  background-color: #128c4a; /* fondo verde al pasar el mouse */
  color: #ffffff; /* texto blanco al pasar el mouse */
  filter: brightness(1.2) drop-shadow(0 0 5px rgba(255, 255, 255, 0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: scale(1.05);
}

.acordeon-titulo .flecha {
  transition: transform 0.3s ease;
}

/* Flecha girada cuando está abierto */
.acordeon-titulo.activo .flecha {
  transform: rotate(180deg);
}

.acordeon-contenido {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
  padding: 0 1em;
  border-radius: 0 0 8px 8px;
  margin-bottom: 1em;
}

.acordeon-contenido ul {
  padding-left: 1.2em;
}

.acordeon-contenido .boton {
  margin-top: 1em;
  display: inline-block;
}


.encabezado-plan-con-fondo {
  background-image: url('img/fondo_animado.gif'); /* Cambiá por la ruta correcta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 12px 12px 0 0; /* Redondeo arriba */
  color: white;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.25); /* Oscurecer sutil para que el texto se lea bien */
}


#contador-descuento {
  font-weight: bold;
  color: #128c4a; /* Verde cian futurista */
  margin-left: 5px;
}

#contador-descuento-2 {
  font-weight: bold;
  color: #128c4a; /* Verde cian futurista */
  margin-left: 5px;
}

#contador-descuento-1 {
  font-weight: bold;
  color: #128c4a; /* Verde cian futurista */
  margin-left: 5px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25); /* tono oscuro, podés ajustar el 0.5 */
  z-index: 1;
}

/* Asegurate de que el contenido esté por encima del overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

.container-productos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto;
  justify-content: center;
}

.producto {
  width: 250px;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.producto:hover {
  transform: scale(1.03);
}

.producto-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.producto-nombre {
  font-size: 1.2em;
  margin: 10px 0 5px;
  color: #198754;
}

.producto-descripcion {
  font-size: 0.9em;
  color: #555;
  padding: 0 10px;
}

.producto-precio {
  font-weight: bold;
  color: #222;
  margin: 10px 0;
}

.btn-comprar {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px 16px;
  background-color: #198754;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-comprar:hover {
  background-color: #146c43;
}

.mi-seccion {
  position: relative;
  background-image: url('img/tienda-digital.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: white;
  border-radius: 20px;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
}

.mi-seccion::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* el tono oscuro */
  z-index: 1;
}

.mi-seccion {
  position: relative;
}

/* Texto centrado donde estaba el botón */
.promo-texto-centrado {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  color: white;
}

/* Botón flotante abajo a la derecha */
.boton-flotante {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 12px 20px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.boton-flotante:hover {
  background-color: #218838;
}


/* Asegurate que el contenido esté por encima del overlay */
.mi-seccion > * {
  position: relative;
  z-index: 2;
}

.promo-texto {
  position: absolute;
  top: 75%;         /* Ajustá este valor según tu diseño */
  right: 30px;      /* Un poco separado del borde derecho */
  transform: translateY(-50%); /* Centra verticalmente con respecto al top */
  font-size: 20px;
  font-weight: bold;
  color: white;
}

@media (max-width: 600px) {
  .promo-texto {
    font-size: 18px;
    right: 15px;
    bottom: 15px;
  }
}

/* Botón secundario (Iniciar sesión) */
.boton-secundario {
  right: 180px; /* Ajustá según posición del otro botón */
  background-color: #0d6efd;
}

.boton-secundario:hover {
  background-color: #0b5ed7;
}

/* Estilos del popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.popup-contenido input,
.popup-contenido button {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.popup-contenido button {
  background: #198754;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.popup-contenido button:hover {
  background: #157347;
}

.cerrar-popup {
  position: absolute;
  top: 10px;
  right: 15px; /* 👈 Esto la alinea a la derecha */
  background: transparent;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10;
}


.botones-tienda {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: flex-start; /* Alineados a la izquierda */
  flex-wrap: wrap; /* Para que en celulares bajen uno abajo del otro */
}

/* Botón como "Ver ejemplo" */
.btn-ver-ejemplo {
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-ver-ejemplo:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Botón como "Conseguir plan" */
.btn-conseguir-plan {
  background-color: transparent;
  color: #28a745;
  padding: 12px 24px;
  border: 2px solid #28a745;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-conseguir-plan:hover {
  background-color: #28a745;
  color: white;
}

.botones-generar {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Botón estilo volver (menos llamativo) */
.btn-volver {
  display: inline-block;
  background-color: transparent;
  color: #6c757d; /* gris azulado, sobrio */
  padding: 12px 24px;
  border: 2px solid #6c757d;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-volver:hover {
  background-color: #6c757d;
  color: white;
}



.aviso-gratis {
  font-size: 0.9rem;
  color: #ffffff;
  /* border: 1px solid white;*/
  padding: 6px 12px;
  display: inline-block;
  margin-top: 25px; /* aumentamos la separación */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2); /* opcional para resaltar */
}

.aviso-gratis2 {
  font-size: 0.9rem;
  color: #ffffff;
  /* border: 1px solid white;*/
  padding: 6px 12px;
  display: block;
  margin-top: 5px; /* aumentamos la separación */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2); /* opcional para resaltar */
}

.aviso-precio {
  font-size: 0.9rem;
  color: #ffffff;
  padding: 6px 12px;
  display: inline-block; /* para que el ancho se ajuste al texto */
  margin-top: 5px; /* aumentamos la separación */
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}


.contenido-centrado {
    color: #666;
    text-align: center;
    /*  margin: 0 auto; */
    padding: 10px;
    margin-top: 0px;
}

.contenido-centrado2 {
    color: #666;
    text-align: left;
    /*  margin: 0 auto; */
    padding: 10px;
    margin-top: 0px;
}

.mi-seccion4 {
  position: relative;
  background-image: url('img/waiserdigital-whatsapp.png'); /* Cambiá por la imagen nueva que quieras usar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: white;
  border-radius: 20px;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
}

/* Capa oscura superpuesta */
.mi-seccion4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Oscurece al 50% */
  z-index: 1;
  border-radius: 20px;
}

/* Asegura que el contenido esté encima del fondo oscuro */
.mi-seccion4 * {
  position: relative;
  z-index: 2;
}

.mi-seccion5 {
  position: relative;
  background-image: url('img/waiser-digital-consultar-dominio.png'); /* Cambiá por la imagen nueva que quieras usar */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  color: white;
  border-radius: 20px;
  max-width: 900px;
  margin: 40px auto;
  overflow: hidden;
}

/* Capa oscura superpuesta */
.mi-seccion5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Oscurece al 50% */
  z-index: 1;
  border-radius: 20px;
}

/* Asegura que el contenido esté encima del fondo oscuro */
.mi-seccion5 * {
  position: relative;
  z-index: 2;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255,255,255,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}


#loader img {
  width: 80px; /* o el tamaño que quieras */
  height: auto;
}


#contador-tiendas {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.2em;
  color: #25d366; /* verde profesional */
  animation: aparecer 1s ease-in-out forwards;
  opacity: 0;
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

#contador-numero.animado {
  animation: crecer 0.5s ease;
}

@keyframes crecer {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.contador-texto {
  font-size: 1.2em;
  text-align: center;
  margin-top: 20px;
  color: #ffffff; /* color del texto normal */
}

#contador-numero {
  font-weight: bold;
  color: #25d366; /* verde para destacar */
  font-size: 1.4em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1 1 300px; /* flexible con mínimo 300px */
}

#map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.footer-column.oficinas a span {
  display: block;
  line-height: 1.4;
}








