:root {
  --bg: #f2f4f3;
  --card-bg: rgba(255, 255, 255, 0.65);
  --blur: blur(20px);
  --green: #38c59b;
  --text: #1f2933;
  --muted: #3e3e3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #e9f3ef, var(--bg));
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

b{
      font-weight: 600;
}

.header {
  display: flex;
  justify-content: center;   /* 👈 CENTRA HORIZONTAL */
  align-items: center;
  padding-top: 50px;
  padding-bottom: 0px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0px 25px 40px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 0.9;
}

.hero h1 b{
  font-weight: 900;
}

.hero h1 span {
  color: var(--green);
  font-weight: 900;
}

.hero .serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text);
}

.subtitle {
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 1.3rem;
  color: var(--muted);
  font-weight: 300;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 20px 40px rgba(56, 197, 155, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(56, 197, 155, 0.45);
}

/* Cards */
.cards {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card-bg);
  backdrop-filter: var(--blur);
  border-radius: 24px;
  padding: 28px;
  font-size: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .hero {
    padding-top: 20px;
  }
  .hero h1{
    font-size: 2.5rem;
  }

   .subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
    color: var(--muted);
  }


  .cards {
    margin-top: 60px;
  }
}

/* 🌈 Fondo animado espiritual / calmado */
body {
  background-image: radial-gradient(circle, #e6f1f6, #d1ebf3, #bae6ee, #a3e0e6, #8cdbdb);
  background-size: 100% 100%;
  animation: gradientFlow 25s ease infinite;
}




.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 42px;
  border-radius: 999px;

  /* ✅ TU VERDE ORIGINAL, SIN TOCAR */
  background: linear-gradient(
    135deg,
    #6fc7ab,
    #468e77
  );

  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  font-family: "Montserrat", sans-serif;

  cursor: pointer;
  text-decoration: none;

  /* Escudo visual */
  isolation: isolate;

  box-shadow:
    0 12px 30px rgba(99, 191, 162, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);

  transition: all 0.25s ease;
}

/* 👇 HALO BLANCO REAL, SIN CONTAMINAR COLOR */
.cta-button::after {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: inherit;

  border: 15px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

/* Hover */
.cta-button:hover {
  transform: translateY(-10px);
  box-shadow:
    0 16px 36px rgba(99, 191, 162, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Active */
.cta-button:active {
  transform: translateY(0);
  box-shadow:
    0 8px 18px rgba(99, 191, 162, 0.3),
    inset 0 3px 6px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .cta-button {
    width: 90vw;              /* 90% del ancho de la pantalla */
    max-width: 90%;
    padding: 18px 20px;       /* menos padding horizontal */
    font-size: 22px;          /* tamaño cómodo en móvil */
    text-align: center;
    white-space: nowrap;      /* 🚫 NO saltos de línea */
  }

  .cta-button::after {
    inset: -12px;             /* halo proporcional en móvil */
    border-width: 12px;
  }

 



}



