/* ================== RESET ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  font-family: 'Inter', system-ui, sans-serif;
  color: #2b2b2b;

  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;
}

/* ================== BACKGROUND ================== */
@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%;
  }
}

/* ================== NAVBAR ================== */
.center {
  width: 100%;
}

.navbar {
  max-width: 1200px;
  margin: 20px auto;
  padding: 14px 22px;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;

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

  position: relative;
  z-index: 20;

  box-shadow:
    0 12px 60px rgba(0, 0, 0, 0.25),
    0 6px 16px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(8px);
}

.logo img {
  height: 34px;
}

/* NAV LINKS */
.navbar nav {
  display: flex;
  gap: 18px;
}

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

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

/* BUTTON */
.navbar .btn-primary {
  padding: 12px 26px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}

/* 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;
}

/* ================== 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: 300px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;
}


.cards img {
  width: 150%;
  height: 150%;
  object-fit: cover;

  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.25));
}


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

.content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

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

.imagenlogo {
  width: 100%;
  margin-bottom: 12px;
}

/* ================== BUTTONS ================== */
.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease;
}

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

.btn-primary {
  background: #f07c6a;
  color: #fff;
}
.btn-primary {
  background: #e53935;
  color: #fff;
  border: 1px solid #ddd;
}

.small {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
/* ================== FEATURES ================== */
.features-box {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 20px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  max-width: 460px;
  margin: 0 auto;
}

.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;
  font-weight: 500;
}

.feature-item.stars {
  color: #e53935;
}
.btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: #e53935;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #2b2b2b;
  border: 1px solid #d0d0d0;
}
/* ================== 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,0.15);
}

.stats-stars .star {
  color: #e53935;
  font-size: 18px;
}
.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 */
}


/* ================== 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(231, 160, 160, 0.9),
    rgba(146, 94, 94, 0.35) 45%,
    rgba(138, 82, 82, 0.15) 70%
  );
  animation: floatUp linear infinite;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  body {
    animation: radialPulse 22s ease-in-out infinite;
    background-size: 180% 180%;
  }

  .navbar {
    margin: 12px;
    border-radius: 20px;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }
  .cards{
    justify-content: center;
  }
  .navbar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    flex-direction: column;
    background: rgba(255,255,255,0.96);
    border-radius: 18px;
    margin-top: 12px;
    padding: 14px 0;

    box-shadow:
      0 36px 100px rgba(0,0,0,0.65),
      0 14px 36px rgba(0,0,0,0.45);

    z-index: 10;
  }

  .navbar nav.active {
    display: flex;
  }

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

  .navbar > .btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 40px auto;
    text-align: center;
  }

  .cards img {
    width: 120%;
    height: auto;
    max-width: 350px;
  }

  .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;
  }
}
/* ================== FOOTER ================== */
.footer {
  margin-top: auto;
  padding: 60px 24px 28px;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 -20px 60px rgb(255, 255, 255);
}

.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: #d1d1d1;
  line-height: 1.6;
  max-width: 260px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
  text-align: center;
  font-size: 13px;
  color: #bebebe;
}

/* ================== 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;
  }
}
/* ================== FEATURES ================== */
.features-box {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 20px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  max-width: 460px;
  margin: 0 auto;
}

.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;
  font-weight: 500;
}

.feature-item.stars {
  color: #e53935;
}

/* ================== 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,0.15);
}

.stats-stars .star {
  color: #e53935;
  font-size: 18px;
}