/* ==========================================================================
   TEMASCOTIZAMOS - LANDING PAGE GIMNASIO MICHI
   Mobile-First High Conversion Stylesheet
   Brand Colors: #496CAE (Azul) | #47B1AE (Menta/Cian) | #FD0166 (Fucsia/Acento)
   ========================================================================== */

:root {
  --color-primary: #496CAE;
  --color-primary-dark: #37538C;
  --color-primary-light: #EBF2FA;
  --color-cyan: #47B1AE;
  --color-cyan-light: #E6F7F7;
  --color-accent: #FD0166;
  --color-accent-dark: #D40053;
  --color-accent-glow: rgba(253, 1, 102, 0.25);
  
  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #64748B;
  --color-bg-base: #FFFFFF;
  --color-bg-subtle: #F8FAFC;
  --color-bg-card: #FFFFFF;
  --color-border: #E2E8F0;
  --color-border-focus: #496CAE;

  --color-success: #16A34A;
  --color-success-bg: #DCFCE7;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5D;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(73, 108, 174, 0.15), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --shadow-cta: 0 8px 24px rgba(253, 1, 102, 0.35);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);

  --container-max: 760px;
  --header-height: 64px;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-bg-subtle);
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* --------------------------------------------------------------------------
   BARRA SUPERIOR DE URGENCIA / VALOR
   -------------------------------------------------------------------------- */
.top-announcement {
  background: linear-gradient(90deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid var(--color-cyan);
}

.announcement-content strong {
  color: #FDE047;
  letter-spacing: 0.2px;
}

/* --------------------------------------------------------------------------
   HEADER PRINCIPAL
   -------------------------------------------------------------------------- */
.main-header {
  background-color: var(--color-bg-base);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-success-bg);
  color: var(--color-success);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(22, 163, 74, 0.4);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

/* --------------------------------------------------------------------------
   SECCIONES GENERALES & HEADINGS
   -------------------------------------------------------------------------- */
section {
  padding: 42px 0;
}

.section-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   BOTONES PRIMARIOS (MÁXIMO 3 EN LA PÁGINA)
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 4px 14px rgba(253, 1, 102, 0.4);
}

.btn-primary.btn-large {
  font-size: 1.25rem;
  padding: 20px 28px;
}

.btn-icon {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateY(2px);
}

.cta-microcopy {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   BLOQUE 1: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
  padding-top: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.hero-badge {
  display: inline-block;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text-main);
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.highlight-cyan {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Tarjeta de Precios Inmediata */
.hero-pricing-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  margin-bottom: 10px;
}

.price-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.price-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.price-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.price-separator {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-cyan);
}

.total-badge-row {
  background: #F0FDF4;
  border: 1px dashed var(--color-success);
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  margin-bottom: 8px;
}

.total-tag {
  font-size: 0.95rem;
  color: #14532D;
}

.total-tag strong {
  font-size: 1.25rem;
  color: #15803D;
  font-weight: 800;
}

.delivery-perk {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 700;
}

.hero-cta-wrapper {
  margin-bottom: 26px;
}

.hero-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000000;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.image-caption-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   BLOQUE 2: VIDEO DEMOSTRATIVO
   -------------------------------------------------------------------------- */
.video-section {
  background-color: #FFFFFF;
}

.video-card {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.video-responsive-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto 20px auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #0F172A;
  aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-md);
}

.vertical-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-custom-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #FFFFFF;
  border: 4px solid #FFFFFF;
  box-shadow: 0 6px 20px rgba(253, 1, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-icon {
  font-size: 1.8rem;
  margin-left: 4px;
}

.video-overlay-text {
  margin-top: 14px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.video-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.video-pill {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
}

/* --------------------------------------------------------------------------
   BLOQUE 3: TODO LO QUE INCLUYE (CARACTERÍSTICAS)
   -------------------------------------------------------------------------- */
.includes-section {
  background-color: var(--color-bg-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #E2E8F0;
  overflow: hidden;
}

.feature-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.feature-body {
  padding: 16px;
}

.feature-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   BLOQUE 4: TAMAÑO REAL DEL GIMNASIO (MEDIDAS)
   -------------------------------------------------------------------------- */
.dimensions-section {
  background-color: #FFFFFF;
}

.blueprint-card {
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.dimension-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: #E2E8F0;
}

.dimension-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.cota-height {
  position: absolute;
  right: 12px;
  top: 15%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cota-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: var(--color-accent);
}

.cota-pill {
  position: relative;
  z-index: 2;
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  white-space: nowrap;
}

.cota-width {
  position: absolute;
  bottom: 16px;
  left: 10%;
  right: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cota-line-h {
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
}

.cota-width .cota-pill {
  background: var(--color-primary);
}

.blueprint-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.specs-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.spec-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.spec-data {
  display: flex;
  flex-direction: column;
}

.spec-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.spec-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin: 1px 0;
}

.spec-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.spec-row.highlight-spec {
  background: #EFF6FF;
  border-color: #BFDBFE;
}

.blueprint-cta {
  text-align: center;
}

/* --------------------------------------------------------------------------
   BLOQUE 5: FOTOGRAFÍAS Y DETALLES REALES (GALERÍA)
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--color-bg-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-item {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-item:active img {
  transform: scale(1.05);
}

.gallery-label {
  padding: 8px 10px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
}

/* --------------------------------------------------------------------------
   BLOQUE 6: SELECCIÓN DE COLOR O ACABADO
   -------------------------------------------------------------------------- */
.color-selector-section {
  background-color: #FFFFFF;
}

.color-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.color-card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: #FFFFFF;
  cursor: pointer;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}

.color-card.active {
  border-color: var(--color-primary);
  background: #F8FAFF;
  box-shadow: 0 4px 18px rgba(73, 108, 174, 0.18);
}

.color-card-img {
  width: 90px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

.color-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selected-indicator {
  display: none;
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 4px;
  text-align: center;
  border-radius: 4px;
}

.color-card.active .selected-indicator {
  display: block;
}

.color-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.color-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.color-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0;
}

.badge-stock {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-success);
  background: var(--color-success-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.badge-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.color-price-tag {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.color-price-tag strong {
  color: var(--color-text-main);
  font-weight: 800;
}

.btn-select-color {
  margin-top: 4px;
  background: #E2E8F0;
  border: none;
  color: var(--color-text-main);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s ease;
}

.color-card.active .btn-select-color {
  background: var(--color-primary);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   BLOQUE 7: PRECIO Y CONDICIONES DE ENTREGA
   -------------------------------------------------------------------------- */
.pricing-conditions-section {
  background-color: var(--color-bg-subtle);
}

.pricing-summary-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.invoice-box {
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 22px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

.invoice-divider {
  height: 1px;
  background: #CBD5E1;
  margin: 10px 0;
}

.invoice-row.total-row {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--color-text-main);
}

.highlight-price {
  font-size: 1.45rem;
  color: var(--color-primary);
}

.conditions-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.condition-item.highlight-item {
  background: #FDF2F8;
  border-left: 4px solid var(--color-accent);
}

.condition-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.condition-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.condition-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   BLOQUE 8: FORMULARIO DE CONFIRMACIÓN DE DISPONIBILIDAD
   -------------------------------------------------------------------------- */
.form-section {
  background: linear-gradient(180deg, #EFF6FF 0%, #FFFFFF 100%);
  padding-top: 48px;
  padding-bottom: 48px;
}

.form-card-container {
  background: #FFFFFF;
  border: 2px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  text-align: center;
  margin-bottom: 24px;
}

.form-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.form-title {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.form-intro {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.michi-lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.req {
  color: var(--color-accent);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  font-size: 0.98rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  color: var(--color-text-main);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(73, 108, 174, 0.15);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.phone-input-wrapper:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(73, 108, 174, 0.15);
}

.phone-prefix {
  background: #F1F5F9;
  padding: 13px 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  border-right: 1px solid var(--color-border);
  white-space: nowrap;
}

.phone-input-wrapper input {
  border: none;
  box-shadow: none !important;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-summary-live {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.summary-icon {
  font-size: 1.2rem;
}

.summary-text {
  font-size: 0.85rem;
  color: #166534;
  line-height: 1.4;
}

.form-checkbox-group {
  margin: 4px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.45;
}

.checkbox-container input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.btn-submit-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-submit-order:active {
  transform: scale(0.98);
}

.btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}

.btn-submit-order:hover .btn-arrow {
  transform: translateX(4px);
}

.form-footer-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   BLOQUE 10: PREGUNTAS FRECUENTES (FAQ) - ACORDEÓN
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: #FFFFFF;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  gap: 12px;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 18px;
  background: #F8FAFC;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 14px 18px 18px 18px;
  border-top: 1px solid var(--color-border);
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   BLOQUE 11: CIERRE DE LA LANDING
   -------------------------------------------------------------------------- */
.closure-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  padding: 48px 0;
}

.closure-card {
  background: #FFFFFF;
  border: 2px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.closure-badge {
  display: inline-block;
  background: #EFF6FF;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.closure-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.closure-text {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.closure-cta {
  margin-bottom: 14px;
}

.closure-pricing-reminder {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.other-sizes-block {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.other-sizes-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.link-catalogo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 32px 0 60px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-copy {
  font-size: 0.78rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   BLOQUE 9: MODAL DE CONFIRMACIÓN & WHATSAPP
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.25s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: scaleUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #F1F5F9;
  border: none;
  font-size: 1.5rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-celebration-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.modal-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.modal-order-recap {
  background: #F8FAFC;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 0.85rem;
  color: var(--color-text-main);
  text-align: left;
  margin-bottom: 20px;
}

.recap-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.recap-item:last-child {
  margin-bottom: 0;
  padding-top: 6px;
  border-top: 1px dashed #CBD5E1;
  font-weight: 800;
  color: var(--color-primary);
}

.btn-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn-whatsapp-cta:hover {
  background-color: var(--color-whatsapp-dark);
}

.btn-whatsapp-cta:active {
  transform: scale(0.98);
}

.modal-footer-tip {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   BOTÓN FLOTANTE DE WHATSAPP COMO APOYO
   -------------------------------------------------------------------------- */
.floating-whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 99;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: var(--color-whatsapp);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.2s ease;
}

.floating-whatsapp-btn:active {
  transform: scale(0.92);
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: ripple 2s infinite;
  z-index: -1;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-tooltip {
  display: none;
}

/* --------------------------------------------------------------------------
   RESPONSIVE OPTIMIZATIONS (TABLETS & DESKTOPS)
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .color-cards-grid {
    grid-template-columns: 1fr;
  }

  .video-responsive-frame {
    max-width: 320px;
  }

  .floating-tooltip {
    display: block;
    position: absolute;
    right: 70px;
    background: #0F172A;
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
  }
}

@media (min-width: 768px) {
  section {
    padding: 56px 0;
  }

  .blueprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
  }

  .dimension-image-wrapper {
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
