/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
/* CONTENEDOR GENERAL */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
:root {
  --primary: #a7170f;
  --secondary: #504e51;
  --white: #ffffff;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
/* LOGO */
.logo img {
  height: 42px;
}
/* NAV DESKTOP */
.nav-desktop {
  display: flex;
  gap: 40px;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

/* Hover gris corporativo */
.nav-desktop a:hover {
  color: var(--primary);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--primary);
  transition: 0.3s ease;
}
.nav-desktop a:hover::after {
  width: 100%;
}
.btn-header:hover {
  background: #8c130d;
  color: var(--white);
}

/* BOTÓN CTA */
.btn-header {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: 0.3s ease;
}
.menu-toggle {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary);
  left: 0;
  transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 9px;
}

.menu-toggle span:nth-child(3) {
  bottom: 0;
}

/* Animación a X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}
/*--------------------------*/
/*------HERO SECTION--------*/
/*--------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background: url("img/bg-hero2.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay oscuro */
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
  color: #e5e5e5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-primary {
  background: #a7170f;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: #8e130d;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.hero-features {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #e5e5e5;
}
/*-----------------------------*/
/*------PROBLEM SECTION--------*/
/*-----------------------------*/
.problema {
  padding: 100px 0;
  background: #f8f8f8;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 16px;
  color: #6d6b6f;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.problema-item {
  background: var(--white);
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border-top: 4px solid var(--primary);
}

.problema-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.problema-item .icon {
  width: 55px;
  height: 55px;
  background: rgba(167, 23, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
}
.problema-item .icon img {
  width: 28px;
  height: 28px;
}

.problema-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.problema-item p {
  font-size: 14px;
  color: #6d6b6f;
}
/*--------------------------------*/
/*------BENEFICIOS SECTION--------*/
/*--------------------------------*/
.beneficios {
  padding: 100px 0;
  background: var(--white);
}

.beneficios .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.beneficios .section-header h2 {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.beneficios .section-header p {
  font-size: 16px;
  color: #6d6b6f;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.beneficio-card {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  border-bottom: 4px solid transparent;
}

.beneficio-card:hover {
  transform: translateY(-8px);
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.beneficio-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px auto;
  background: rgba(167, 23, 15, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.beneficio-icon img {
  width: 30px;
  height: 30px;
}

.beneficio-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.beneficio-card p {
  font-size: 14px;
  color: #6d6b6f;
}
/*-----------------------------*/
/*------EQUIPOS SECTION--------*/
/*-----------------------------*/
.equipos {
  padding: 110px 0;
  background: #f6f6f6;
}

.equipos .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.equipos .section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.equipos .section-header p {
  color: #6d6b6f;
  font-size: 16px;
}
.equipos-filtros {
  text-align: center;
  margin-bottom: 50px;
}

.filtro-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 10px 22px;
  margin: 0 8px 10px 8px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}

.filtro-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filtro-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.equipos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.equipo-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.equipo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.equipo-img {
  position: relative;
  overflow: hidden;
}

.equipo-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s ease;
}

.equipo-card:hover .equipo-img img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.equipo-info {
  padding: 30px;
}

.equipo-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.equipo-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.equipo-info ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #6d6b6f;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/*-----------------------------------*/
/*------MANTENIMIENTO SECTION--------*/
/*-----------------------------------*/
.mantenimiento {
  padding: 110px 0;
  background: #1f1f1f;
  color: white;
}

.mantenimiento .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.mantenimiento .section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.mantenimiento .section-header p {
  color: #cfcfcf;
}
.mantenimiento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.mantenimiento-card {
  background: #2b2b2b;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  border-bottom: 3px solid transparent;
}

.mantenimiento-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid var(--primary);
}
.mantenimiento-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 20px auto;
  background: rgba(167, 23, 15, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.mantenimiento-icon img {
  width: 30px;
  height: 30px;
}
.mantenimiento-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.mantenimiento-card p {
  font-size: 14px;
  color: #cfcfcf;
}
.mantenimiento-cta {
  text-align: center;
  margin-top: 60px;
}
/*-----------------------------*/
/*------PROCESO SECTION--------*/
/*-----------------------------*/
.proceso {
  padding: 110px 0;
  background: #f8f8f8;
}

.proceso .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px auto;
}

.proceso .section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.proceso .section-header p {
  color: #6d6b6f;
}
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Línea roja central */
.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 3px;
  background: var(--primary);
  z-index: 0;
}
.timeline-step {
  position: relative;
  background: white;
  padding: 40px 20px 30px 20px;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.timeline-circle {
  width: 60px;
  height: 60px;
  margin: -70px auto 20px auto;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.timeline-step p {
  font-size: 14px;
  color: #6d6b6f;
}
/*--------------------------------*/
/*------TESTIMONIO SECTION--------*/
/*--------------------------------*/
.testimonios {
  padding: 110px 0;
  background: #f2f2f2;
}

.testimonios .section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.testimonios .section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.testimonios .section-header p {
  color: #6d6b6f;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.testimonio-card {
  background: white;
  padding: 45px 35px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.testimonio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.quote {
  font-size: 60px;
  color: var(--primary);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.1;
  font-weight: 700;
}
.testimonio-text {
  font-size: 16px;
  color: #504e51;
  margin-bottom: 25px;
  line-height: 1.6;
}
.cliente-info strong {
  display: block;
  font-size: 15px;
  color: var(--secondary);
}

.cliente-info span {
  font-size: 13px;
  color: #6d6b6f;
}
.rating {
  color: #f4b400; /* dorado elegante */
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
/*-------------------------*/
/*------CTA SECTION--------*/
/*-------------------------*/
.cta-final {
  position: relative;
  padding: 120px 0;
  background: url("img/bg-cta.webp") center/cover no-repeat;
  text-align: center;
  color: white;
}
.cta-title {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.cta-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 1s ease;
}
/* Cuando la sección entra en pantalla */
.cta-final.active .cta-title::after {
  width: 80%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 18px;
  margin-bottom: 35px;
  color: #e5e5e5;
}
@keyframes pulseCTA {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 23, 15, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(167, 23, 15, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 23, 15, 0);
  }
}
.btn-cta {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  animation: none;
}
.cta-final.active .btn-cta {
  animation: pulseCTA 2.5s infinite;
}
.btn-cta:hover {
  background: #8e130d;
  transform: translateY(-3px);
}
.cta-benefits {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  color: #cfcfcf;
  flex-wrap: wrap;
}
/*----------------------------*/
/*------TIENDA SECTION--------*/
/*----------------------------*/
.tienda {
  padding: 100px 0;
  background: #f7f7f7;
}

.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.tienda-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}

.tienda-card:hover {
  transform: translateY(-6px);
}

.tienda-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.tienda-info {
  padding: 25px;
}

.tienda-info h3 {
  margin-bottom: 10px;
}

.tienda-info ul {
  margin: 15px 0;
  padding-left: 18px;
}

.tienda-info li {
  margin-bottom: 5px;
}

.precio {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}
/*----------------------------*/
/*------FOOTER SECTION--------*/
/*----------------------------*/
.footer {
  background: #0b0b0b;
  color: #bbb;
  padding: 90px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #999;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.btn-footer {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(167, 23, 15, 0.35);
}

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #666;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  animation: pulseWsp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Tooltip */
.wsp-tooltip {
  position: absolute;
  right: 75px;
  background: #fff;
  color: #111;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Flechita */
.wsp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

/* Mostrar tooltip */
.whatsapp-float:hover .wsp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulseWsp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
/* =====================
   FAQ SECTION
===================== */

.faq-section {
  padding: 80px 20px;
  background: #0f1115;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  color: #fff;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-desktop {
    position: fixed;
    top: 0;
    left: 0; /* Cambiamos estrategia */
    height: 100vh;
    width: 100vw;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%); /* Oculto fuera de pantalla */
    transition: transform 0.3s ease;
    z-index: 1100;
  }

  .nav-desktop.active {
    transform: translateX(0); /* Entra */
  }

  .nav-desktop a {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary);
  }

  .menu-toggle {
    display: block;
    z-index: 1200;
  }

  .btn-header {
    display: none;
  }
  /*--------------------------*/
  /*------HERO SECTION--------*/
  /*--------------------------*/
  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }
  .hero-features {
    justify-content: center;
  }
  /*-----------------------------*/
  /*------PROBLEM SECTION--------*/
  /*-----------------------------*/
  .problema-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }
  /*--------------------------------*/
  /*------BENEFICIOS SECTION--------*/
  /*--------------------------------*/
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*-----------------------------*/
  /*------EQUIPOS SECTION--------*/
  /*-----------------------------*/
  .equipos-grid {
    grid-template-columns: 1fr;
  }

  .equipo-img img {
    height: 220px;
  }
  /*-----------------------------------*/
  /*------MANTENIMIENTO SECTION--------*/
  /*-----------------------------------*/
  .mantenimiento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /*-----------------------------*/
  /*------PROCESO SECTION--------*/
  /*-----------------------------*/
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline::before {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

  .timeline-step {
    max-width: 100%;
    margin-bottom: 60px;
  }

  .timeline-circle {
    margin: -30px auto 20px auto;
  }
}
@media (max-width: 768px) {
  /*--------------------------------*/
  /*------TESTIMONIO SECTION--------*/
  /*--------------------------------*/
  .testimonios-grid {
    grid-template-columns: 1fr;
  }

  .testimonios .section-header h2 {
    font-size: 26px;
  }
  /*-------------------------*/
  /*------CTA SECTION--------*/
  /*-------------------------*/
  .cta-final h2 {
    font-size: 26px;
  }

  .cta-final p {
    font-size: 15px;
  }

  .btn-cta {
    padding: 16px 30px;
    font-size: 16px;
  }
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 600px) {
  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficios .section-header h2 {
    font-size: 26px;
  }
  /*-----------------------------------*/
  /*------MANTENIMIENTO SECTION--------*/
  /*-----------------------------------*/
  .mantenimiento-grid {
    grid-template-columns: 1fr;
  }

  .mantenimiento .section-header h2 {
    font-size: 26px;
  }
  /*-----------------------------*/
  /*------PROCESO SECTION--------*/
  /*-----------------------------*/
  .proceso-grid {
    grid-template-columns: 1fr;
  }

  .proceso .section-header h2 {
    font-size: 26px;
  }
}
