/* Estilos Generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;

  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Evita scroll horizontal */
}
h1,
h2,
h3 {
  color: #004d40;
}
a {
  color: #009688;
  text-decoration: none;
  font-size: 2rem;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  width: 100vw;
  display: relative;
  flex-direction: row;
}

.imagen {
  width: 100vw; /* Asegura que ocupe el ancho del viewport */
  height: auto; /* Mantiene proporción */
  display: block; /* Elimina espacios adicionales */
}

img {
  max-width: 100%;
  height: auto;
}
/* Header */
/* header {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #e8f5e9;
}
header > div {
  width: 100vw; 
  position: relative; 
} */

.imagen {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; /* Para que no ocupe más del viewport */
  max-width: 500px; /* Tamaño máximo */
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  /* Cuando sea desktop */
  .overlay {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 40%;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
}

.overlay img.logo {
  width: 150px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.texto_descubre_max {
  display: inline-block;
  margin: 10px 0;
  text-decoration: none;
  color: #00796b;
  font-weight: bold;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.store-buttons img {
  width: 120px; /* Ajustar tamaño de los botones */
  height: auto;
}

/* Responsividad */
@media (max-width: 1024px) {
  .overlay {
    width: 50%; /* Mayor ancho en tabletas */
    top: 5%;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .overlay {
    position: static; /* Elimina posición absoluta en móviles */
    width: 90%;
    margin: 10px auto;
    box-shadow: none;
    text-align: center;
  }

  .store-buttons {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .overlay p {
    font-size: 1em;
  }

  .store-buttons img {
    width: 100px; /* Botones más pequeños en móviles */
  }
}
/* Descripción */
.description {
  text-align: center;
  padding: 40px 20px;
}
.description img {
  width: 150px;
  margin: 20px auto;
  border-radius: 50%;
}

/* Beneficios */
.benefits {
  background-color: #e8f5e9;
  padding: 40px 20px;
  text-align: center;
}
.benefits ul {
  list-style: none;
  margin-top: 20px;
}
.benefits ul li {
  margin: 10px 0;
  font-size: 1.1em;
}

/* Planes y Precios */
.plans {
  text-align: center;
  padding: 40px 20px;
}
.plans .plan-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
  display: inline-block;
  width: 30%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.plans h3 {
  margin-bottom: 10px;
}
.plans .price {
  font-size: 1.5em;
  color: #00796b;
  margin: 10px 0;
}
.plans .discount {
  color: #d32f2f;
  text-decoration: line-through;
}

/* CTA Final */
.cta-final {
  background: #004d40;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}
.cta-final h2 {
  margin-bottom: 10px;
}
.cta-final button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
}
.cta-final button:hover {
  background-color: #f57c00;
}

/* Footer */
footer {
  background: #333;
  color: #ffffff;
  text-align: center;
  padding: 20px 10px;
}
footer a {
  color: #ffcc80;
}
p {
  font-size: 2em;
  text-align: left;

  color: #1b4331;
  margin-left: 20px;
  margin-right: 20px;
}
.texto_descubre_mas {
  margin-top: 50px;
}
.store-buttons {
  justify-content: center;
  justify-items: center;
  display: flex; /* Alinea los botones horizontalmente */
  gap: 20px; /* Espacio entre botones */
}

.store-button img {
  height: 80px; /* Altura de los botones */
  width: auto; /* Mantiene la proporción */
  transition: transform 0.3s ease; /* Animación al pasar el mouse */
}

.store-button img:hover {
  transform: scale(1.05); /* Efecto de agrandar ligeramente */
}

/* Sección principal */
.content-section {
  display: flex; /* Alinea los elementos en fila */
  align-items: center; /* Centra verticalmente */
  justify-content: space-between;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contenido de texto */
.text-content {
  flex: 1; /* Ocupa el espacio disponible */
  max-width: 50%; /* Máximo 50% del ancho */
  padding-right: 20px;
}

.text-content h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 1.1em;
  line-height: 1.8;
}

/* Imagen circular */
.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  width: 100%;
  max-width: 350px; /* Ajusta el tamaño máximo */
  height: auto;
  border-radius: 50%; /* Hace que la imagen sea circular */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Responsividad */
@media (max-width: 768px) {
  .content-section {
    flex-direction: column; /* Coloca los elementos uno bajo el otro */
    text-align: center;
    padding: 0px;
  }

  .text-content,
  .image-content {
    max-width: 100%;
    padding: 0;
  }

  .text-content {
    margin-bottom: 20px;
  }
}

/* Contenedor de fondo */
.background-container {
  position: relative;
  width: 100%;
  height: auto;
  background: url("image3.png") no-repeat center center/cover;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Responsividad */
@media (max-width: 768px) {
  .background-container {
    padding: 20px 10px 20px 10px;
  }
}

/* Tarjeta flotante */
.content-card {
  background-color: rgba(255, 255, 255, 0.85);
  width: 80%;
  max-width: 800px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .content-card {
    flex-direction: column; /* Coloca los elementos uno bajo el otro */
    text-align: center;
    padding: 20px;
    width: 100%;
  }
}

.content-card h2 {
  font-size: 2em;
  color: #004d40;
  margin-bottom: 20px;
}

.content-card ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.content-card ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.8;
}

.content-card ul li strong {
  color: #004d40;
}

/* Imagen inferior */
.bottom-image {
  display: block;
  margin: 20px auto 0;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contenedor de Planes */
.plans-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 20px 150px 20px;
}

/* Tarjeta del Plan */
.plan-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 30%;
  text-align: center;
  position: relative;
}

.plan-card h3 {
  font-size: 1.5em;
  color: #004d40;
  margin-bottom: 10px;
}

.plan-type {
  font-size: 1.2em;
  font-weight: bold;
}

.plan-highlight {
  font-size: 1.1em;
  margin: 10px 0;
  color: #d32f2f;
}

.strikethrough {
  text-decoration: line-through;
  color: #777;
}

.plan-offer {
  margin: 10px 0;
  color: #ff6f00;
  font-size: 0.9em;
}

.plan-card ul {
  list-style: none;
  margin: 15px 0;
}

.plan-card ul li {
  margin: 8px 0;
  font-size: 1em;
}

.plan-price {
  margin-top: 15px;
  font-size: 1.5em;
  color: #004d40;
}

.old-price {
  text-decoration: line-through;
  color: #777;
  font-size: 0.9em;
}

.discount-badge {
  background-color: #d32f2f;
  color: #fff;
  font-size: 0.9em;
  border-radius: 5px;
  padding: 3px 6px;
  margin-left: 5px;
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c5e1a5;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 1.2em;
  color: #333;
}

/* Estilo del Plan Gratis */
.plan-card.free {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
}

/* Responsividad */
@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 80%;
  }
}

.section-title {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 50px;

  font-size: 2em;
}

.background-container-comienza-ahora {
  position: relative;
  width: 100%;
  height: 900px;
  background: url("image4.png") no-repeat center center/cover;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .background-container-comienza-ahora {
    padding: 20px 10px 20px 10px;
  }
}

.content-card-comienza-ahora {
  background-color: rgba(255, 255, 255, 0.85);
  width: 80%;
  max-width: 800px;
  height: 600px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  align-items: center;
  align-content: center;
  position: relative;
  z-index: 2;
  gap: 100px;
}

@media (max-width: 768px) {
  .content-card-comienza-ahora {
    width: 100%;
  }
}
/* Footer */
.footer {
  background-color: #234636; /* Color de fondo */
  color: #ffffff;
  padding: 20px 30px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer-container {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-left {
    width: 100%;
    max-width: 100%;
    justify-content: left;
  }

  .footer-right {
    width: 100%;
    justify-content: left;
    max-width: 100%;
  }
  .footer-link {
    margin-top: 20px;
    font-size: 1.2rem;
  }

  .milink {
    font-size: 1rem;
  }
}
/* Columna Izquierda */
.footer-left {
  max-width: 40%;
  justify-content: left;
}

.footer-left img {
  max-width: 200px;
  margin-bottom: 10px;
}

.footer-quote {
  width: 100%;
  font-style: italic;
  font-size: 1.1em;
  color: white;
}

/* Columna Derecha */
.footer-right {
  text-align: right;
  max-width: 40%;
}

.footer-link {
  display: block;
  font-size: 1.2em;
  color: #ffffff;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Parte inferior */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  border-top: 1px solid #ffffff33;
  padding-top: 10px;
}

/* Parte inferior */
.footer-bottom p {
  text-align: center;
  font-size: 1rem;
  color: white;
}

.correo {
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .correo {
    font-size: 1.3rem;
  }
}
/* Global Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.5;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
  width: 150px;
}

.contact-btn {
  background-color: #ff9100;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-btn:hover {
  background-color: #e68000;
}

/* Main Section */
.main {
  text-align: center;
  padding: 2rem 1rem;
}

.title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 2rem;
}

.image-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.profile-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsiveness */
@media (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
}
