/* ===== Premium landing — Variables ===== */
:root {
  --bg: #faf9f7;
  --bg-card: #ffffff;
  --beige: #f5f2ee;
  --blush: #f0e8e6;
  --dusty-pink: #d4a5a5;
  --gold: #b8a06a;
  --gold-soft: #c9b896;
  --gold-light: #e8dfd0;
  --sage: #d4e0d9;
  --sage-dark: #b8c9be;
  --text: #2c2926;
  --text-soft: #6b6560;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(44, 41, 38, 0.06);
  --shadow-strong: 0 12px 40px rgba(44, 41, 38, 0.08);
  --radius: 8px;
  --radius-lg: 16px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --space-section: 6rem;
  --space-block: 4rem;
}

/* ===== Reset y base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Botones ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #9a8b5a 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 160, 106, 0.35);
}
.btn-cta:hover { box-shadow: 0 8px 28px rgba(184, 160, 106, 0.4); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--gold-light);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-hero { font-size: 1.05rem; padding: 1rem 2rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-urgency { padding: 1rem 2rem; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 41, 38, 0.06);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* Menú móvil: botón hamburguesa (oculto en desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--beige); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(44, 41, 38, 0.08);
    box-shadow: 0 12px 24px rgba(44, 41, 38, 0.08);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(44, 41, 38, 0.06); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
  }
  .btn-nav-cta { display: none; }
}

/* ===== Hero emocional ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 165, 165, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta { margin-top: 0.5rem; }

/* ===== Secciones genéricas ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin: 0 0 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

/* ===== Autoridad ===== */
.authority {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}
.authority-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.stat {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.stat-label {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0.5rem 0 0;
}
.authority-quote {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: var(--beige);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.authority-quote blockquote { margin: 0; }
.authority-quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.authority-quote footer {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.authority-quote strong { color: var(--text); }

/* ===== Beneficios (resultados) ===== */
.benefits {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.benefit-card {
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 38, 0.06);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.benefit-icon svg { width: 100%; height: 100%; }
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ===== Diferenciadores ===== */
.differentiators {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.diff-card {
  padding: 2rem 1.75rem;
  background: var(--beige);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.diff-card:hover {
  background: var(--blush);
  transform: translateY(-2px);
}
.diff-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  line-height: 1;
}
.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.diff-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== Mockups smartphone (animación suave) ===== */
.mockups {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.mockup-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.mockup-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.phone-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: mockup-float 4s ease-in-out infinite;
}
.phone-mockup-1 { animation-delay: 0s; }
.phone-mockup-2 { animation-delay: 0.5s; }
.phone-mockup-3 { animation-delay: 1s; }
@keyframes mockup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.phone-frame {
  width: 200px;
  border-radius: 28px;
  padding: 10px;
  background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255,255,255,0.05);
  transition: transform 0.3s;
}
.phone-mockup:hover .phone-frame { transform: scale(1.03); }
.phone-notch {
  height: 24px;
  margin: 0 auto 8px;
  width: 80px;
  background: #0a0a0a;
  border-radius: 0 0 12px 12px;
}
.phone-screen {
  aspect-ratio: 9/19;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
}
.phone-image {
  height: 40%;
  min-height: 100px;
  overflow: hidden;
  background: var(--beige);
}
.phone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.phone-names {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--text);
}
.phone-date {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}
.phone-label {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}
.mockup-cta { text-align: center; }

/* ===== Proceso 4 pasos ===== */
.process {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}
.step {
  text-align: center;
  padding: 0 0.5rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 2px solid var(--gold-light);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.process-cta { text-align: center; }

/* ===== Testimonios con foto ===== */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 38, 0.06);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 1rem;
  font-style: italic;
  line-height: 1.65;
}
.testimonial-card footer {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.testimonial-card footer strong { color: var(--text); display: block; margin-bottom: 0.2rem; }

/* ===== Precios (plan intermedio destacado) ===== */
.pricing {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.pricing-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 41, 38, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}
.pricing-card.featured {
  background: var(--beige);
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(184, 160, 106, 0.15);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--text);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0 0 1rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.pricing-amount .currency { font-size: 1.25rem; }
.pricing-amount .period { font-size: 1rem; font-weight: 400; color: var(--text-soft); }
.pricing-features {
  flex: 1;
  margin: 0 0 1.5rem;
  padding: 0;
}
.pricing-features li {
  padding: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.pricing-card .btn { margin-top: auto; width: 100%; }
.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

/* ===== Urgencia ===== */
.urgency {
  padding: var(--space-section) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--blush) 100%);
  border-top: 1px solid rgba(44, 41, 38, 0.06);
}
.urgency-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.urgency-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.urgency-desc {
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 0 1.5rem;
  line-height: 1.65;
}
.btn-urgency { margin-top: 0.5rem; }

/* ===== CTA final + garantía ===== */
.cta-final {
  padding: var(--space-section) 0;
  background: var(--bg-card);
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.cta-final-desc {
  text-align: center;
  color: var(--text-soft);
  margin: 0 0 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.cta-final-desc strong { color: var(--gold); }
.cta-final-email {
  text-align: center;
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.cta-final-email a {
  color: var(--gold);
  font-weight: 500;
}
.cta-final-email a:hover { text-decoration: underline; }
.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 88px; }
.contact-form .btn-lg { margin-top: 0.25rem; }

/* ===== Footer ===== */
.footer {
  padding: 2.5rem 1.5rem;
  background: var(--text);
  color: var(--bg);
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.footer-email {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.footer-email a {
  color: var(--gold-light);
}
.footer-email a:hover { text-decoration: underline; }
.footer-copy {
  font-size: 0.85rem;
  opacity: 0.88;
  margin: 0;
}

/* ===== RESPONSIVE — Sitio completamente adaptable ===== */
html { overflow-x: hidden; }
body { overflow-x: hidden; min-width: 280px; }

/* Container y espaciado */
@media (max-width: 640px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  :root { --space-section: 4rem; }
}

/* Header móvil */
@media (max-width: 900px) {
  .nav { padding: 0.9rem 0; }
  .logo { font-size: 1.3rem; }
}

/* Hero */
@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    padding: 5.5rem 0 3.5rem;
  }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-desc { font-size: 1rem; margin-bottom: 1.75rem; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
  .hero-cta .btn { min-height: 48px; }
}
@media (max-width: 480px) {
  .hero { min-height: 70vh; padding: 5rem 0 3rem; }
  .hero-label { font-size: 0.7rem; letter-spacing: 0.15em; }
  .hero-title { font-size: 1.75rem; }
}

/* Títulos de sección */
@media (max-width: 640px) {
  .section-title { font-size: 1.6rem; margin-bottom: 0.25rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
}

/* Autoridad */
@media (max-width: 640px) {
  .authority-stats { gap: 2.5rem; margin-bottom: 2rem; }
  .stat-number { font-size: 2rem; }
  .stat-suffix { font-size: 1.5rem; }
  .authority-quote { padding: 1.5rem 1.25rem; }
  .authority-quote p { font-size: 1.15rem; }
}

/* Beneficios y diferenciadores */
@media (max-width: 640px) {
  .benefits-grid { gap: 1.25rem; }
  .benefit-card { padding: 1.5rem; }
  .diff-grid { gap: 1.25rem; }
  .diff-card { padding: 1.5rem 1.25rem; }
}

/* Mockups index */
@media (max-width: 768px) {
  .mockup-row { gap: 1.5rem; margin-bottom: 2rem; }
  .phone-frame { width: 160px; padding: 8px; border-radius: 22px; }
  .phone-notch { width: 60px; height: 18px; }
  .phone-screen { border-radius: 14px; }
  .phone-text { padding: 0.75rem; }
  .phone-names { font-size: 0.95rem; }
  .phone-date { font-size: 0.7rem; }
  .phone-label { font-size: 0.75rem; margin-top: 0.75rem; }
}
@media (max-width: 480px) {
  .mockup-row { flex-direction: column; align-items: center; gap: 2rem; }
  .phone-frame { width: 140px; }
}

/* Proceso */
@media (max-width: 640px) {
  .process-steps { gap: 1.5rem; margin-bottom: 2rem; }
  .step { padding: 0; }
}

/* Testimonios */
@media (max-width: 640px) {
  .testimonials-grid { gap: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-photo { width: 56px; height: 56px; font-size: 1.1rem; }
}

/* Precios */
@media (max-width: 640px) {
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 1.5rem; }
  .pricing-amount { font-size: 2rem; }
}

/* Urgencia */
@media (max-width: 640px) {
  .urgency-title { font-size: 1.4rem; }
  .urgency-desc { font-size: 0.95rem; }
}

/* CTA final y formulario */
@media (max-width: 640px) {
  .cta-final-title { font-size: 1.5rem; }
  .cta-final-desc { font-size: 0.95rem; margin-bottom: 1.75rem; }
  .contact-form { gap: 0.875rem; }
}
@media (max-width: 480px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 0.85rem 1rem; min-height: 48px; }
  .contact-form .btn-lg { min-height: 48px; padding: 0.9rem 1.5rem; }
}

/* Footer */
@media (max-width: 640px) {
  .footer { padding: 1.75rem 1rem; }
  .footer-brand { font-size: 1.05rem; }
  .footer-copy { font-size: 0.8rem; }
}

/* Botones: área táctil mínima (44px recomendado) */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
}
