/* ======== ESTILOS BASE (DESKTOP) ======== */
.why-choose {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  font-family: 'Poppins', sans-serif;
  background-color: transparent;
}

.why-choose .row {
  display: flex;
  flex-direction: row; /* fila en desktop */
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left; /* alineado a la izquierda en desktop */
}

.eco-title {
  font-size: 96px;
  font-weight: 900;
  color: #2ecc71;
  text-shadow: 
    -2px -2px 0 #fff,  
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  line-height: 1;
}

.text-col .subtitle {
  font-size: 36px;
  font-weight: 700;
  color: #4a0e23;
  margin: 0;
}

.text-col .desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.img-col {
  flex: 0 0 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-col img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ======== RESPONSIVE BREAKPOINTS ======== */

/* hasta 1200px */
@media (max-width: 1200px) {
  .eco-title { font-size: 80px; }
  .text-col .subtitle { font-size: 32px; }
  .text-col .desc { font-size: 15px; }
  .img-col { flex: 0 0 380px; }
}

/* hasta 900px */
@media (max-width: 900px) {
  .why-choose .row {
    flex-direction: column;   /* columna en pantallas medianas */
    gap: 40px;
    text-align: center;
  }
  .text-col { align-items: center; text-align: center; }
  .eco-title { font-size: 60px; }
  .text-col .subtitle { font-size: 28px; }
  .text-col .desc { font-size: 14px; }
  .img-col { flex: 0 0 auto; }
  .img-col img { width: 320px; }
}

/* hasta 600px */
@media (max-width: 600px) {
  .eco-title { font-size: 48px; }
  .text-col .subtitle { font-size: 22px; }
  .text-col .desc { font-size: 13px; line-height: 1.5; }
  .img-col img { width: 220px; }
}

/* hasta 300px */
@media (max-width: 300px) {
  .eco-title { font-size: 32px; }
  .text-col .subtitle { font-size: 18px; }
  .text-col .desc { font-size: 12px; }
  .img-col img { width: 160px; }
}


/* ===== CTA sección estilo portada  Trusted===== */
.cleaning-cta {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  background: deepskyblue;
  border-radius: 12px;
  overflow: hidden;
  margin: 40px auto;
  position: relative;
}

/* Portada */
.cta-cover {
  position: relative;
  width: 100%;
}

.cta-cover img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Desktop: alto fijo */
@media (min-width: 769px) {
  .cta-cover img {
    height: 300px; /* alto fijo en desktop */
  }
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35));
  pointer-events: none;
}

/* Contenido */
.cta-content {
  padding: 30px 40px;
  text-align: center;
}

.cta-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cta-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

/* Botón */
.cta-button {
  text-align: center;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f82d78;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #d81a64;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE (Mobile) ===== */
@media (max-width: 768px) {
  .cleaning-cta {
    margin: 20px auto;
    width: calc(100% - 20px);
  }

  .cta-content {
    padding: 20px;
  }

  .cta-text h3 {
    font-size: 18px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }

  /* Mobile: alto automático */
  .cta-cover img {
    height: auto;
  }

  .cta-overlay {
    background: rgba(0,0,0,0.35); /* overlay más suave en mobile */
  }
}





    /* estilos para los beneficios */
    .benefits {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background-color: white;
}

.benefits-title {
  font-size: 42px;
  font-weight: 800;
  color: #e91e63;
  margin-bottom: 50px;
}

.benefits-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Tarjeta */
.benefit-card {
  position: relative;
  flex: 1;
  min-width: 220px;
  padding: 70px 20px 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  overflow: visible;
}

/* Icono */
.benefit-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Títulos */
.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Texto */
.benefit-card p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Colores dinámicos */
.card-blue {
  background: linear-gradient(135deg, #3a7bd5, #3a6073);
}

.card-gold {
  background: linear-gradient(135deg, #f9d423, #ff4e50);
}

.card-green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.card-black {
  background: linear-gradient(135deg, #232526, #414345);
}

@media (max-width: 768px) {
  .benefits {
    width: calc(100% - 32px); /* margen lateral de 16px a cada lado */
    margin: 40px auto;
    padding: 0 10px;
    box-sizing: border-box;
    background-color: transparent;
  }

  .benefits-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .benefits-row {
    flex-direction: column; /* apila las tarjetas */
    align-items: center;
    gap: 44px;
  }

  .benefit-card {
    width: 100%;
    max-width: 320px; /* que no se estiren demasiado */
    margin: 0 auto;
    padding: 60px 16px 20px;
  }

  .benefit-icon {
    width: 80px;
    height: 80px;
    top: -30px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 13px;
  }
}

:root {
  --primary: #1e3a5f;   /* azul marino */
  --secondary: #4da6ff; /* azul claro */
  --bg: #f5f9fc;        /* fondo neutro */
  --text: #2a2a2a;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.reviews {
  background: linear-gradient(135deg, #f5f9fc, #e8f1f9);
  padding: 70px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.reviews-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 45px;
  line-height: 1.3;
}

/* Summary Section */
.reviews-summary {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  gap: 40px;
}

.breakdown-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 340px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}
.stars-label { width: 48px; font-weight:600; color:var(--primary); }
.stars-pct { width: 56px; text-align:right; font-weight:600; color:var(--primary); }

.meter {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #e0e6ed; /* gris de fondo */
  position: relative;
  overflow: hidden;
  width: 100px;
}

.meter .fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%; /* inicia vacía */
  background: linear-gradient(90deg, #FFC107, #FFD84D); /* amarillo */
  border-radius: inherit;
  transition: width 0.3s ease-out;
}


/* Rating Box */
.rating-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 25px 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.rating-score {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}
.rating-stars { font-size: 22px; color: var(--secondary); }
.rating-count { font-size: 14px; color: #555; }

.reviews-logo img {
  max-width: 180px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

/* Cards */
.reviews-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  text-align: left;
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  transition: all .3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.avatar {
  background: var(--secondary);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.review-content h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}
.review-content .stars { color: var(--secondary); margin: 5px 0; }
.review-content p { font-size: 14px; color: var(--text); line-height: 1.5; }
.location { display: block; margin-top: 10px; font-size: 12px; color: #666; }

/* Toggle Button */
.reviews-toggle {
  text-align: center;
  margin-top: 20px;
}
.reviews-toggle button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: background .3s ease;
}
.reviews-toggle button:hover {
  background: var(--secondary);
}

/* Hidden Reviews */
.hidden-review { display: none; }
.hidden-review.show { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .reviews-summary { flex-direction: row; align-items: center; }
  .reviews-cards { flex-direction: column; align-items: center; }
  .review-card { width: 90%; }
  .reviews-logo img { max-width: 140px; }
}


    /* estilos para ecofriendly */
    .eco-friendly {
  background: #e6f7ec; /* verde claro */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.eco-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.eco-icon img {
  max-width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.eco-text {
  max-width: 600px;
  text-align: left;
}

.eco-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #228b22; /* verde principal */
  margin-bottom: 20px;
}

.eco-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #2f4f2f;
  margin-bottom: 20px;
}

.eco-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-text ul li {
  font-size: 15px;
  color: #1d401d;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .eco-content {
    flex-direction: column;
    text-align: center;
  }
  .eco-text {
    text-align: center;
  }
  .reviews-logo img {
  max-width: 125px;
  border-radius: 50%;
}
}


    /* estilos para eco-compare */
    .eco-compare {
  background: #e6f7ec; /* verde claro */
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.eco-compare h2 {
  font-size: 32px;
  font-weight: 700;
  color: #228b22; /* verde principal */
  margin-bottom: 40px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.compare-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  text-align: left;
}

.compare-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-card ul li {
  font-size: 15px;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Colores específicos */
.compare-card.traditional {
  border-left: 6px solid #b22222; /* rojo para contraste */
}
.compare-card.traditional h3 {
  color: #b22222;
}

.compare-card.eco {
  border-left: 6px solid #228b22; /* verde */
}
.compare-card.eco h3 {
  color: #228b22;
}

/* Responsive */
@media (max-width: 368px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


    /* estilos para eco testimonials cta */
    .eco-stats-testimonials-cta {
  background: linear-gradient(135deg, #e6f7ec, #c9f0d9);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Liquid blobs / glassmorphism background */
.eco-stats-testimonials-cta::before,
.eco-stats-testimonials-cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(34, 139, 34, 0.3);
  filter: blur(120px);
  z-index: 0;
}
.eco-stats-testimonials-cta::before {
  top: -100px;
  left: -100px;
}
.eco-stats-testimonials-cta::after {
  bottom: -100px;
  right: -100px;
}

.eco-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* =======================
   Green Stats
   ======================= */
.eco-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #228b22;
  margin-bottom: 8px;
}
.stat-card p {
  font-size: 14px;
  color: #2f4f2f;
  margin: 0;
}

/* =======================
   Green Testimonials
   ======================= */
.eco-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.eco-quote {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  font-style: italic;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.eco-quote p {
  margin: 0 0 10px;
  color: #1d401d;
  line-height: 1.6;
}
.eco-quote span {
  font-size: 13px;
  color: #2f4f2f;
  font-weight: 500;
}

/* =======================
   CTA Verde
   ======================= */
.eco-cta {
  background: rgba(34, 139, 34, 0.75);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.eco-cta h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}
.eco-cta p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #f0fff0;
}
.eco-cta button {
  background: #fff;
  color: #228b22;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.eco-cta button:hover {
  background: #c9f0d9;
  color: #1d401d;
}

/* Responsive */
@media (max-width: 768px) {
  .eco-container {
    gap: 40px;
  }
  .eco-cta h2 {
    font-size: 22px;
  }
}
.green-stats-block {
  background: linear-gradient(135deg, #e6f7ec, #c9f0d9);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #228b22;
}

.stat-item h3 span {
  color: #0f7b0f;
}

.stat-item p {
  font-size: 15px;
  color: #2f4f2f;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .green-stats-block {
    padding: 40px 16px;
  }
  .stat-item h3 {
    font-size: 24px;
  }
}