/* ===== style.css ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0b;
  color: #f0ece6;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.container {
  max-width: 1200px;
  width: 100%;
  background: #111111;
  border-radius: 2.5rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9), 0 0 0 1px #2a1a1a;
  overflow: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #2a1a1a;
  background: #0f0f0f;
}

.logo {
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  color: #f0ece6;
}
.logo i {
  color: #b91c1c;
  margin-right: 8px;
}
.logo span {
  color: #b91c1c;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #c0b7ae;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #e63946;
}
.btn-cta-nav {
  background: #b91c1c;
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-cta-nav:hover {
  background: #8b1515 !important;
  color: #fff !important;
}

/* ===== HERO ===== */
.hero {
  padding: 3.5rem 2.5rem 3rem 2.5rem;
  background: radial-gradient(circle at 70% 20%, #1e1010, #0b0b0b 80%);
  border-bottom: 1px solid #2a1a1a;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text .tag {
  display: inline-block;
  background: #2a1212;
  color: #e63946;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  border: 1px solid #471c1c;
  margin-bottom: 1.2rem;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-text h1 strong {
  color: #b91c1c;
  font-weight: 800;
}
.hero-text h1 .highlight {
  background: linear-gradient(145deg, #b91c1c, #d44b4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.2rem;
  color: #c9bfb5;
  max-width: 550px;
  margin-bottom: 2rem;
}

.hero-text p i {
  color: #b91c1c;
  margin-right: 6px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: #b91c1c;
  color: #fff;
  border: none;
  padding: 0.9rem 2.8rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 18px -6px #4a0f0f;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover {
  background: #8f1515;
  transform: scale(1.02);
  box-shadow: 0 12px 24px -8px #5e1313;
}

.btn-secondary {
  background: transparent;
  color: #e0d6cc;
  border: 1.5px solid #3d2828;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: #b91c1c;
  color: #fff;
  background: #1f0f0f;
}

.hero-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image i {
  font-size: 12rem;
  color: #2a1818;
  text-shadow: 0 0 40px #3f1212;
  transition: 0.2s;
}
.hero-image i:hover {
  color: #4a1a1a;
  text-shadow: 0 0 70px #721818;
}

/* ===== QUÉ ES ===== */
.que-es {
  padding: 3.5rem 2.5rem;
  background: #0e0e0e;
  border-bottom: 1px solid #221515;
}

.que-es-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.que-es h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
}
.que-es h2 strong {
  color: #b91c1c;
}

.que-es-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.que-es-texto {
  flex: 2 1 400px;
}

.que-es-texto p {
  font-size: 1.1rem;
  color: #d0c6bc;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.que-es-texto p i {
  margin-right: 10px;
  color: #b91c1c;
  width: 20px;
}
.que-es-texto p strong {
  color: #f0ece6;
  font-weight: 700;
}

.beneficios-rapidos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.beneficios-rapidos div {
  background: #1a1212;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border-left: 3px solid #b91c1c;
  font-weight: 500;
  color: #e0d6cc;
}
.beneficios-rapidos div i {
  color: #b91c1c;
  margin-right: 10px;
}

.que-es-icono {
  flex: 1 1 200px;
  text-align: center;
  background: #171111;
  padding: 2.5rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid #2d1c1c;
}
.que-es-icono i {
  font-size: 5rem;
  color: #b91c1c;
}
.que-es-icono p {
  font-size: 2rem;
  font-weight: 800;
  color: #f0ece6;
  margin-top: 0.5rem;
}
.que-es-icono p span {
  font-size: 1rem;
  font-weight: 400;
  color: #b0a69b;
  display: block;
}

.fe-nota {
  font-size: 0.9rem !important;
  color: #8f8277 !important;
  margin-top: 1.5rem !important;
  padding: 1rem;
  background: #1a1212;
  border-radius: 12px;
  border-left: 3px solid #b91c1c;
}
.fe-nota i {
  color: #b91c1c !important;
  margin-right: 8px;
}
.fe-nota strong {
  color: #e0d6cc !important;
}

/* ===== FEATURES / RITUALES ===== */
.features {
  padding: 3.5rem 2.5rem;
  background: #0b0b0b;
  border-bottom: 1px solid #221515;
}

.features h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
}
.features h2 strong {
  color: #b91c1c;
}
.features .sub {
  text-align: center;
  color: #b0a69b;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: #171111;
  padding: 2rem 1.8rem;
  border-radius: 2rem;
  flex: 1 1 200px;
  max-width: 280px;
  border: 1px solid #2d1c1c;
  transition: 0.25s ease;
  text-align: center;
}
.card:hover {
  border-color: #8f2b2b;
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -16px #1f0b0b;
}
.card i {
  font-size: 2.8rem;
  color: #b91c1c;
  margin-bottom: 1.2rem;
}
.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #f0e8df;
}
.card h3 strong {
  color: #b91c1c;
}
.card p {
  color: #b7aaa0;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.card-cta {
  color: #b91c1c;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-cta:hover {
  color: #e63946;
  gap: 12px;
}

/* ===== TESTIMONIOS CARRUSEL ===== */
.testimonios {
  padding: 3.5rem 2.5rem;
  background: #0e0e0e;
  border-bottom: 1px solid #221515;
  overflow: hidden;
}

.testimonios h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.testimonios h2 strong {
  color: #b91c1c;
}
.testimonios .sub {
  text-align: center;
  color: #b0a69b;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 50px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 0;
}

.testimonial-card {
  background: #171111;
  padding: 2rem 1.8rem;
  border-radius: 1.5rem;
  border: 1px solid #2d1c1c;
  flex-shrink: 0;
  transition: 0.2s;
}
.testimonial-card:hover {
  border-color: #8f2b2b;
}

.testimonial-card .stars {
  color: #f5b342;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.testimonial-card .stars i {
  margin-right: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #e0d6cc;
  margin-bottom: 1.2rem;
}
.testimonial-card blockquote i {
  color: #b91c1c;
  margin: 0 4px;
  font-size: 0.9rem;
}
.testimonial-card blockquote strong {
  color: #b91c1c;
}

.testimonial-card .autor {
  color: #b0a69b;
  font-size: 0.95rem;
}
.testimonial-card .autor i {
  color: #b91c1c;
  margin-right: 6px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2a1212;
  color: #f0ece6;
  border: 1px solid #3d2828;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.2s;
  z-index: 10;
}
.carousel-btn:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}
.prev {
  left: 5px;
}
.next {
  right: 5px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}
.carousel-indicators .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d2828;
  cursor: pointer;
  transition: 0.2s;
}
.carousel-indicators .dot.active {
  background: #b91c1c;
  width: 24px;
  border-radius: 6px;
}
.carousel-indicators .dot:hover {
  background: #b91c1c;
}

.testimonial-extra {
  text-align: center;
  margin-top: 2rem;
  color: #b0a69b;
}
.testimonial-extra i {
  color: #f5b342;
  margin: 0 3px;
}
.testimonial-extra span {
  display: inline-block;
  margin-left: 12px;
  font-weight: 500;
}

/* ===== CONTACTO ===== */
.contacto {
  padding: 3.5rem 2.5rem;
  background: #0f0b0b;
  border-bottom: 1px solid #2a1a1a;
}
.contacto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contacto-inner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contacto-inner h2 strong {
  color: #b91c1c;
}
.contacto-inner p {
  color: #c9bfb5;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.contacto-inner p i {
  color: #b91c1c;
  margin-right: 6px;
}
.contacto-inner p strong {
  color: #f0ece6;
}

.contacto-opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.btn-grande {
  padding: 1rem 3.5rem;
  font-size: 1.2rem;
  border-radius: 60px;
}

.nota {
  font-size: 0.95rem !important;
  color: #8f8277 !important;
  margin-top: 1.5rem !important;
}
.nota i {
  color: #b91c1c;
  margin: 0 4px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 2.5rem;
  background: #0a0a0a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid #1f1313;
}
.footer p {
  color: #a0988e;
  font-size: 0.95rem;
}
.footer strong {
  color: #b91c1c;
}
.foot-links a {
  color: #a0988e;
  text-decoration: none;
  margin: 0 8px;
  transition: 0.2s;
}
.foot-links a:hover {
  color: #e63946;
}
.foot-links i {
  color: #b91c1c;
  margin-right: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .testimonial-card {
    min-width: calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .hero {
    padding: 2.5rem 1.5rem;
  }
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .hero-image i {
    font-size: 7rem;
  }
  .que-es {
    padding: 2.5rem 1.5rem;
  }
  .que-es h2 {
    font-size: 2rem;
  }
  .beneficios-rapidos {
    grid-template-columns: 1fr;
  }
  .features {
    padding: 2.5rem 1.5rem;
  }
  .testimonios {
    padding: 2.5rem 1.5rem;
  }
  .testimonial-card {
    min-width: calc(100% - 0px) !important;
    max-width: calc(100% - 0px) !important;
  }
  .carousel-container {
    padding: 0 40px;
  }
  .contacto-inner h2 {
    font-size: 2rem;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .btn-primary, .btn-secondary, .btn-grande {
    width: 100%;
    justify-content: center;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .contacto-opciones {
    flex-direction: column;
  }
}