

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');


* {
    box-sizing: border-box;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: white;
}
:root{
    --main-color: #120F11;
}
body, html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background-color: var(--main-color);
    font-family: "Manrope", serif;
    color: #FFFFFF;
}

  :root {
    --primary-color: #FF2C2C;
    --background-dark: #0F0F0F;
    --color-white-1: #FFFFFF;
    --color-gray-1: #CCCCCC;
    --color-gray-2: #7F797F;
    
    /* TITLE SECTION */
    --fs-1-d: 24px; /* FONT SIZE DESKTOP */
    --fs-1-m: 26px; /* FONT SIZE MOBILE */

    /* DESCRIPTION SECTION */
    --fs-2-d: 18px; 
    --fs-2-m: 18px; 

    /* SUBTITLE SECTION */
    --fs-3-d: 18px; 
    --fs-3-m: 21px; 

    /* PARAGRAPH */
    --fs-4-d: 16px; 
    --fs-4-m: 18px;

    /* SMALL TEXT 1 (TITULOS) */
    --fs-5-d: 16px; 
    --fs-5-m: 16px; 

    /* SMALL TEXT 2 */ 
    --fs-6-d: 16px; 
    --fs-6-m: 16px; 
  }


  #inicio_web{
    background-image: url('../img/fondo-inicio.png');

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
   
    
  }


  /* ------------------------------ */
  /* HEADER / NAVBAR */
  /* ------------------------------ */

    #inicio_web #header {
      display: flex;
      justify-content: center;
      width: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
      z-index: 399;
    }
      #inicio_web #header #navbar {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 400;
        top: 40px;
        max-width: 1100px;
        margin: 0 auto;
        backdrop-filter: blur(30px);
        background: rgba(18, 15, 17, 0.9);
        box-shadow: 3px 3px 3.3px rgba(0, 0, 0, 0.11);
        border-radius: 14px;
      }

      /* Stylos logos */
      #navbar-logo{
        opacity: 0;
      }
      
      
      #navbar #navbar-logo img{
        width: 0;
      }


      #navbar .abajo{
        opacity: 1;
        transition: all 0.7s;
      }

      .abajo img{
        width: 145px !important;
        margin: 0 10px 0 15px;
      }

      /* Menú hamburguesa */
      .menu-hamburguesa {
        display: none; /* Oculto por defecto en desktop */
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 10px;
        outline: none;
      }

      
      /* Fin stylos Logos */
  
        #header #navbar #navbar_links {
          padding: 0 15px;
          list-style: none;
          display: flex;
          align-items: center;
          gap: 30px;
          margin: 0;
          transition: all 0.2s !important;
        }

          #navbar_links .activo{
            display: flex;
            align-items: center;
            flex-direction: column;
          }
            #navbar_links .activo .linea-activo {
              background-color: var(--primary-color);
              width: 72.9%;
              height: 5px;
              border-radius: 5px 5px 0 0;
            }
          
            #navbar_links .cont-item .items{
              height: 54px;
              display: flex;
              align-items: center;
            }
              .cont-item .items a{
                color: #504B50;
              }

              .activo .items a{
                color: white !important;
              }

              .cont-item .items #contacto_item_link{
                display: flex;
                text-decoration: none;
                background-color: var(--primary-color);
                color: var(--color-white-1) !important;
                padding: 10px 20px;
                border-radius: 10px;
                font-weight: 600;
                transition: background-color 0.3s;
              }

              
              .cont-item .items #contacto_item_link:hover {
                background-color: #E02020;
              }











/* Media queries para responsive */
@media (max-width: 768px) {
  .logo-section-home {
    display: none; /* Ocultar en móvil */
  }

  #inicio_web #header #navbar {
    width: calc(100% - 30px);
    justify-content: space-between;
  }


  .menu-hamburguesa {
    display: block; /* Mostrar en móvil */
  }

  #navbar {
    padding: 10px 15px;
  }

  #navbar-logo {
    opacity: 1;
  }

  #navbar #navbar-logo img {
    width: 120px;
    display: block;
  }

  #header #navbar #navbar_links {
    position: absolute;
    flex-direction: column;
    background-color: var(--background-dark);
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    border-radius: 0 0 14px 14px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    gap: 0;
  }

  #header #navbar #navbar_links.active {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
    padding: 10px 0;
  }

  #navbar_links .cont-item {
    width: 100%;
    text-align: center;
  }

  #navbar_links .cont-item .items {
    height: auto;
    padding: 15px 0;
    justify-content: center;
  }

  #navbar_links .activo .linea-activo {
    width: 30%;
    margin-top: 5px;
  }

  .cont-item .items #contacto_item_link {
    margin: 10px auto;
  }
}
  
               













  
              
.icon {  
  font-size: 20px;
}
  
  
  /* ------------------------------ */
  /* HERO SECTION */
  /* ------------------------------ */
    #inicio_web #home {
      position: relative;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      max-height: 1080px !important;
    }
  
      #home #hero_content {
        max-width: 800px;
        padding-top: 160px;
    
      }
  
        #home #hero_content h1 {
          font-size: 2.8rem;
          line-height: 1.2;
        }
        #home #hero_content img{
            width: 240px;
        }
  
        #hero_content h1 span {
          color: var(--primary-color);
        }
  
        #home #hero_content p {
          font-size: 1.2rem;
          color: var(--color-gray-1);
        }
  
        #hero_buttons {
          display: flex;
          gap: 20px;
          justify-content: center;
        }
  
          /* Botones principales */
          #hero_buttons .btn-primario,
          .btn-secundario {
            display: inline-block;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            text-align: center;
            border-radius: 13px;
            transition: all 0.3s ease;
            cursor: pointer;
          }
  
          #hero_buttons .btn-primario {
            background-color: var(--primary-color);
            color: var(--color-white-1);
          }
            #hero_buttons .btn-primario #arrow_evoluciona{
              font-size: 20px;
            }
  
          #hero_buttons .btn-primario:hover {
            background-color: #E02020;
          }
          
          #hero_buttons .btn-secundario {
            background-color: transparent;
            color: var(--color-white-1);
            border: 2px solid var(--primary-color);
          }
          
          #hero_buttons .btn-secundario:hover {
            background-color: var(--primary-color);
            color: var(--color-white-1);
          }
        #cont_redes{
          display: flex;
          font-size: 25px;
          align-items: center;
          justify-content: center;
          gap: 15px;
        }

          #cont_redes a:hover{
            color: var(--primary-color);
            font-size: 40px;
          }
        #cont_data_client{
          display: flex;
          gap: 60px;
          justify-content: center;
          align-items: center;
      
        }

          #cont_data_client h1 {
            color: var(--primary-color);
          }
          #cont_data_client  {
            font-size: 20px;
          }

  /* ------------------------------ */
  /* CONTENIDO DEBAJO DEL HERO */
  /* ------------------------------ */
  .contenido {
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
  }
  










/* ------------------------------ */
  /* DEFAULT */
/* ------------------------------ */

.title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 40px;
}

.title-highlight {
  color: var(--primary-color);
}


.title,
.title-highlight {
  font-size: var(--fs-1-d);
  font-weight: 500;
  width: fit-content;
}

.description-section {
  color: var(--color-gray-2);
  font-size: var(--fs-2-d);
}



/* ------------------------------ */
  /* SECTION: PORQUÉ ELEGIRNOS */
/* ------------------------------ */

.main-section-why-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.main-section-why-us .icon-key-benefits {
  font-size: 24px;
}

.main-section-why-us .title-key-benefits {
  font-size: 19px;
  font-weight: 550;
}

.description-key-benefits {
  color: var(--color-gray-2);
  font-size: 17px;
}

.main-section-why-us .card {
  position: relative;
  background: transparent;
  padding: 15px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-items: flex-start;
  z-index: 1;
}

.main-section-why-us .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, #FF2C2C, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  border-radius: 8px; 
}









/* ------------------------------ */
  /* SECTION: PREGUNTAS Y RESPUESTAS */
/* ------------------------------ */


.main-section-questions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.faq-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: transparent;
  transition: all 0.3s ease;
  z-index: 1;
  
}

.faq-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, #FF2C2C, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
  border-radius: 8px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
}

.faq-question p {
  font-size: 17px;
  color: #ffffff;
  text-align: left;
}

.expand-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.plus-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0 20px;
  color: #cccccc;
  text-align: left;
}

.faq-card.active .faq-answer {
  max-height: 200px;
  text-align: left;
  padding: 0 20px 15px;
  font-size: 16px;
  color: var(--color-gray-2);
}

.faq-card.active .plus-icon {
  transform: rotate(45deg);
}



@media (max-width: 768px) {
  .title {
    font-size: 24px;
  }

  .description-section {
    font-size: 14px;
  }

  .faq-question p {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ------------------------------ */
/* BOTON FLOTANTE DE WHATSAPP */
/* ------------------------------ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.whatsapp-float-button {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-float-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), #25D366);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float-button:hover {
  transform: scale(1.1);
}

.whatsapp-float-button:hover::before {
  opacity: 1;
}

.whatsapp-icon {
  font-size: 32px;
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: #333;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-width: 8px 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float-button {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    font-size: 26px;
  }
  
  .whatsapp-tooltip {
    display: none;
  }
}


/* ------------------------------ */
/* SECCIÓN: SOBRE NOSOTROS */
/* ------------------------------ */

.section-about-us {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-us-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.about-us-text {
  flex: 1;
  text-align: left;
}

.about-us-subtitle {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.about-us-description {
  color: var(--color-gray-1);
  margin-bottom: 20px;
  font-size: var(--fs-4-d);
  line-height: 1.6;
}

.about-us-image {
  flex: 1;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}



.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
}

.about-us-values {
  text-align: left;
}

.values-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 20px;
}

.value-card {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-color), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  border-radius: 8px;
}

.value-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.value-description {
  color: var(--color-gray-2);
  font-size: 15px;
  line-height: 1.5;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .about-us-content {
    flex-direction: column-reverse;
  }
  
  .about-us-text,
  .about-us-image {
    max-width: 100%;
  }
  
  .values-container {
    flex-direction: column;
  }
}












/* ------------------------------ */
  /* SECCION: NUESTROS PRODUCTOS */
/* ------------------------------ */

/* Estilos para las tarjetas de productos */
.section-our-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.product-card.reverse {
  flex-direction: row-reverse;
}

.product-info {
  flex: 1;
  max-width: 500px;
  text-align: left;
}

.product-title {
  font-size: var(--fs-3-d);
  margin-bottom: 15px;
  font-weight: 600;
}

.product-description {
  color: #a0a0a0;
  margin-bottom: 20px;
  font-size: var(--fs-4-d);
}

.product-link {
  color: #ff3a3a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.product-link:hover {
  opacity: 0.8;
}

.arrow-icon {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.product-link:hover .arrow-icon {
  transform: translateX(5px);
}

.product-image {
  flex: 1;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
}

.separator {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 40px 0;
}



/* ------------------------------ */
  /* SECCION: LLAMADO A LA ACCIÓN */
/* ------------------------------ */

/* Estilos para la sección de Call to Action */
.section-call-to-action {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-image: url("../img/general/bg-call-to-action.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
}

.cta-question {
  font-size: 18px;
  margin-bottom: 15px;
}

.cta-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.cta-title .highlight {
  color: #ff3a3a;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #ff3a3a;
  color: white;
  border: 2px solid #ff3a3a;
}

.btn-primary:hover {
  background-color: #e62e2e;
  border-color: #e62e2e;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid #ff3a3a;
}

.btn-outline:hover {
  background-color: rgba(255, 58, 58, 0.1);
}

.btn-separator {
  color: #a0a0a0;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .product-card,
  .product-card.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .product-info,
  .product-image {
    max-width: 100%;
  }

  .title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-separator {
    margin: 5px 0;
  }
}




























/* ------------------------------ */
/* FOOTER */
/* ------------------------------ */

.footer {
  background-color: var(--background-dark);
  color: var(--color-white-1);
  padding: 40px 24px 20px;
  width: 100%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-content-row-section {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

/* Logo y redes sociales */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-icon iconify-icon {
  font-size: 20px;
  color: white;
}

/* Títulos y contenido */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-title .icon-section {
  color: var(--primary-color);
  font-size: 22px;
}

.footer-main-content {
  display: flex;
  text-align: left;
  flex-direction: column;
  gap: 10px;
}

.footer-text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-text:hover {
  color: var(--color-white-1);
}

/* Copyright */
.footer-copyright p {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(to top, var(--primary-color), #0f0f0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  user-select: none;
  white-space: nowrap;
}



/* ------------------------------ */
/* RESPONSIVE DESIGN */
/* ------------------------------ */

/* Tablets */
@media (max-width: 992px) {
  .footer-container {
    gap: 40px;
  }

  .footer-section {
    min-width: 180px;
  }
}

/* Tablets pequeñas y móviles grandes */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-contact,
  .footer-location {
    text-align: center;
  }

  .footer-title {
    justify-content: center;
  }

  .footer-main-content {
    align-items: center;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .footer {
    padding: 30px 16px 15px;
  }

  .footer-logo {
    max-width: 130px;
  }

  .footer-icon {
    width: 36px;
    height: 36px;
  }

  .footer-icon iconify-icon {
    font-size: 18px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-copyright {
    margin-top: 30px;
    font-size: 12px;
  }
}

/* Móviles muy pequeños */
@media (max-width: 320px) {
  .footer-social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}






















#home #hero_content {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

#home #hero_content img {
  width: 180px;
}

#home #hero_content p {
  font-size: 17px;
}

#hero_buttons  {
  gap: 10px;
  flex-direction: column;
  align-items: center;
}
#hero_buttons .btn-primario, .btn-secundario {
  font-size: 16px;
  width: 230px;
  align-items: center;
  text-wrap: nowrap;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}

#hero_buttons .btn-secundario {
  display: none;
}

#cont_data_client {
  gap: 15px;
}




.separator-line-section {
  height: 1px;
}




@media (max-width: 480px) {

  /* ------------------------------ */
  /* SECTION: INICIO */
  /* ------------------------------ */

  #home #hero_content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  #home #hero_content img {
    width: 180px;
  }

  #home #hero_content p {
    font-size: 17px;
  }

  #hero_buttons  {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  #hero_buttons .btn-primario, .btn-secundario {
    font-size: 16px;
    width: 230px;
    align-items: center;
    text-wrap: nowrap;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  #hero_buttons .btn-secundario {
    display: none;
  }

  #cont_data_client {
    gap: 15px;
  }

  /* ------------------------------ */
  /* SECTION: SOBRE NOSOTROS */
  /* ------------------------------ */

  .about-us-content {
    flex-direction: column;
  }
  .about-us-description {
    font-size: var(--fs-4-m);
  }

  /* ------------------------------ */
  /* SECTION: ¿POR QUÉ ELEGIRNOS? */
  /* ------------------------------ */

  .title,
  .title-highlight {  
    font-size: var(--fs-1-m) !important;
    font-weight: 500 !important;
    width: fit-content !important;
  }

  .description-section {
    color: var(--color-gray-2) !important;
    font-size: var(--fs-2-m) !important;
  }

  .main-section-why-us {
    flex-direction: column !important;
  }

  .main-section-why-us .icon-key-benefits {
    font-size: var(--fs-3-m);
  }

  .main-section-why-us .title-key-benefits {
    font-size: var(--fs-3-m);
    font-weight: 350;
  }

  .description-key-benefits {
    color: var(--color-gray-2);
    font-size: var(--fs-4-m);
  }

  /* ------------------------------ */
  /* SECTION: NUESTROS PRODUCTOS */
  /* ------------------------------ */
  
  .product-card {
    flex-direction: column;
  }

  .product-card.reverse {
    flex-direction: column;
}

  .product-card .product-info {
    max-width: 100%;
  }

  .product-card .product-image {
    max-width: 100%;
  }
  .product-title {
    font-size: var(--fs-3-m);
  }

  .product-description {
    font-size: var(--fs-4-m);
  }

  /* ------------------------------ */
  /* SECTION: FOOTER */
  /* ------------------------------ */

  .footer-container {
    margin-bottom: 40px;
  }
  
    .footer-content-row-section{
        flex-direction:column ;    
    }
    .footer-main-content{
        text-align: center !important;
    }
  .footer-section {
    text-align: left;
  }

  .footer-title {
    text-align: center;
    font-size: var(--fs-5-m);
  }

  .footer-text {
    width: 100%;
    font-size: var(--fs-5-m);
  }

}




