/* ================================================== */
/*                    FUENTES                         */
/* ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

:root {
  --brand-1: #a347ff;
  --brand-2: #4facfe;
  --brand-3: #fa71cd;
  --dark-1: #0a0120;
  --dark-2: #140330;
  --dark-3: #1c1340;
  --white: #ffffff;
}

/* ================================================== */
/*                 FONDO GLOBAL PREMIUM               */
/* ================================================== */

.esencia-overlay{
  padding-top: 20px;
}
.hero-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-container img {
  max-height: 480px;
  width: auto;
  display: block;
  margin: 0 auto;
  transform: translateY(-10px); /* ajusta fino */
}

.hero-container h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-container p {
  padding-bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (min-width: 992px) {
  .hero-container .col-lg-6:first-child {
    padding-right: 60px;
  }
}

body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  color: var(--white);

  background: linear-gradient(
    90deg,
    #182c63 0%,
    #243d86 40%,
    #2f5ab3 75%,
    #3f82c9 100%
  );
  background-attachment: fixed;
}

/* Glow decorativo */

body::before {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(163,71,255,0.25), transparent 70%);
  top: -200px;
  left: -200px;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79,109,255,0.25), transparent 70%);
  bottom: -200px;
  right: -200px;
  z-index: -1;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
}

/* ================================================== */
/*                    HERO                            */
/* ================================================== */

.hero-section {
  min-height: 105vh;
  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
}

.section-inner {
  max-width: 1300px;
  margin: auto;
  padding: 120px 0px;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255,255,255,0.85);
}

/* BOTONES PREMIUM */

.hero-btn,
.btn-primary {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(163,71,255,0.5);
}

/* ================================================== */
/*                    ESENCIA                         */
/* ================================================== */

.esencia-section {
  padding: 120px 0;
  background: transparen;
}

.esencia-card {
  background: linear-gradient(145deg, rgba(25, 18, 60, 0.95), rgba(35, 25, 80, 0.95));
  border: 1px solid rgba(157, 78, 221, 0.25);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.esencia-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(157, 78, 221, 0.35);
  border-color: rgba(157, 78, 221, 0.6);
}
.esencia-card h5 {
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.esencia-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.esencia-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(157,78,221,0.15), transparent 70%);
  top: -50px;
  right: -50px;
}
/* ================================================== */
/*                    ABOUT                           */
/* ================================================== */

.about-section {
  padding: 140px 0;
  background: transparent;
}

.about-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.about-text {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

/* ================================================== */
/*              SERVICIOS ESTILO NOAH                 */
/* ================================================== */

.servicios-section {
  padding: 120px 0;
  background: transparent;
}

.titulo-noah {
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Marco gradiente */

.card-noah {
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  transition: 0.4s ease;
}

/* Interior */

.card-noah-inner {
  background: #1a0f2e;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  color: #cfd3ff;
  height: 100%;
  transition: 0.4s ease;
}

.card-noah:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(163,71,255,0.4);
}

.card-noah-inner h5 {
  color: white;
  margin: 15px 0;
  font-weight: 600;
}

.icon-noah {
  font-size: 2rem;
  color: var(--brand-3);
  margin-bottom: 15px;
}

/* Botón */

.btn-noah {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.btn-noah:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(163,71,255,0.5);
}

/* ================================================== */
/*              MARCAS PREMIUM                        */
/* ================================================== */

.marcas-section {
  padding: 140px 0;
  background: transparent;
}

.marcas-container {
  max-width: 1100px;
  margin: auto;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 80px 60px;
}

.marcas-title {
  text-align: center;
  color: white;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 70px;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.marca-item img {
  max-width: 120px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.marca-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* ================================================== */
/*              WHY CHOOSE                            */
/* ================================================== */

.why-choose-section {
  padding: 140px 0;
  background: transparent;
}

.progress-bar-custom {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-3));
  border-radius: 50px;
}

/* ================================================== */
/*                    CONTACTO                        */
/* ================================================== */

.contacto-section {
  padding: 120px 0;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}

.contact-card {
  max-width: 700px;
  margin: auto;
  padding: 50px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ================================================== */
/*                    RESPONSIVE                      */
/* ================================================== */

@media (max-width: 992px) {
  .section-inner {
    padding: 80px 20px;
  }

  .marcas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* ================= NAVBAR NOAH STYLE ================= */

.navbar-noah {
  background: #050015;
  padding: 18px 0;
  transition: 0.4s ease;
  z-index: 1000;
}

/* Efecto blur cuando haces scroll */
.navbar-noah.scrolled {
  background: rgba(5, 0, 21, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* LOGO */
.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.logo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #c471f5, #fa71cd);
  border-radius: 50%;
  margin-right: 8px;
}

/* LINKS */

.nav-link {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: white;
}

/* Link activo estilo pill */

.active-link {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  padding: 6px 18px;
  border-radius: 30px;
  color: white !important;
}

/* BOTÓN CTA */

.btn-nav-cta {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.btn-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(163,71,255,0.4);
  color: white;
}

/* MOBILE */

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}



/* ================= FRANJA MÉTRICAS AZUL-VIOLETA ================= */

.metrics-bar {
  padding: 70px 0;
  background: linear-gradient(
    90deg,
    #140330 0%,
    #1f0b45 40%,
    #2b1b6d 70%,
    #4F6DFF 100%
  );
  position: relative;
  overflow: hidden;
}

/* Glow azul elegante */
.metrics-bar::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79,109,255,0.25), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.metric-item {
  position: relative;
}

/* Línea separadora vertical */
.metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.15);
}

.metric-item h3 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.metric-item p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* Responsive */

@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= GROWTH PREMIUM ADVANCED ================= */

.growth-premium {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #0B1430 0%,
    #162454 40%,
    #2F5BFF 100%
  );
}

/* Parallax glow */
.growth-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,168,255,0.25), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

/* Container */
.growth-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.growth-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: white;
}

/* Glass card */
.growth-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 70px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Stats */
.growth-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.growth-item {
  text-align: center;
  transition: 0.4s ease;
}

.growth-item:hover {
  transform: translateY(-10px);
}

.growth-item h3 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2DA8FF, #4F6DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.4s ease;
}

.growth-item:hover h3 {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(45,168,255,0.6));
}

.growth-item p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.85;
  color: white;
}

.growth-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .growth-stats {
    flex-direction: column;
    gap: 40px;
  }
  .growth-divider {
    display: none;
  }
}



/* ================= ULTRA GROWTH ================= */

.growth-ultra {
  position: relative;
  padding: 160px 0;
  background: linear-gradient(
    135deg,
    #0B1430 0%,
    #162454 50%,
    #2F5BFF 100%
  );
}

/* Particles layer */
#particles-growth {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Container */
.growth-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.growth-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 80px;
  color: white;
}

/* Glass card */
.growth-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 80px 50px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transition: 0.4s ease;
}

.growth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 120px rgba(45,168,255,0.35);
}

.growth-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.growth-item {
  transition: 0.4s ease;
}

.growth-item:hover {
  transform: scale(1.05);
}

/* Neon numbers */
.neon {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2DA8FF, #4F6DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 10px rgba(45,168,255,0.6),
    0 0 20px rgba(79,109,255,0.4);
  transition: 0.3s ease;
}

.growth-item:hover .neon {
  text-shadow:
    0 0 20px rgba(45,168,255,0.9),
    0 0 40px rgba(79,109,255,0.8);
}

.growth-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: white;
  opacity: 0.85;
}

.growth-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.2);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .growth-stats {
    flex-direction: column;
    gap: 50px;
  }
  .growth-divider {
    display: none;
  }
}



/* ================= GROWTH PREMIUM ADVANCED ================= */

.growth-premium {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(
    135deg,
    #0B1430 0%,
    #162454 40%,
    #2F5BFF 100%
  );
}

/* Parallax glow */
.growth-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,168,255,0.25), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translateY(0px); }
  to { transform: translateY(40px); }
}

/* Container */
.growth-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.growth-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 70px;
  color: white;
}

/* Glass card */
.growth-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 70px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Stats */
.growth-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.growth-item {
  text-align: center;
  transition: 0.4s ease;
}

.growth-item:hover {
  transform: translateY(-10px);
}

.growth-item h3 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #2DA8FF, #4F6DFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.4s ease;
}

.growth-item:hover h3 {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(45,168,255,0.6));
}

.growth-item p {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.85;
  color: white;
}

.growth-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .growth-stats {
    flex-direction: column;
    gap: 40px;
  }
  .growth-divider {
    display: none;
  }
}



/* ================= REVIEWS PREMIUM ================= */

.reviews-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #0a0220 0%, #140330 100%);
  text-align: center;
}

.reviews-title {
  color: #ff5fd2;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-subtitle {
  color: #ffffff;
  margin-bottom: 60px;
  opacity: 0.8;
}

.reviews-container {
  max-width: 1100px;
  margin: auto;
}

/* Card */

.review-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  transition: 0.4s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,95,210,0.3);
}

/* Avatar */

.review-avatar {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a347ff, #ff5fd2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Texto */

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Pagination dots */

.swiper-pagination-bullet {
  background: #ff5fd2;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #a347ff;
  opacity: 1;
}






/* ================= TESTIMONIALS HORIZONTAL ================= */

.testimonials-section {
  padding: 120px 0;
  background: transparent; /* 🔥 Fondo totalmente transparente */
  overflow: hidden;
  position: relative;
}

.testimonials-title {
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonials-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.75);
  margin-bottom: 60px;
}

/* SLIDER */

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollSlider 25s linear infinite;
}

/* CARD */

.testimonial-card {
  min-width: 350px;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06); /* Glass sutil */
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(79,109,255,0.35);
}

/* Avatar */

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4F6DFF, #2DA8FF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Texto */

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

/* Animación horizontal */

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= WHY CHOOSE PRO ================= */

.why-choose-pro {
  padding: 140px 0;
  background: linear-gradient(135deg, #0a0220 0%, #140330 60%, #1b0538 100%);
  color: white;
}

/* Título pequeño */

.why-small-title {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-weight: 600;
}

/* Progress */

.progress-pro-item {
  margin-bottom: 25px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.progress-bar-pro {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
}

.progress-fill-pro {
  height: 100%;
  background: linear-gradient(90deg, #c471f5, #fa71cd);
  border-radius: 50px;
}

/* Card derecha */

.clients-pro-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.clients-pro-card h4 {
  margin-bottom: 30px;
  font-weight: 600;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.clients-logos img {
  max-width: 100%;
  filter: grayscale(100%) brightness(0.9);
  transition: 0.3s ease;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.clients-count {
  color: #fa71cd;
  font-weight: 600;
}

/* Texto inferior */

.why-bottom-text {
  text-align: center;
  margin-top: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  opacity: 0.8;
}

.why-bottom-text span {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

.why-bottom-text small {
  opacity: 0.6;
}










/* ================= VENTAJAS NOAH ================= */

.ventajas-noah {
  padding: 140px 0;
  background: transparent; /* 🔥 SIN fondo violeta */
  position: relative;
}

.ventajas-title {
  text-align: center;
  color: white;
  font-weight: 700;
  margin-bottom: 90px;
  letter-spacing: 1px;
}

/* LAYOUT PRINCIPAL */

.ventajas-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* GRID IZQUIERDO */

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card-noah {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  padding: 45px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.card-noah:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.span-2 {
  grid-column: span 2;
}

.card-noah.highlight {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

/* CARD CONTACTO DERECHA */

.contact-noah {
  background: linear-gradient(135deg, #a347ff, #fa71cd);
  padding: 60px 45px;
  border-radius: 25px;
  text-align: center;
  color: white;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  position: sticky;
  top: 120px;
}

.contact-noah .icon {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-noah .phone {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0;
}

.btn-noah-pro {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  border-radius: 30px;
  background: white;
  color: #6a11cb;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-noah-pro:hover {
  transform: translateY(-4px);
}






/* ================= SERVICIOS PREMIUM ================= */

.servicios-noah {
  padding: 120px 0;
  background: transparent;
  position: relative;
}

.titulo-noah {
  font-weight: 700;
  font-size: 2.2rem;
  color: #ffffff;
}

.subtitulo-noah {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 15px auto 0;
}

/* CARD */

.card-noah {
  padding: 45px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.card-noah:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(79,109,255,0.35);
  border: 1px solid rgba(79,109,255,0.4);
}

/* ICON */

.icon-noah {
  font-size: 2.2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #4F6DFF, #2DA8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */

.card-noah h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-noah p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BOTÓN */

.btn-noah {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  background: linear-gradient(135deg, #4F6DFF, #2DA8FF);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-noah:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(79,109,255,0.4);
}

/* ================= BENEFICIOS PREMIUM ================= */

.beneficios-noah {
  padding: 120px 0;
  background: transparent;
}

.titulo-beneficios {
  font-weight: 700;
  color: #ffffff;
  font-size: 2.2rem;
}

/* CARD */

.beneficio-card {
  padding: 45px 30px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
  text-align: center;
  cursor: pointer;
  height: 100%;
}



/* ================= NAVBAR PROFESIONAL ================= */

.navbar {
  background: #0E1A3A !important;
  padding: 18px 0;
}

/* Contenedor del logo */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* Logo real */
.navbar-brand img {
  height: 600px;     /* tamaño ideal tipo Noah */
  width: auto;
  object-fit: contain;
}
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.navbar {
  min-height: 90px;
}

/* ================= PARTICLES ================= */

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    #0E1A3A 0%,
    #1F2B6B 60%,
    #2DA8FF 100%
  );
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

/* ================= NAVBAR ESTILO NOAH ================= */

.navbar {
  background: rgba(10, 20, 50, 0.92);
  backdrop-filter: blur(12px);
  padding: 18px 0;
  min-height: 80px;
}

.navbar-brand img {
  height: 62px;      /* 🔥 tamaño perfecto tipo Noah */
  width: auto;
  object-fit: contain;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  margin-left: 22px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #4facfe !important;
}

/* Botón premium */

.btn-noah-nav {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  color: white;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-noah-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79,109,255,0.4);
  color: white;
}

/* ================= HERO ================= */
.carousel {
  height: 89vh;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 100%;
}


.carousel-caption-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.carousel-caption-wrapper h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: white;
  font-size: 2.8rem;
  line-height: 1.2;
}

/* ============================= */
/* HERO MOBILE AJUSTE FINO */
/* ============================= */

@media (max-width: 768px) {

  /* 1️⃣ Ajustar altura del hero en móvil */
  .carousel {
    height: 91vh; /* un poco más alto que desktop */
  }

  /* 2️⃣ Bajar el texto un poco */
  .hero-container {
    padding-top: 5px;
  }

  /* 3️⃣ Ajustar tamaño del título */
  .hero-container h1 {
    padding-top: 100px;
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .hero-container p {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* 4️⃣ Subir un poco la imagen */
  .hero-container img {
    transform: translateY(-10px);
    max-height: 300px;
  }

}


.gradient-text {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  border: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(79,109,255,0.45);
}

/* ================= COHETE ================= */

#cohete {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  animation: despegar 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes despegar {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-140px) rotate(8deg); }
  100% { transform: translateX(-50%) translateY(0); }
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  padding-top: 80px; /* 🔥 Compensa navbar fixed */
}

/* ================= PARTICLES ================= */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    #0E1A3A 0%,
    #1F2B6B 60%,
    #2DA8FF 100%
  );
  z-index: -1;
}

/* ================= NAVBAR ================= */

.navbar {
  background: rgba(10, 20, 50, 0.92);
  backdrop-filter: blur(12px);
  min-height: 80px;
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  margin-left: 20px;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #4facfe !important;
}

/* Botón premium */

.btn-noah-nav {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  color: white;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-noah-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79,109,255,0.4);
  color: white;
}

/* ================= CAROUSEL PREMIUM FUNCIONAL ================= */

#carouselHeader {
  position: relative;
  z-index: 2;
}

/* Altura correcta sin romper móviles */
.carousel-item {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

/* Contenedor interno */
.carousel-caption-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
}

/* Título principal */
.carousel-caption-wrapper h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  color: white;
}

.carousel-caption-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

/* Texto degradado */
.gradient-text {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Texto secundario */
.carousel-caption-wrapper p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

/* Botón premium */
.btn-gradient {
  background: linear-gradient(90deg, #a347ff, #4facfe);
  color: white;
  border-radius: 40px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

.btn-gradient:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(79,109,255,0.5);
}

/* Flechas más visibles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(1);
  width: 35px;
  height: 35px;
}

/* Transición suave tipo Noah */
.carousel-fade .carousel-item {
  transition: opacity 0.8s ease-in-out;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .carousel-caption-wrapper h1 {
    font-size: 2.2rem;
  }

  .carousel-caption-wrapper {
    text-align: center;
  }

  .carousel-item {
    min-height: 90vh;
  }

}

@media (max-width: 576px) {

  .carousel-caption-wrapper h1 {
    font-size: 1.8rem;
  }

  .carousel-caption-wrapper p {
    font-size: 0.95rem;
  }

}

/* ================= COHETE ================= */

#cohete {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  animation: despegar 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes despegar {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-130px) rotate(8deg); }
  100% { transform: translateX(-50%) translateY(0); }
}

.carousel-item.active h1,
.carousel-item.active p,
.carousel-item.active a {
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================= FRANJA CLIENTES ESTILO NOAH ================= */

.clients-strip {
background: linear-gradient(90deg, #9f7aea, #805ad5);
  padding: 25px 0;
  overflow: hidden;
  position: relative;
}

.clients-container {
  width: 100%;
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: scrollClients 30s linear infinite;
  transform: translateX(50%);
}

.clients-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0); /* los vuelve negros como Noah */
  opacity: 0.9;
  transition: 0.3s ease;
}

.clients-track img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Animación infinita */
@keyframes scrollClients {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-30%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .clients-track {
    gap: 50px;
  }

  .clients-track img {
    height: 40px;
  }
}


/* ================= ULTRA PREMIUM PRICING ================= */

.pricing-section {
  padding: 180px 100px;
  position: relative;
  overflow: hidden;
}

/* Fondo sutil profesional */

.pricing-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(163,71,255,0.15), transparent 70%);
  top: -300px;
  left: -200px;
  z-index: 0;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1150px;
  margin: 0 auto;
}
.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1150px;
  margin: 0 auto;
}

/* ================= CARD ================= */

.pricing-card {
  position: relative;
  background: rgba(18, 10, 50, 0.85);
  border-radius: 35px;
  padding: 70px 55px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}

/* Luz dinámica superior */

.pricing-card::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(77,140,255,0.25), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Hover profesional 3D */

.pricing-card:hover {
  transform: rotateX(6deg) rotateY(-6deg) translateY(-20px);
  box-shadow: 0 60px 120px rgba(0,0,0,0.6);
  border: 1px solid rgba(163,71,255,0.6);
}

/* ================= TITULOS ================= */

.pricing-card h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 35px;
}

/* ================= PRECIO ================= */

.price {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg,#ff3d3d,#ff7b7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
}

/* ================= LISTA ================= */

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.pricing-card ul li {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.pricing-card ul li::before {
  content: "✔";
  color: #a347ff;
  margin-right: 10px;
}

/* ================= BOTON ================= */

.pricing-card button {
  background: linear-gradient(90deg,#a347ff,#4facfe);
  border: none;
  padding: 18px 60px;
  border-radius: 60px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-card button:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(163,71,255,0.6);
}

/* ================= PLAN DESTACADO CENTRAL ================= */

.highlight {
  transform: scale(1.12);
  border: 2px solid #a347ff;
  box-shadow: 0 60px 120px rgba(163,71,255,0.4);
}

.highlight::after {
  content: "Más Popular";
  position: absolute;
  top: 30px;
  right: -60px;
  background: linear-gradient(90deg,#a347ff,#4facfe);
  color: white;
  padding: 8px 80px;
  font-size: 0.85rem;
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1500px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}

.benefits-section {
  padding: 120px 40px;
  background: transparent;
  text-align: center;
}

.benefits-title {
  color: #ff66c4;
  font-size: 2rem;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255,255,255,0.04);
  padding: 40px 30px;
  border-radius: 20px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid #a347ff;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 18px;
  background: linear-gradient(135deg,#a347ff,#4facfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 10px 30px rgba(163,71,255,0.5);
}

.benefit-card h4 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.benefit-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.benefit-card {
  border: 1px solid transparent;
  background: 
    linear-gradient(#140027, #140027) padding-box,
    linear-gradient(135deg,#a347ff,#4facfe) border-box;
  border-radius: 18px;
  padding: 35px 30px;
  margin-bottom: 35px;
}


/* ================= APP SHOWCASE ================= */

.app-showcase {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.app-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.app-image {
  width: 100%;
  max-width: 1100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
}

/* efecto flotante suave */
.app-image:hover {
  transform: translateY(-10px) scale(1.02);
}


.app-showcase::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(163,71,255,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.app-image {
  position: relative;
  z-index: 2;
}




/* ================= FOOTER PRO ================= */

.main-footer {
  background: linear-gradient(180deg,#0e1325,#0b0f1f);
  padding-top: 100px;
  color: white;
  position: relative;
}

/* Contenedor principal */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  padding: 0 60px;
}

/* Columna izquierda */
.footer-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border-radius: 40px;
  background: linear-gradient(90deg,#a347ff,#4facfe);
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.4s;
}

.footer-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(163,71,255,0.5);
}

/* MAPA */
.footer-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  border: none;
  filter: grayscale(20%);
}

/* Imagen */
.footer-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* FOOTER BOTTOM */
.footer-bottom {
  margin-top: 80px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-social h4 {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(90deg,#a347ff,#4facfe);
  transform: translateY(-5px);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-map iframe {
    height: 250px;
  }
}


#sobre {
  scroll-margin-top: 110px;
}






#contacto {
  scroll-margin-top: 120px;
}




/* ================= PREMIUM PRICING ================= */

.pricing-section {
  padding: 80px 20px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Card base */
.pricing-card {
  background: linear-gradient(180deg, #0f0c29, #1b1445);
  padding: 40px 30px;
  border-radius: 24px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Título */
.pricing-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Subtítulo */
.pricing-card .subtitle {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Precio protagonista */
.price {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ff4d6d;
}

/* Lista más limpia */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
  opacity: 0.9;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #9d4edd;
  font-size: 13px;
}

/* Botón premium */
.btn-gradient {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(45deg, #9d4edd, #5a189a);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(157,78,221,0.4);
}

.highlight {
  border: 1px solid #9d4edd;
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.25);

  transform: none;        /* 🔥 elimina escalado */
  padding: 40px 30px;     /* 🔥 mismo padding que las demás */
  margin: 0;              /* 🔥 asegura mismo espacio */
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {

  .pricing-section {
    padding: 70px 18px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .price {
    font-size: 32px;
  }

  .pricing-card ul li {
    font-size: 13px;
  }

}

@media (max-width: 768px) {
  body::before,
  body::after {
    display: none;
  }

  body {
    background-attachment: scroll;
  }
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600000;

  border-radius: 40px;
  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #9d4edd, #5a189a);
  transition: all 0.3s ease;

  box-shadow: 0 6px 18px rgba(157, 78, 221, 0.35);

  width: auto;              /* 🔥 importante */
  max-width: 2800px;         /* 🔥 simetría */
}






.pricing-section {
  padding: 80px 20px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  max-width: 1200px;   /* 🔥 clave */
  margin: 0 auto;      /* 🔥 centra el bloque */
}


@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}



.pricing-card {
  color: #ffffff; /* 🔥 todo blanco */
}

.pricing-card h3 {
  color: #ffffff;
}

.pricing-card .subtitle {
  color: #afa8a8;
  opacity: 1; /* 🔥 elimina el gris */
}

.pricing-card ul li {
  color: #ffffff;
  opacity: 1; /* 🔥 elimina transparencia */
}
/* ================= BASE DESKTOP ================= */

.ventajas-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.span-2 {
  grid-column: span 2;
}

.card-noah {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
}

.contact-noah {
  padding: 40px 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #5a189a, #9d4edd);
}

@media (max-width: 992px) {

  .ventajas-layout {
    grid-template-columns: 1fr; /* 🔥 pasa a columna */
  }

  .ventajas-grid {
    grid-template-columns: 1fr; /* 🔥 cards en una sola columna */
  }

  .span-2 {
    grid-column: span 1; /* 🔥 elimina el doble ancho */
  }

  .contact-noah {
    margin-top: 20px;
  }

}

@media (max-width: 768px) {

  .ventajas-noah {
    padding: 60px 20px;
  }

  .ventajas-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .card-noah,
  .contact-noah {
    padding: 25px;
  }

}





html, body {
  overflow-x: hidden;
  width: 100%;
}


.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: #ff0000;
}


.marca-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.marca-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMACIÓN PREMIUM VENTAJAS ===== */

.card-noah,
.contact-noah {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(60px) scale(0.95);
  transition: 
    opacity 0.8s cubic-bezier(.2,.8,.2,1),
    transform 0.8s cubic-bezier(.2,.8,.2,1),
    filter 0.8s ease;
}

/* Direcciones */

.from-left { transform: translateX(-80px) scale(0.95); }
.from-right { transform: translateX(80px) scale(0.95); }
.from-bottom { transform: translateY(80px) scale(0.95); }
.from-top { transform: translateY(-80px) scale(0.95); }

/* Estado final */

.show-animate {
  opacity: 1;
  filter: blur(0);
  transform: translate(0,0) scale(1);
}

/* Micro bounce suave */

@keyframes smoothBounce {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(0,-6px) scale(1.02); }
  100% { transform: translate(0,0) scale(1); }
}

.show-animate:hover {
  animation: smoothBounce 0.6s ease;
}

/* Glow profesional */

.card-noah.show-animate,
.contact-noah.show-animate {
  box-shadow: 0 20px 50px rgba(120, 0, 255, 0.25);
}

/* ===== PRICING SCROLL ANIMATION ===== */

.pricing-card {
  opacity: 0;
  transition: 
    opacity 0.8s cubic-bezier(.2,.8,.2,1),
    transform 0.8s cubic-bezier(.2,.8,.2,1);
}

/* Alternar lado automáticamente */
.pricing-card:nth-child(odd) {
  transform: translateX(-120px);
}

.pricing-card:nth-child(even) {
  transform: translateX(120px);
}

/* Cuando entra en viewport */
.pricing-card.show-card {
  opacity: 1;
  transform: translateX(0);
}