/* =========================    ESTILOS PRINCIPALES    ========================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #111;
  color: white;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Texto verde reutilizable */
.verde {
  color: #25d366;
}

/* =========================    HEADER    ========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 5vw;
  width: 100%;
  box-sizing: border-box;
  background: #0005;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Botón Lenguaje */
.language-selector {
  position: relative;
}

.lang-bot {
  background: none;
  border: none;
  color: #25d366;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.lang-bot span.arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #25d366;
  border-bottom: 2px solid #25d366;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
  margin-top: -3px;
}

.language-selector.open .lang-bot span.arrow {
  transform: rotate(-135deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border: 1px solid #222;
  border-radius: 6px;
  min-width: 140px;
  margin-top: 6px;
  z-index: 1000;
}

.dropdown a {
  display: block;
  padding: 10px;
  color: #25d366;
  text-decoration: none;
  font-size: 14px;
}

.dropdown a:hover {
  background: #222;
}

.language-selector.open .dropdown {
  display: block;
}

/* Botón principal del header */
.btn-header {
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-header:hover {
  background: #1ea854;
}

/* =========================    HERO SECTION    ========================= */
#inicio {
  padding: 24vh 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80vh;
  box-sizing: border-box;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5vw;
  width: 100%;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text .sub {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.hero-text .desc {
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.boton-verde {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.boton-verde:hover {
  background: #1ea854;
}

.btn-outline {
  border: 2px solid #25d366;
  color: #25d366;
  background: none;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #25d366;
  color: #111;
}

/* Imagen del lado derecho */
.hero-image {
  flex: 1 1 45%;
  text-align: center;
}

.hero-image img {
  width: 95%;            /* antes 70%, ahora más grande */
  max-width: 800px;      /* antes 400px */
  height: auto;
  border-radius: 50px;   /* bordes más redondeados */
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.2); /* leve sombra verde sutil */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02); /* pequeño efecto al pasar el mouse (opcional) */
  box-shadow: 0 0 25px rgba(0, 255, 100, 0.3);
}











#caracteristicas {
  background: #111;
  color: #f1f1f1;
  padding: 12vh 8vw;
  width: 100%;
  box-sizing: border-box;
}

/* Contenedor principal */
.caracteristicas-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6vw;
  flex-wrap: wrap;
}

/* Imagen a la izquierda */
.caracteristicas-imagen {
  flex: 1 1 46%;
  text-align: center;
}

.caracteristicas-imagen img {
  width: 80%;
  max-width: 700px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(37, 211, 102, 0.12);
}

/* Texto a la derecha */
.caracteristicas-texto {
  flex: 1 1 46%;
}

.caracteristicas-texto h2 {
  font-size: 2.6vw;
  margin-bottom: 1rem;
  color: #25D366;
}

.caracteristicas-texto p {
  font-size: 1.2vw;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 3vh;
}

/* Lista */
.caracteristicas-listas {
  margin: 0 0 4vh 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2vh 2vw;
}

.caracteristicas-listas li {
  flex: 1 1 48%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ddd;
}

/* Icono */
.caracteristicas-listas .icon {
  flex: 0 0 auto;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102a18;
  color: #25D366;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}

/* Botón */
.boton-verde {
  background: #25D366;
  color: #111;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.3s ease, background 0.3s ease;
}

.boton-verde:hover {
  background: #1fa955;
  transform: translateY(-4px);
}















/* =========================
   SECCIÓN DEL PROCESO
   ========================= */
.proceso {
  background: linear-gradient(180deg, #111 0%, #0c0c0c 100%);
  color: #fff;
  padding: 200px 20px;
  text-align: center;
  box-sizing: border-box;
  width: 100%;
}

.proceso h2 {
  font-size: 2rem;
  color: #25D366;
  margin-bottom: 10px;
  font-weight: 700;
}

.proceso > p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 60px;
}

/* GRID GENERAL */
.proceso-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 60px;
}

/* ITEM INDIVIDUAL */
.proceso-item {
  flex: 1 1 250px;
  max-width: 300px;
  color: #fff;
  text-align: left;
  position: relative;
  padding-left: 50px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* CÍRCULO DE NÚMERO */
.proceso-num {
  counter-increment: paso;
  content: counter(paso);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #25D366;
  border-radius: 50%;
  color: #25D366;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}

/* hover */
.proceso-item:hover {
  transform: translateY(-5px);
}

.proceso-item h3 {
  color: #25D366;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.proceso-item p {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
}





/* =========================
   POR QUÉ ELEGIRNOS
   ========================= */
.porque {
  background: #0005;
  color: #fff;
  padding: 10vh 5vw;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.porque h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #25D366;
}

.porque h2 span {
  color: #25D366;
}

.porque p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.porque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: auto;
  width: 100%;
}

.porque-item {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.1);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.porque-item:hover {
  transform: translateY(-5px);
  background: #222;
}

.porque-item h3 {
  color: #25D366;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.porque-item p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
}

/* =========================
   PREGUNTAS FRECUENTES (FAQ)
   ========================= */
.faq {
  background:#0005;
  color: #fff;
  padding: 10vh 5vw;
  width: 100%;
  box-sizing: border-box;
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  color: #25D366;
}

.faq h2 span {
  color: #25D366;
}

.faq-subtitulo {
  text-align: center;
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.faq-item {
  background: #1a1a1a;
  margin: 15px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.08);
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.faq-item:hover {
  background: #222;
  transform: translateY(-3px);
}

.faq-item h3 {
  color: #25D366;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.faq-item p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}


/* =========================
   FOOTER
   ========================= */
.footer {
  background: #111;
  color: #fff;
  padding: 40px 5vw;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.footer-contenedor {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto 30px;
  width: 100%;
}

.footer-logo,
.footer-contacto {
  flex: 1 1 250px;
  text-align: left;
  padding-left: 100px;
}

.footer h3,
.footer h4 {
  color: #25D366;
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 10px;
  color: #ddd;
}

.btn-whatsapp {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1da955;
}

.footer-copy {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9em;
  color: #777;
  text-align: center;
}




