/* ===== ZAFIRANGER HERO ===== */

.zr-hero {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.zr-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.zr-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  text-align: center;
}

.zr-hero-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color:#fff;
}

.zr-hero-inner h1 span {
  display: block;
  margin-top: 0.5rem;
}

.zr-hero-inner p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.zr-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */

.btn-primary {
  background: linear-gradient(135deg,#E8772E,#F5A14D);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.btn-light {
  background: #fff;
  color: #111;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary:hover,
.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .zr-hero {
    min-height: 85vh;
  }
}

/* ===== HERO STATS ===== */

.zr-hero-stats {
  background: #111827; /* gris oscuro elegante */
  padding: 3rem 1.5rem;
}

.zr-hero-stats .wp-block-columns {
  max-width: 1200px;
  margin: 0 auto;
}

.zr-hero-stats h3 {
  color: #F59E0B; /* naranja marca */
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-align: center;
}

.zr-hero-stats p {
  color: #9CA3AF;
  font-size: 0.95rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .zr-hero-stats {
    padding: 2.5rem 1rem;
  }
}

/* ===== SECCIÓN PARA TI ===== */

.zr-para-ti {
  padding: 5rem 1.5rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  text-align: center;
}

.zr-para-ti h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.zr-para-ti > p {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: #6b7280;
  font-size: 1.05rem;
}

.zr-para-ti-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.zr-para-ti-grid h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.zr-para-ti-grid p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Cards look */
.zr-para-ti-grid > .wp-block-column {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zr-para-ti-grid > .wp-block-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .zr-para-ti {
    padding: 4rem 1.2rem;
  }

  .zr-para-ti-grid > .wp-block-column {
    padding: 2rem 1.5rem;
  }
}

/* ===== MODELOS HOME ===== */

.zr-modelos {
  padding: 5rem 1.5rem;
  background: #ffffff;
  text-align: center;
}

.zr-modelos h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 3rem;
}

.zr-modelos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.zr-model-card {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zr-model-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

.zr-model-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.zr-model-content {
  padding: 2.5rem 2rem;
}

.zr-model-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.zr-model-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.zr-model-btn {
  display: inline-block;
  background: linear-gradient(135deg,#E8772E,#F5A14D);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.zr-model-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .zr-modelos-grid {
    grid-template-columns: 1fr;
  }

  .zr-model-image img {
    height: 260px;
  }
}

/* ===== CALCULADORA ROI (FIX COLORES) ===== */

.zr-roi {
  background: linear-gradient(180deg, #0b1220, #020617);
  color: #ffffff;
  padding: 5rem 1.5rem;
  text-align: center;
}

.zr-roi h2 {
  color: #ffffff;
}

.zr-roi > p {
  color: #cbd5f5;
}

/* Caja principal */
.zr-roi-box {
  background: #ffffff;
  color: #0f172a;
  border-radius: 1.75rem;
  padding: 2.8rem 2.4rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

/* Input */
.zr-roi-box input {
  border: 2px solid #e5e7eb;
}

.zr-roi-box input:focus {
  border-color: #f59e0b;
  outline: none;
}

/* Botón */
.zr-roi-box button {
  background: linear-gradient(135deg,#e8772e,#f59e0b);
}

/* Resultado */
.zr-roi-resultado {
  margin-top: 2.2rem;
  background: linear-gradient(135deg, #ecfeff, #f0fdfa);
  border: 2px solid #67e8f9;
  border-radius: 1.25rem;
  padding: 1.8rem;
}

/* Labels */
.zr-roi-label {
  font-size: 0.85rem;
  color: #0369a1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* VALOR CLAVE */
.zr-roi-valor {
  font-size: 2.6rem;
  font-weight: 900;
  color: #047857;
  margin: 0.6rem 0;
}

/* Texto extra */
.zr-roi-extra {
  font-size: 0.95rem;
  color: #065f46;
}

/* ===== TESTIMONIOS ===== */

.zr-testimonios {
  background: #f9fafb;
  padding: 5rem 1.5rem;
  text-align: center;
}

.zr-testimonios h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.zr-testimonios > p {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.zr-testimonios-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.zr-testimonios-grid > .wp-block-column {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: left;
}

/* Video */
.zr-testimonio-video {
  position: relative;
  padding-top: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.zr-testimonio-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Texto */
.zr-testimonios h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.zr-testimonios p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .zr-testimonios {
    padding: 4rem 1.2rem;
  }
}

/* ===== FAQ ===== */

.zr-faq {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.zr-faq h2 {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.zr-faq > p {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.zr-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* Details */
.zr-faq details {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  cursor: pointer;
  border: 1px solid #e5e7eb;
}

.zr-faq summary {
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
}

.zr-faq summary::-webkit-details-marker {
  display: none;
}

.zr-faq summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  color: #f59e0b;
}

.zr-faq details[open] summary::after {
  content: '–';
}

.zr-faq details p {
  margin-top: 0.8rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTA FINAL ===== */

.zr-cta-final {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #ffffff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.zr-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.zr-cta-final h2 {
  font-size: clamp(2.1rem, 3.5vw, 2.9rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color:#f47435;
}

.zr-cta-final p {
  font-size: 1.05rem;
  color: #cbd5f5;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.zr-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1rem 2.8rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zr-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 55px rgba(37,211,102,0.65);
}

.zr-cta-note {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ===== ACCESORIOS ===== */

.zr-accesorios {
  background: #f9fafb;
  padding: 5rem 1.5rem;
  text-align: center;
}

.zr-accesorios h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.zr-accesorios > p {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.zr-accesorios-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.zr-accesorio-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zr-accesorio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.14);
}

.zr-accesorio-image img {
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

.zr-accesorio-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.zr-accesorio-price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.zr-accesorio-btn {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.zr-accesorio-btn:hover {
  background: #f59e0b;
  color: #111827;
}

/* Responsive */
@media (max-width: 900px) {
  .zr-accesorios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .zr-accesorios-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== WHATSAPP STICKY MOBILE (FIX ASTRA) ===== */

.zr-wa-sticky {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
}

.zr-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #ffffff;
  font-weight: 800;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(37,211,102,0.45);
}

/* OCULTAR SOLO EN DESKTOP REAL */
@media (hover: hover) and (pointer: fine) {
  .zr-wa-sticky {
    display: none;
  }
}

.zr-wa-sticky {
  display: block;
  visibility: visible;
  opacity: 1;
}

