/* ===========================
   ESTILO GENERAL
=========================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0d001a;
    color: #f5f5f5;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

p {
    font-size: 1.05rem;
    color: #e0e0e0;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    background: linear-gradient(to bottom right, #4b0082, #2e004f, #0d001a);
    text-align: center;
    padding: 120px 20px;
    color: white;
    background-image: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.15), transparent 70%);
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(212,175,55,0.08), transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #f8e9c4;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: #eaeaea;
}

.btn-cta {
    background-color: #d4af37;
    color: #1a0033;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

.btn-cta:hover {
    background-color: #f8dc6a;
    transform: scale(1.05);
}

/* ===========================
   SECCIONES GENERALES
=========================== */
section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2.3rem;
    color: #d4af37;
    margin-bottom: 25px;
}

h3 {
    color: #f0dba5;
    margin-bottom: 15px;
}

/* ===========================
   INTRODUCCIÓN
=========================== */
.intro {
    background-color: #1a0033;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 100px 30px;
}

.intro p {
    max-width: 850px;
    margin: 15px auto;
}

/* ===========================
   TIPOS DE LECTURAS
=========================== */
.types {
    background: radial-gradient(circle at center, #21003f, #0d001a);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.type:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(212,175,55,0.2);
}

/* ===========================
   PROCESO DE LECTURA
=========================== */
.process {
    background-color: #140027;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}

.step h4 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* ===========================
   POR QUÉ ELEGIR A MHONI
=========================== */
.why {
    background: linear-gradient(to bottom right, #1a0033, #0a0016);
}

.why-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.why-list li {
    margin: 18px 0;
    padding-left: 10px;
    border-left: 3px solid #d4af37;
}

/* ===========================
   TESTIMONIOS
=========================== */
.testimonial {
    background-color: #1a0033;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin: 40px auto 10px;
    max-width: 750px;
    line-height: 1.7;
    position: relative;
}

.testimonial blockquote::before {
    content: "“";
    font-size: 3rem;
    color: #d4af37;
    position: absolute;
    left: -20px;
    top: -20px;
}

.author {
    margin-top: 8px;
    color: #d4af37;
    font-weight: 500;
}

/* ===========================
   CTA FINAL
=========================== */
.cta-section {
    background: radial-gradient(circle at center, #2b004d, #0d001a);
    text-align: center;
    padding: 120px 30px;
}

.cta-section p {
    max-width: 600px;
    margin: 10px auto 30px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* ===========================
   FOOTER
=========================== */
footer {
    text-align: center;
    background-color: #0a0016;
    padding: 25px;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 12px 26px;
        font-size: 0.95rem;
    }
}
/* ===========================
   BOTÓN DESTACADO DORADO
=========================== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37, #ffcc33);
  color: #2b004d;
  font-weight: bold;
  padding: 16px 45px;
  border-radius: 40px;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
  transition: all 0.3s ease;
  animation: parpadeoBrillo 2s infinite ease-in-out;
}

@keyframes parpadeoBrillo {
  0% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 35px rgba(255, 204, 0, 0.9); transform: scale(1.05); }
  100% { box-shadow: 0 0 10px rgba(255, 204, 0, 0.4); transform: scale(1); }
}

.btn-cta:hover {
  transform: scale(1.08);
  background: linear-gradient(90deg, #ffcc33, #ffe066);
  box-shadow: 0 0 40px rgba(255, 204, 0, 1);
}
.boton-flotante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #d4af37, #b48e2c);
  color: #1b0e36;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 9999;
  animation: palpitar 1.8s infinite ease-in-out;
}

/* Efecto hover */
.boton-flotante:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
}

/* Animación de palpitación */
@keyframes palpitar {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
  }
}
