/* ═══════════════════════════════════════════════════════
   CRIANZA 6 MESES — Brand Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ─── Brand Tokens ─── */
:root {
  --green-dark: #2c5f4d;
  --green-light: #a3c4b5;
  --terracotta: #d4896a;
  --cream: #f0d9cc;
  --bg: #fbf9f6;
  --text-body: #2c5f4d;
  --text-muted: #4a7a63;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --font-serif: Palatino, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════ */

/* Layout */
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-2 { padding: 0.5rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-4 { padding-top: 1rem; }
.pt-12 { padding-top: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.shrink-0 { flex-shrink: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.absolute { position: absolute; }
.pointer-events-none { pointer-events: none; }
.-left-8 { left: -2rem; }
.-top-8 { top: -2rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-48 { height: 12rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t-1_5 { border-top-width: 1.5px; }
.border-dotted { border-style: dotted; }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.shadow-2xl { box-shadow: 0 20px 50px rgba(0,0,0,0.18); }
.rotate-45 { transform: rotate(45deg); }
.opacity-10 { opacity: 0.1; }
.backdrop-blur { backdrop-filter: blur(8px); }
.bg-white { background-color: #fff; }
.bg-white\/10 { background-color: rgba(255,255,255,0.10); }
.bg-white\/15 { background-color: rgba(255,255,255,0.15); }

/* Font and text */
.font-sans { font-family: var(--font-sans); }
.font-serif { font-family: var(--font-serif); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.line-through { text-decoration: line-through; }
.whitespace-nowrap { white-space: nowrap; }
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255,255,255,0.60); }
.text-white\/70 { color: rgba(255,255,255,0.70); }
.text-white\/80 { color: rgba(255,255,255,0.80); }
.text-white\/85 { color: rgba(255,255,255,0.85); }
.text-white\/90 { color: rgba(255,255,255,0.90); }

/* Diamond separators and decorative */
.diamond-accent {
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
}

/* Diamond grid dot pattern */
.dot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.dot-grid .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #fff;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, var(--terracotta), var(--green-dark));
}
.solution-gradient {
  background: linear-gradient(135deg, rgba(212,137,106,0.08), rgba(44,95,77,0.08));
}
.cta-gradient {
  background: linear-gradient(135deg, var(--terracotta), var(--green-dark));
}
.hover-scale {
  transition: transform 0.5s;
}
.hover-scale:hover {
  transform: scale(1.02);
}

/* Module cards */
.module-card {
  border: 1px solid var(--green-light);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.module-number {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(212,137,106,0.10);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--terracotta);
}
.module-dotted-divider {
  margin-top: 1rem;
  border-top: 1.5px dotted rgba(212,137,106,0.4);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--green-light);
  border-radius: 0.5rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.testimonial-divider {
  margin: 1rem 0;
  border-top: 1.5px dotted rgba(212,137,106,0.3);
}
.testimonial-photo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  border: 2px solid var(--green-light);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bonus section */
.bonus-bg {
  background-color: var(--cream);
}
.bonus-label {
  display: inline-block;
  border-radius: 0.5rem;
  background: var(--terracotta);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.15);
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

/* Footer */
.footer-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-link:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   BUTTONS — Improved, more eye-catching styles
   ═══════════════════════════════════════════════════════ */

/* Base CTA button — shared transitions */
.cta-btn {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

/* Hero CTA — white bg, green text, with glow */
.cta-btn-hero {
  background: #fff;
  color: var(--green-dark) !important;
  border-radius: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.6);
}
.cta-btn-hero:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border-color: #fff;
}
.cta-btn-hero:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(240,217,204,0.5);
}

/* Final CTA — terracotta bg, white text, prominent */
.cta-btn-final {
  background: linear-gradient(135deg, #e09a7a 0%, var(--terracotta) 50%, #c47a5a 100%);
  color: #fff !important;
  border-radius: 0.75rem;
  padding: 1.2rem 3rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(212,137,106,0.45);
  border: 2px solid rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}
.cta-btn-final:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 45px rgba(212,137,106,0.55);
  border-color: rgba(255,255,255,0.5);
}
.cta-btn-final:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(240,217,204,0.5);
}

/* Secondary button — ghost/outline style (for alternate uses) */
.cta-btn-secondary {
  background: transparent;
  color: var(--terracotta) !important;
  border-radius: 0.75rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: none;
  border: 2px solid var(--terracotta);
}
.cta-btn-secondary:hover {
  background: var(--terracotta);
  color: #fff !important;
  transform: scale(1.04);
}

/* Shine effect on hover for primary buttons */
.cta-btn-final::after,
.cta-btn-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cta-btn-final:hover::after,
.cta-btn-hero:hover::after {
  opacity: 1;
}

/* Shimmer effect on hero button */
.cta-btn-hero {
  background: linear-gradient(105deg, #fff 30%, #f5f0eb 50%, #fff 70%);
  background-size: 200% 100%;
  animation: shimmer-hero 4s ease-in-out infinite;
}
@keyframes shimmer-hero {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Price badge — premium chip */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}

/* Free badge — more vibrant */
.free-badge {
  display: inline-block;
  background: #e8c9a0;
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 9999px;
}

/* ───── RESPONSIVE ───── */

@media (min-width: 640px) {
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:w-72 { width: 18rem; }
  .sm\:w-80 { width: 20rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; }
  .sm\:text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .lg\:text-left { text-align: left; }
  .lg\:text-right { text-align: right; }
  .lg\:text-justify { text-align: justify; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:justify-end { justify-content: flex-end; }
}