* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 46, 0.95);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav-logo {
  height: 40px;
  transition: height 0.3s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s, font-size 0.3s;

}

.nav-links a:hover {
  opacity: 1;
  font-size: 1.1rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a1a2e, #2d2b6b, #6c63ff, #2d2b6b, #1a1a2e);
  background-size: 300% 300%;
  animation: gradiente 8s ease infinite;
  color: #ffffff;
  text-align: center;
  padding: 80px 40px 60px 40px;
  position: relative;
  overflow: hidden;
}

@keyframes gradiente {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.2);
  top: -50px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.15);
  bottom: 20px;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-50px); }
  100% { transform: translateY(0px); }
}

.hero-logo {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.6rem;
  max-width: 820px;
  margin: 0 auto 24px auto;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 48px auto;
  opacity: 0.85;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.hero a {
  position: relative;
  z-index: 2;
}

/* BOTÓN */
.btn {
  display: inline-block;
  background-color: #6c63ff;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background-color 0.2s;
}

.btn:hover {
  background-color: #574fd6;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #6c63ff;
  color: #6c63ff;
}

.btn-outline:hover {
  background-color: #6c63ff;
  color: #ffffff;
}

/* BENEFICIOS */
.beneficios {
  padding: 100px 40px;
  background-color: #1a1a2e;
  color: #ffffff;
}

.beneficios h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: #ffffff;
}

.beneficios-lista {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.beneficio {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 28px 32px;
  border-left: 4px solid #6c63ff;
}

.beneficio-icono {
  font-size: 2rem;
  flex-shrink: 0;
}

.beneficio p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.beneficio strong {
  color: #ffffff;
}

/* SERVICIOS */
.servicios {
  padding: 100px 40px;
  background-color: #f7f7fb;
  text-align: center;
}

.servicios h2 {
  font-size: 2rem;
  margin-bottom: 56px;
  color: #2d2b6b;
  font-weight: 700;
}

.cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.1);
  text-align: left;
  border-top: 4px solid #6c63ff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 32px rgba(108, 99, 255, 0.2);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #2d2b6b;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  text-align: justify;
}

/* PROCESO */
.proceso {
  padding: 100px 40px;
  background-color: #5854aa;
  text-align: center;
}

.proceso h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #f9f9fc;
  margin-bottom: 56px;
}

.pasos {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.paso {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 28px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.08);
}

.paso-numero {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #6c63ff;
  opacity: 0.3;
  margin-bottom: 16px;
}

.paso h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d2b6b;
  margin-bottom: 12px;
}

.paso p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555555;
  text-align: justify;
}

/* NOSOTROS */
.nosotros {
  padding: 100px 40px;
  background-color: #ffffff;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.nosotros h2 {
  font-size: 2rem;
  color: #2d2b6b;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.nosotros-texto {
  font-size: 1rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;

  .nosotros::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(108, 99, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: crecer 6s ease-in-out infinite;
  z-index: 0;
}

.nosotros > * {
  position: relative;
  z-index: 1;
}

@keyframes crecer {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(8); opacity: 0.1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}
}


.valores {
  margin-top: 60px;
}

.valores h3 {
  font-size: 1.6rem;
  color: #2d2b6b;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
  align-items: start;
}

.valor-card {
  background: #f7f7fb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border-top: 4px solid #6c63ff;
  border-bottom: 4px solid #6c63ff;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.valor-icono {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.valor-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2d2b6b;
  margin-bottom: 8px;
}

.valor-card p {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}

/* CONTACTO */
.contacto {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b6b 100%);
  color: #ffffff;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.contacto p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.85;
}

.contacto .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
}

.contacto .btn-outline:hover {
  background-color: #ffffff;
  color: #2d2b6b;
}

/* FORMULARIO */
.form-contacto {
  max-width: 560px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-contacto input,
.form-contacto textarea {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
}

.form-contacto input::placeholder,
.form-contacto textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-contacto textarea {
  resize: vertical;
}

.form-contacto .btn {
  align-self: center;
  padding: 16px 48px;
}

/* FOOTER */
footer {
  background-color: #0f0f1a;
  color: #777777;
  text-align: center;
  padding: 28px;
  font-size: 0.85rem;
}

/* WHATSAPP FLOTANTE */
.whatsapp-flotante {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-flotante:hover {
  transform: scale(1.1);
}

.whatsapp-flotante img {
  width: 100%;
  height: 100%;
}
.circulo-bg {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(209, 80, 145, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: crecer 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes crecer {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(8); opacity: 0.1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}
.valores-seccion {
  padding: 100px 40px 120px 40px;
  background-color: #e8e8f5;
  text-align: center;
}
.s1 { left: 1%;  font-size: 3rem;   animation-duration: 8s;  animation-delay: 0s;   top: 10%; }
.s2 { left: 3%;  font-size: 5rem;   animation-duration: 10s; animation-delay: 1s;   top: 40%; }
.s3 { left: 5%;  font-size: 2.5rem; animation-duration: 7s;  animation-delay: 2s;   top: 70%; }
.s4 { left: 90%; font-size: 4rem;   animation-duration: 9s;  animation-delay: 0.5s; top: 10%; }
.s5 { left: 92%; font-size: 3.5rem; animation-duration: 11s; animation-delay: 1.5s; top: 40%; }
.s6 { left: 94%; font-size: 2.8rem; animation-duration: 8s;  animation-delay: 3s;   top: 70%; }
.s7 { left: 2%;  font-size: 4.5rem; animation-duration: 9s;  animation-delay: 2.5s; top: 55%; }
/* MOBILE */
@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero {
    padding: 40px 20px 50px 20px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-logo {
    max-width: 90%;
  }

  .servicios,
  .beneficios,
  .proceso,
  .nosotros,
  .contacto {
    padding: 60px 20px;
  }

  .servicios h2,
  .beneficios h2,
  .proceso h2,
  .nosotros h2,
  .contacto h2 {
    font-size: 1.5rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
    width: 100%;
  }

  .pasos {
    flex-direction: column;
    align-items: center;
  }

  .paso {
    max-width: 100%;
    width: 100%;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .beneficio {
    flex-direction: column;
    gap: 12px;
  }

  .form-contacto {
    padding: 0 10px;
  }

  .whatsapp-flotante {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

}