* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ================== BODY ================== */
body {
  min-height: 100vh;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f2f2f2 40%, #dcdcdc 70%, #cfcfcf 100%);
  background-size: 160% 160%;
  animation: bodyPulse 10s ease-in-out infinite;
}

@keyframes bodyPulse {
  0% { background-size: 150% 150%; background-position: 50% 50%; }
  50% { background-size: 190% 190%; background-position: 48% 44%; }
  100% { background-size: 150% 150%; background-position: 50% 50%; }
}

@keyframes radialPulse {
  0% { background-size: 170% 170%; background-position: 50% 50%; }
  50% { background-size: 210% 210%; background-position: 46% 48%; }
  100% { background-size: 170% 170%; background-position: 50% 50%; }
}

/* ================== HERO ================== */
.hero {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* ================== CARDS ================== */
.cards {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* ================== CONTENT ================== */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content h2 {
  font-size: 58px;
  margin-bottom: 16px;
  color: #000;
}

.subtitle {
  font-size: 18px;
  color: #e53935;
  margin-bottom: 32px;
}

.imagenlogo {
  width: 120%;
  margin-bottom: 10px;
}

/* ================== BUTTONS ================== */
.actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #e53935;
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
  background: #fff;
  color: #2b2b2b;
  border: 1px solid #d0d0d0;
}

.btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.small {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 24px;
}

/* ================== FEATURES ================== */
.features-box {
  background: rgba(255,255,255,0.95);
  border-radius: 32px;
  padding: 18px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  max-width: 460px;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-bottom: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2b2b2b;
  font-weight: 500;
}

.feature-item.stars {
  color: #e53935;
  font-size: 16px;
}

/* ================== STATS ================== */
.stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

.stats-stars {
  display: flex;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.stats-stars .star {
  font-size: 18px;
  color: #e53935;
}
.CENTRADOTEXTO{
  display: flex;
  align-items: center;
}
/* ================== BUBBLES ================== */
.bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(229, 57, 53, 0.45), rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.1) 70%);
  animation: floatUp linear infinite;
}
.division {
  display: flex;
  justify-content: space-between; /* separa los elementos extremos */
  align-items: center; /* centra verticalmente */
  padding: 10px 20px;
}

.CENTRADOTEXTO {
  display: flex;
  gap: 20px; /* espacio entre los enlaces */
}

.CENTRADOTEXTO a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
}

.primary1 {
  padding: 10px 20px; /* un poco más grande para mejor usabilidad */
  background-color: #e53935;
  color: white;
  text-decoration: none;
  border-radius: 25px; /* bordes muy redondeados */
  font-weight: 600;
  margin-left: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* sombra suave */
}

.primary1:hover {
  background-color: #ffffff; /* contraste fuerte */
  color: #e53935;
  transform: scale(1.07); /* crece ligeramente */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* sombra más marcada */
}


/* ================== SECCIONES MAIN ================== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 2;
  position: relative;
}

.section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.22);
}

.section-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-text h2 {
  font-size: 36px;
  color: #2b2b2b;
}

.section-text p, .section-text ul {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.section-text ul {
  padding-left: 20px;
}

.section-text ul li {
  margin-bottom: 8px;
}

.section-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.section-image img:hover {
  transform: scale(1.03);
}

.banner {
  width: 100%;
  height: 700px;  
  overflow: hidden;
  position: relative; /* necesario para que los hijos absolutos se posicionen respecto a esto */
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; /* se queda detrás del texto */
  top: 0;
  left: 0;
  z-index: 1;
}

.banner h2 {
  position: relative; /* relativo al banner */
  z-index: 2; /* encima de la imagen */
  color: white;
  font-size: 5rem; /* gigante, ajusta según prefieras */
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7); /* para que resalte sobre la imagen */
  margin: 0;
}



/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .section { grid-template-columns: 1fr; padding: 30px; }
  .section-image img { max-width: 100%; height: auto; }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; }
}

@media (max-width: 768px) {
  body {
    animation: radialPulse 22s ease-in-out infinite;
    background-size: 180% 180%;
  }
  .hero { grid-template-columns: 1fr; gap: 40px; margin: 40px auto; text-align: center; }
  .cards img { width: 120%; max-width: 350px; height: auto; }
  .imagenlogo { width: 90%; }
  .actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; padding: 14px 0; }
  .features-row { grid-template-columns: 1fr; }
  .stats { flex-direction: column; }
}

@media (max-width: 480px) {
  main { padding: 40px 16px; gap: 40px; }
  .section { padding: 20px; gap: 30px; }
  .section-text h2 { font-size: 28px; }
  .section-text p, .section-text ul { font-size: 14px; }
}
/* ================== BANNER ================== */


/* ================== NAVBAR FLOTANTE ================== */
.navbar {
    position: fixed;            /* ahora flota sobre todo */
    top: 16px;                  /* margen superior */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;              /* siempre sobre el contenido */
    width: 95%;
    max-width: 1200px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.85); /* semitransparente */
    border-radius: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

/* ================== LOGO ================== */
.logo img {
    height: 32px;
}

/* ================== NAVEGACIÓN ================== */
.navbar nav {
    display: flex;
    gap: 16px;
}

.navbar nav a {
    margin: 0 8px;
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.navbar nav a:hover {
    color: #e53935;
}

/* ================== HAMBURGER ================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #2b2b2b;
    border-radius: 1px;
}

/* ================== BOTÓN ROJO OCULTO ================== */
.navbar > .btn-primary {
    display: none;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255,255,255,0.95);
        border-radius: 18px;
        margin-top: 12px;
        padding: 14px 0;
        box-shadow: 0 16px 48px rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .navbar nav.active {
        display: flex;
    }

    .navbar nav a {
        padding: 14px 0;
        font-size: 16px;
        text-align: center;
        margin: 0;
    }
}

/* ================== FOOTER ================== */
.footer {
  width: 100%;
  margin-top: 120px;
  padding: 60px 24px 28px;
  background: rgba(0,0,0,0.9);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links h4 {
  font-size: 15px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #b5b5b5;
  margin-bottom: 10px;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: #e53935;
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
}

/* ================== FOOTER RESPONSIVE ================== */
@media (max-width: 768px) {
  .footer {
    margin-top: 80px;
    padding: 48px 20px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-links a:hover {
    transform: none;
  }
}
/* =============== HEADER CONTENEDOR =============== */
.site-header {
  position: sticky;
  top: clamp(12px, 3vw, 32px);
  z-index: 1000;

  width: min(1200px, 92%);
  margin: 0 auto;

  padding: clamp(10px, 2vw, 14px) clamp(14px, 4vw, 22px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);

  border-radius: clamp(14px, 2vw, 18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Logo */
.header-brand img {
  height: clamp(30px, 5vw, 38px);
  display: block;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;

  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #2b2b2b;
}

/* Menú desktop */
.header-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 32px);
}

.header-nav {
  display: flex;
  gap: clamp(14px, 3vw, 22px);
}

.header-nav a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: clamp(14px, 2.5vw, 15px);
  font-weight: 500;
  white-space: nowrap;
}

.header-nav a:hover {
  color: #e53935;
}

/* CTA */
.btn-join {
  padding: clamp(6px, 1.5vw, 8px) clamp(14px, 3vw, 18px);
  background: #e53935;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: clamp(13px, 2.5vw, 14px);
  font-weight: 600;
}

.btn-join:hover {
  background: #c62828;
}

/* =============== MOBILE =============== */
@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
    margin-left: 16px; /* separación REAL del logo */
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);

    width: min(420px, 90%);
    flex-direction: column;
    gap: 18px;

    padding: 22px 0;

    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

    display: none;
  }

  .header-menu.active {
    display: flex;
  }

  .header-nav {
    flex-direction: column;
    gap: 14px;
  }
}
.contact-page {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #e53935;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 42px;
  margin-bottom: 16px;
}

.contact-description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-form-container {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e53935;
}
.contact-info{
  text-align: start;
}
.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #e53935;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.form-submit:hover {
  background: #c62828;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info{
    text-align: center;
  }
}
