@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* Colores principales */
/* Colores de fondo */
/* Colores de texto y bordes */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Mantiene el centrado vertical */
  /* align-items: flex-start; Alinea los elementos a la izquierda */
  text-align: left; /* Alinea el texto a la izquierda */
  padding: 2rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-car-gnc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
}

.hero-section h1 {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2rem;
}

.hero-section p {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.conteiner-hero {
  margin-left: 12rem;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - WHY CHOOSE                                   #
    #                                                                                               #
    #################################################################################################
*/
.why-choose-us {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.why-choose-us h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.why-choose-us p {
  max-width: 80ch;
  line-height: 1.5;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - BENEFITS                                     #
    #                                                                                               #
    #################################################################################################
*/
.benefits {
  background-color: #E6F2EA;
  display: grid;
  grid-template-columns: 1fr 2fr; /* Izquierda pequeña, derecha más grande */
  gap: 20px; /* Espacio entre columnas */
  padding: 20px;
  padding-left: 15rem;
  padding-right: 15rem;
}

.benefits-text {
  display: grid;
  font-size: 1.2rem;
  margin: 1.2rem;
}

.benefits-text h2 {
  font-weight: 400;
  padding-top: 1.8rem;
}

/* Columna derecha con las tarjetas */
.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  grid-template-rows: auto auto; /* 2 filas */
  gap: 15px; /* Espacio entre tarjetas */
  margin: 2rem;
  font-weight: 400;
}

/* Estilo de cada tarjeta */
.card {
  border-radius: 10px;
  padding: 20px;
}

.card i {
  font-size: 2rem;
  color: #222222;
  margin-bottom: 10px;
  display: block;
  color: #1B8636;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - PARTNERS                                     #
    #                                                                                               #
    #################################################################################################
*/
.partners {
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/Blog05.jpg'); */
  background-color: #F5F5F5;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  /* height: 400px; */
}

.partners-text {
  color: #222222;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.marcas {
  display: flex;
  justify-content: space-evenly;
  text-decoration: none;
}

.marcas img {
  width: auto;
  height: 50px;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - HOW TO START                                 #
    #                                                                                               #
    #################################################################################################
*/
.how-to-start {
  background-color: #FBE6E6;
  padding: 2.5rem 1rem 3rem 1rem; /* Agregamos padding para un mejor espacio en móvil */
}

.how-to-start h2 {
  color: #222222;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 1rem; /* Agregamos espacio entre las columnas */
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 350px;
}

.steps i {
  font-size: 3rem;
  color: #4A4A4A;
}

.step h3 {
  font-weight: 500;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                      SECTION - CALL TO ACTION                                 #
    #                                                                                               #
    #################################################################################################
*/
.call-to-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 15%;
  background-color: #F5F5F5;
}

.call-to-action-text {
  max-width: 50%;
}

.call-to-action h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.call-to-action p {
  font-size: 1rem;
  color: #4A4A4A;
}

.call-to-action-button {
  display: flex;
  gap: 1rem;
}

.call-to-action-button a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  border: 2px solid transparent;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

/* Botón de "Solicitar" o "Cotizar ahora!" */
.call-to-action-button a:first-child {
  background-color: #1B8636;
  color: #FFFFFF;
}

/* Botón de "Más información" */
.call-to-action-button a:last-child {
  background-color: transparent;
  color: #4A4A4A;
  border-color: #DDDDDD;
}

.icono-personalizado {
  font-size: 48px;
  color: #1B8636;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - SERVICIOS                                    #
    #                                                                                               #
    #################################################################################################
*/
.servicios {
  background-image: url("../../assets/img/road.png");
  background-position: left center;
  background-repeat: no-repeat;
  padding: 3rem 15%;
  position: relative;
}

/* Contenedor de la imagen del auto */
.servicios-auto {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.auto-imagen {
  max-width: 900px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.servicios-header {
  text-align: center;
  margin-bottom: 3rem;
}

.servicios-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 1rem;
}

.servicios-header p {
  font-size: 1.2rem;
  color: #4A4A4A;
  font-weight: 400;
  margin: 0 auto;
}

/* Grid de Cards */
.servicios-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Estilos de cada Card */
.servicio-card {
  background-color: #FFFFFF;
  border: 2px solid #E6F2EA;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.servicio-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.servicio-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.servicio-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 1rem;
}

.servicio-text {
  font-size: 0.95rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.boton-servicio {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #222222;
  background-color: #E6F2EA;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--color-borde-claro);
  transition: background-color 0.3s ease;
  margin-top: auto;
  text-align: center;
}

.boton-servicio:hover {
  background-color: #156b2b;
  color: #FFFFFF;
}

/* 💻 Responsive para Laptop 1024px */
@media (max-width: 1024px) {
  .servicios {
    padding: 3rem 8%;
  }
  .auto-imagen {
    max-width: 700px;
  }
  .servicios-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
/* 📱 Responsive para Tablet 768px */
@media (max-width: 768px) {
  .servicios {
    padding: 2.5rem 5%;
  }
  .auto-imagen {
    max-width: 600px;
  }
  .servicios-header h2 {
    font-size: 1.75rem;
  }
  .servicios-header p {
    font-size: 0.95rem;
  }
  .servicios-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .servicio-img {
    height: 180px;
  }
  .servicio-body {
    padding: 1.25rem;
  }
  .servicio-title {
    font-size: 1.1rem;
  }
  .servicio-text {
    font-size: 0.9rem;
  }
}
/* 📱 Responsive para Móviles L 425px */
@media (max-width: 425px) {
  .servicios {
    padding: 2rem 5%;
  }
  .servicios-auto {
    margin-bottom: 1.5rem;
  }
  .auto-imagen {
    max-width: 100%;
  }
  .servicios-header h2 {
    font-size: 1.5rem;
  }
  .servicios-header p {
    font-size: 0.9rem;
  }
  .servicios-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .servicio-card {
    max-width: 100%;
  }
  .servicio-img {
    height: 200px;
  }
  .servicio-body {
    padding: 1.5rem;
  }
  .boton-servicio {
    width: 100%;
    text-align: center;
  }
}
/* 📱 Responsive para Móviles M 375px */
@media (max-width: 375px) {
  .servicios {
    padding: 1.75rem 4%;
  }
  .servicios-header {
    margin-bottom: 2rem;
  }
  .servicios-header h2 {
    font-size: 1.4rem;
  }
  .servicio-img {
    height: 180px;
  }
  .servicio-body {
    padding: 1.25rem;
  }
  .servicio-title {
    font-size: 1.05rem;
  }
  .servicio-text {
    font-size: 0.875rem;
  }
}
/* 📱 Responsive para Móviles S 320px */
@media (max-width: 320px) {
  .servicios {
    padding: 1.5rem 3%;
  }
  .servicios-header h2 {
    font-size: 1.3rem;
  }
  .servicios-header p {
    font-size: 0.85rem;
  }
  .servicio-img {
    height: 160px;
  }
  .servicio-body {
    padding: 1rem;
  }
  .servicio-title {
    font-size: 1rem;
  }
  .servicio-text {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  .boton-servicio {
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                              M A I N                                          #
    #                                        SECTION - CARS                                         #
    #                                                                                               #
    #################################################################################################
*/
.cars-section {
  padding: 4rem 2rem;
  background-color: #E6F2EA;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  align-items: stretch;
  gap: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.car-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 2rem 1rem;
  background-color: #FFFFFF;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.car-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(27, 134, 54, 0.2);
}

.car-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.car-item:hover .car-icon {
  filter: grayscale(0%);
}

.car-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B8636;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 425px) {
  .cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }
}
@media (max-width: 320px) {
  .cars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                        SECTION - MARCAS                                       #
    #                                                                                               #
    #################################################################################################
*/
.marcas-section {
  background-color: #FFFFFF;
  padding: 3rem 10%;
}

.marcas-titulo {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.marcas-titulo h2 {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: #1B8636;
  letter-spacing: 2px;
  margin: 0;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.marca-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0.2rem;
  background-color: white;
  border-radius: 8px;
  border: 2px solid var(--color-borde-claro);
  transition: all 0.3s ease;
  min-height: 120px;
}
.marca-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(27, 134, 54, 0.15);
  border-color: var(--color-principal-verde);
}
.marca-item img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
}
/* 💻 Responsive para Laptop 1024px */
@media (max-width: 1024px) {
  .marcas-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
/* 📱 Responsive para Tablet 768px */
@media (max-width: 768px) {
  .marcas-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
  }
  .marca-item {
    padding: 1.25rem;
    min-height: 100px;
  }
}
/* 📱 Responsive para Móviles L 425px */
@media (max-width: 425px) {
  .marcas-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
  }
  .marca-item {
    padding: 1rem;
    min-height: 90px;
  }
  .marca-item img {
    max-width: 110px;
  }
}
/* 📱 Responsive para Móviles M 375px */
@media (max-width: 375px) {
  .marcas-grid {
    gap: 0.875rem;
  }
  .marca-item {
    padding: 0.875rem;
    min-height: 85px;
  }
  .marca-item img {
    max-width: 100px;
  }
}
/* 📱 Responsive para Móviles S 320px */
@media (max-width: 320px) {
  .marcas-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .marca-item {
    padding: 0.75rem;
    min-height: 80px;
  }
  .marca-item img {
    max-width: 90px;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - HERO                                              #
    #                                                                                               #
    #################################################################################################
*/
.hero-form {
  background-color: #1B8636;
}

.title-form {
  font-size: 1.5rem;
}

.icon-hero {
  font-size: 45px;
  color: #1B8636;
}

.tarjetas-iconos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.icono-tarjeta {
  width: 50px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}
.icono-tarjeta:hover {
  opacity: 1;
  transform: scale(1.1);
}

/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - PARTNERS MARQUEE                                  #
    #                                   (Animación hacia la derecha)                                #
    #                                                                                               #
    #################################################################################################
*/
.partners {
  background-color: #FFFFFF;
  padding: 2rem 0;
  overflow: hidden;
}

.marcas-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marcas-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollRight 25s linear infinite;
  width: max-content;
}
.marcas-track img {
  width: auto;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marcas-marquee:hover .marcas-track {
  animation-play-state: paused;
}

/*
    #################################################################################################
    #                                                                                               #
    #                              SECTION - MARCAS DE AUTOS MARQUEE                                #
    #                               (Animación hacia la izquierda)                                  #
    #                                                                                               #
    #################################################################################################
*/
.marcas-autos-marquee {
  background-color: #FFFFFF;
  padding: 3rem 0;
  overflow: hidden;
}

.autos-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.autos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollLeft 30s linear infinite;
  width: fit-content;
}
.autos-track img {
  width: auto;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s ease;
}
.autos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.autos-marquee:hover .autos-track {
  animation-play-state: paused;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                      RESPONSIVE                                               #
    #                                                                                               #
    #################################################################################################
*/
@media (max-width: 768px) {
  .marcas-track {
    gap: 3rem;
  }
  .marcas-track img {
    height: 40px;
  }
  .autos-track {
    gap: 3rem;
  }
  .autos-track img {
    height: 50px;
  }
  .marcas-autos-titulo h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 425px) {
  .marcas-track {
    gap: 2rem;
  }
  .marcas-track img {
    height: 35px;
  }
  .autos-track {
    gap: 2.5rem;
  }
  .autos-track img {
    height: 45px;
  }
  .marcas-autos-titulo h2 {
    font-size: 1.5rem;
  }
  .marcas-autos-marquee {
    padding: 2rem 0;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - PRODUCTOS GNC                                     #
    #                                                                                               #
    #################################################################################################
*/
.productos-section {
  padding: 4rem 10%;
}

.productos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.productos-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.5rem;
}

.productos-header p {
  font-size: 1.4rem;
  color: #4A4A4A;
  font-weight: 500;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.producto-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
}
.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.producto-titulo {
  background-color: #1B8636;
  padding: 1rem;
  text-align: center;
}
.producto-titulo h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.producto-imagen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  min-height: 250px;
  position: relative;
}
.producto-imagen img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.producto-specs {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  flex-grow: 1;
}

.spec-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #DDDDDD;
}
.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-size: 0.9rem;
  color: #4A4A4A;
  font-weight: 400;
  flex: 1;
}

.spec-value {
  font-size: 1.1rem;
  color: #222222;
  font-weight: 700;
  text-align: right;
}

.boton-producto {
  display: block;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #1B8636;
  padding: 1rem 1.5rem;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}
.boton-producto:hover {
  background-color: #1B8636;
}

@media (max-width: 1024px) {
  .productos-section {
    padding: 3rem 8%;
  }
  .productos-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .productos-section {
    padding: 2.5rem 5%;
  }
  .productos-header h2 {
    font-size: 2rem;
  }
  .productos-header p {
    font-size: 1rem;
  }
  .productos-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .producto-imagen {
    min-height: 220px;
    padding: 1.5rem;
  }
}
@media (max-width: 425px) {
  .productos-section {
    padding: 2rem 5%;
  }
  .productos-header h2 {
    font-size: 1.75rem;
  }
  .productos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .producto-titulo h3 {
    font-size: 1.3rem;
  }
  .producto-imagen {
    min-height: 200px;
    padding: 1rem;
  }
  .spec-label {
    font-size: 0.85rem;
  }
  .spec-value {
    font-size: 1rem;
  }
  .boton-producto {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - KIT 5TA GENERACIÓN                                #
    #                                                                                               #
    #################################################################################################
*/
.kit-gnc-section {
  padding: 4rem 10%;
}

.kit-gnc-contenido {
  max-width: 1200px;
  margin: 0 auto;
}

.kit-intro {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: #E6F2EA;
  border-radius: 12px;
  border-left: 5px solid #1B8636;
}
.kit-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4A4A4A;
  margin: 0;
}

.kit-imagen-interactiva {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin: 0 auto 4rem auto;
}

.kit-imagen-interactiva .imagen-kit {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Estilo de los puntos */
.punto {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #1b8636;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: pulse 2s infinite;
}

.punto:hover {
  background-color: #0e5823;
  transform: translate(-50%, -50%) scale(1.3);
}

/* Tooltip */
.punto::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.punto:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Efecto de pulso */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}
.kit-componentes {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.componentes-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: #222222;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.componentes-titulo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #1B8636;
  border-radius: 2px;
}

.componentes-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.componentes-lista li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1rem;
  border-bottom: 1px solid #DDDDDD;
  transition: all 0.3s ease;
}
.componentes-lista li:last-child {
  border-bottom: none;
}
.componentes-lista li:hover {
  background-color: #E6F2EA;
  padding-left: 2rem;
}

.numero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #1B8636;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nombre {
  font-size: 1rem;
  color: #222222;
  line-height: 1.5;
  font-weight: 500;
  flex: 1;
}

.kit-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, #1B8636, rgb(18.4472049689, 91.5527950311, 36.8944099379));
  border-radius: 12px;
  text-align: center;
}
.kit-cta p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.boton-kit {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  color: #1B8636;
  background-color: #FFFFFF;
  padding: 1rem 3rem;
  border-radius: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.boton-kit:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .kit-gnc-section {
    padding: 2.5rem 5%;
  }
  .kit-intro p {
    font-size: 1rem;
  }
  .kit-imagen-interactiva {
    margin-bottom: 2rem;
  }
  .kit-componentes {
    padding: 2rem 1.5rem;
  }
  .componentes-titulo {
    font-size: 1.75rem;
  }
  .componentes-lista li {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
  }
  .componentes-lista li:hover {
    padding-left: 1rem;
  }
  .numero {
    min-width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .nombre {
    font-size: 0.95rem;
  }
  .kit-cta p {
    font-size: 1.25rem;
  }
}
@media (max-width: 425px) {
  .kit-gnc-section {
    padding: 2rem 5%;
  }
  .kit-intro {
    padding: 1.5rem;
  }
  .kit-componentes {
    padding: 1.5rem 1rem;
  }
  .componentes-lista li {
    gap: 0.75rem;
    padding: 0.85rem;
  }
  .nombre {
    font-size: 0.9rem;
  }
  .kit-cta {
    padding: 2rem 1.5rem;
  }
  .kit-cta p {
    font-size: 1.1rem;
  }
  .boton-kit {
    width: 100%;
    padding: 0.85rem 2rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - HERO NOSOTROS                                     #
    #                                                                                               #
    #################################################################################################
*/
.hero-nosotros {
  position: relative;
  min-height: 80vh;
  background-image: url("../../assets/img/taller-macrogas.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.hero-nosotros-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.hero-nosotros-content {
  text-align: center;
  color: #FFFFFF;
  padding: 3rem 2rem;
  max-width: 1200px;
}

.hero-nosotros-titulo {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-nosotros-descripcion {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-nosotros-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  min-width: 200px;
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-destacado {
  background-color: #1B8636;
  border-color: #1B8636;
}
.stat-destacado:hover {
  background-color: rgb(18.4472049689, 91.5527950311, 36.8944099379);
}

.stat-icon {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.stat-numero {
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.stat-numero::after {
  content: "+";
  font-size: 2rem;
  margin-left: 0.25rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .hero-nosotros-titulo {
    font-size: 3rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1.2rem;
  }
  .stat-item {
    min-width: 180px;
    padding: 1.75rem 2rem;
  }
  .stat-numero {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero-nosotros {
    min-height: auto;
    padding: 4rem 0;
  }
  .hero-nosotros-titulo {
    font-size: 2.5rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .hero-nosotros-stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .stat-item {
    width: 100%;
    max-width: 350px;
    padding: 1.5rem 2rem;
  }
  .stat-numero {
    font-size: 2.25rem;
  }
  .stat-icon {
    font-size: 2rem;
  }
}
@media (max-width: 425px) {
  .hero-nosotros-content {
    padding: 2rem 1rem;
  }
  .hero-nosotros-titulo {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1rem;
  }
  .stat-item {
    padding: 1.25rem 1.5rem;
    min-width: auto;
  }
  .stat-numero {
    font-size: 2rem;
  }
  .stat-numero::after {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.875rem;
  }
  .stat-icon {
    font-size: 1.75rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - CONTADOR STATS                                    #
    #                                                                                               #
    #################################################################################################
*/
.stats-section {
  background-color: #F5F5F5;
  padding: 4rem 10%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  width: 200px;
  height: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}
.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #1B8636;
}

.stat-destacado {
  background: linear-gradient(135deg, #1B8636, rgb(18.4472049689, 91.5527950311, 36.8944099379));
}
.stat-destacado .stat-icon,
.stat-destacado .stat-numero,
.stat-destacado .stat-label {
  color: #FFFFFF;
}
.stat-destacado:hover {
  background: linear-gradient(135deg, rgb(22.7236024845, 112.7763975155, 45.4472049689), rgb(14.1708074534, 70.3291925466, 28.3416149068));
  border-color: rgb(9.8944099379, 49.1055900621, 19.7888198758);
}

.stat-icon {
  font-size: 2.5rem;
  color: #1B8636;
  margin-bottom: 0.25rem;
}

.stat-numero {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  line-height: 1;
}
.stat-numero::after {
  content: "+";
  font-size: 1.75rem;
  margin-left: 0.2rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .hero-nosotros-titulo {
    font-size: 3rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1.2rem;
  }
  .stats-section {
    padding: 3.5rem 8%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item {
    width: 180px;
    height: 180px;
    padding: 1.25rem 0.875rem;
  }
  .stat-icon {
    font-size: 2.25rem;
  }
  .stat-numero {
    font-size: 2.25rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .hero-nosotros {
    min-height: 50vh;
  }
  .hero-nosotros-titulo {
    font-size: 2.5rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1.1rem;
  }
  .stats-section {
    padding: 3rem 5%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .stat-item {
    width: 160px;
    height: 160px;
    padding: 1rem 0.75rem;
  }
  .stat-numero {
    font-size: 2rem;
  }
  .stat-icon {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}
@media (max-width: 425px) {
  .hero-nosotros-content {
    padding: 2rem 1rem;
  }
  .hero-nosotros-titulo {
    font-size: 2rem;
  }
  .hero-nosotros-descripcion {
    font-size: 1rem;
  }
  .stats-section {
    padding: 2.5rem 5%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-item {
    width: 140px;
    height: 140px;
    padding: 0.875rem 0.5rem;
  }
  .stat-numero {
    font-size: 1.75rem;
  }
  .stat-numero::after {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .stat-icon {
    font-size: 1.75rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                          SECTION - PUNTOS ÚNICOS DE VALOR (PUV)                               #
    #                                                                                               #
    #################################################################################################
*/
.puv-section {
  background-color: #FFFFFF;
  padding: 4rem 10%;
}

.puv-header {
  text-align: center;
  margin-bottom: 3rem;
}
.puv-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.75rem;
}
.puv-header p {
  font-size: 1.1rem;
  color: #4A4A4A;
  font-weight: 400;
}

.puv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.puv-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  background-color: #F5F5F5;
  padding: 2rem 1.75rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
}
.puv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #1B8636, rgb(18.4472049689, 91.5527950311, 36.8944099379));
  transition: height 0.4s ease;
  z-index: 0;
}
.puv-item:hover::before {
  height: 100%;
}
.puv-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(27, 134, 54, 0.2);
  border-color: #1B8636;
}
.puv-item:hover .puv-icon {
  background-color: #FFFFFF;
  color: #1B8636;
  transform: scale(1.1) rotate(5deg);
}
.puv-item:hover .puv-titulo,
.puv-item:hover .puv-descripcion {
  color: #FFFFFF;
}
.puv-item > * {
  position: relative;
  z-index: 1;
}

.puv-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1B8636, rgb(18.4472049689, 91.5527950311, 36.8944099379));
  border-radius: 50%;
  transition: all 0.4s ease;
}
.puv-icon i {
  font-size: 2rem;
  color: #FFFFFF;
}

.puv-titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222222;
  margin: 0;
  transition: color 0.4s ease;
  line-height: 1.3;
}

.puv-descripcion {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0;
  transition: color 0.4s ease;
}

@media (max-width: 1024px) {
  .puv-section {
    padding: 3.5rem 8%;
  }
  .puv-header h2 {
    font-size: 2rem;
  }
  .puv-grid {
    gap: 1.75rem;
  }
  .puv-item {
    padding: 1.875rem 1.5rem;
    max-width: 320px;
  }
  .puv-icon {
    width: 65px;
    height: 65px;
  }
  .puv-icon i {
    font-size: 1.85rem;
  }
  .puv-titulo {
    font-size: 1.2rem;
  }
  .puv-descripcion {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .puv-section {
    padding: 3rem 5%;
  }
  .puv-header {
    margin-bottom: 2.5rem;
  }
  .puv-header h2 {
    font-size: 1.875rem;
  }
  .puv-header p {
    font-size: 1rem;
  }
  .puv-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .puv-item {
    padding: 1.75rem 1.5rem;
    max-width: 400px;
  }
  .puv-icon {
    width: 60px;
    height: 60px;
  }
  .puv-icon i {
    font-size: 1.75rem;
  }
  .puv-titulo {
    font-size: 1.2rem;
  }
  .puv-descripcion {
    font-size: 0.9rem;
  }
}
@media (max-width: 425px) {
  .puv-section {
    padding: 2.5rem 5%;
  }
  .puv-header h2 {
    font-size: 1.65rem;
  }
  .puv-header p {
    font-size: 0.95rem;
  }
  .puv-item {
    padding: 1.5rem 1.25rem;
  }
  .puv-icon {
    width: 55px;
    height: 55px;
  }
  .puv-icon i {
    font-size: 1.6rem;
  }
  .puv-titulo {
    font-size: 1.1rem;
  }
  .puv-descripcion {
    font-size: 0.875rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   PÁGINA DE MANTENIMIENTO                                    #
    #                                                                                               #
    #################################################################################################
*/
.mantenimiento-body {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../assets/img/hero-car-gnc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 2rem;
  color: #FFFFFF;
}

.mantenimiento-logotipo {
  width: 250px;
  height: auto;
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.mantenimiento-contenido {
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.mantenimiento-titulo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  animation: fadeIn 1.2s ease-out;
}

.mantenimiento-subtexto {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeIn 1.4s ease-out;
}

.countdown-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1.6s ease-out;
}

.countdown-box {
  background-color: rgba(27, 134, 54, 0.9);
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  min-width: 120px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.countdown-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.countdown-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.8s ease-out;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}
.social-link i {
  font-size: 1.8rem;
}
.social-link.facebook i {
  color: #1877F2;
}
.social-link.instagram i {
  color: #E4405F;
}
.social-link.whatsapp i {
  color: #25D366;
}

.mensaje-final {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 💻 Tablet 768px */
@media (max-width: 768px) {
  .mantenimiento-logotipo {
    width: 200px;
    margin-bottom: 2rem;
  }
  .mantenimiento-titulo {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .mantenimiento-subtexto {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .countdown-container {
    gap: 1rem;
  }
  .countdown-box {
    min-width: 90px;
    padding: 1.5rem 1rem;
  }
  .countdown-number {
    font-size: 2.5rem;
  }
  .countdown-label {
    font-size: 0.85rem;
  }
  .social-links {
    gap: 1.5rem;
  }
  .social-link {
    width: 50px;
    height: 50px;
  }
  .social-link i {
    font-size: 1.5rem;
  }
  .mensaje-final {
    font-size: 1.1rem;
  }
}
/* 📱 Mobile L 425px */
@media (max-width: 425px) {
  .mantenimiento-body {
    padding: 1.5rem;
  }
  .mantenimiento-logotipo {
    width: 160px;
    margin-bottom: 1.5rem;
  }
  .mantenimiento-titulo {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  .mantenimiento-subtexto {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .countdown-container {
    gap: 0.75rem;
  }
  .countdown-box {
    min-width: 70px;
    padding: 1rem 0.75rem;
  }
  .countdown-number {
    font-size: 2rem;
  }
  .countdown-label {
    font-size: 0.75rem;
  }
  .social-links {
    gap: 1.25rem;
  }
  .social-link {
    width: 45px;
    height: 45px;
  }
  .social-link i {
    font-size: 1.3rem;
  }
  .mensaje-final {
    font-size: 1rem;
  }
}
/* 📱 Mobile M 375px */
@media (max-width: 375px) {
  .mantenimiento-logotipo {
    width: 140px;
  }
  .mantenimiento-titulo {
    font-size: 1.4rem;
  }
  .mantenimiento-subtexto {
    font-size: 0.85rem;
  }
  .countdown-box {
    min-width: 65px;
    padding: 0.85rem 0.65rem;
  }
  .countdown-number {
    font-size: 1.75rem;
  }
  .countdown-label {
    font-size: 0.7rem;
  }
  .mensaje-final {
    font-size: 0.95rem;
  }
}
/* 📱 Mobile S 320px */
@media (max-width: 320px) {
  .mantenimiento-logotipo {
    width: 120px;
  }
  .mantenimiento-titulo {
    font-size: 1.2rem;
  }
  .mantenimiento-subtexto {
    font-size: 0.8rem;
  }
  .countdown-container {
    gap: 0.5rem;
  }
  .countdown-box {
    min-width: 60px;
    padding: 0.75rem 0.5rem;
  }
  .countdown-number {
    font-size: 1.5rem;
  }
  .countdown-label {
    font-size: 0.65rem;
  }
  .social-link {
    width: 40px;
    height: 40px;
  }
  .social-link i {
    font-size: 1.2rem;
  }
  .mensaje-final {
    font-size: 0.9rem;
  }
}
.logotipo {
  width: 15.625rem;
  height: 3.125rem;
  display: block;
}

.header-logotipo {
  display: flex;
  align-items: center;
}

.header-logotipo a {
  margin: 0px;
  padding: 0px;
}

.menu-principal {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navegacion {
  display: flex;
}

nav, ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

nav ul li {
  list-style: none;
  margin: 0 10px;
}

nav ul li a {
  color: #222222;
  text-decoration: none;
  font-weight: 400;
}

/* Botón hamburguesa oculto por defecto */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1B8636;
}

/* Ocultamos el checkbox */
#menu-toggle {
  display: none;
}

/* Ícono hamburguesa oculto en escritorio */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #1B8636;
}

.boton-primario {
  text-decoration: none;
  list-style: none;
  font-weight: 600;
  color: #222222;
  margin: 7px;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border: 1px solid #DDDDDD;
  border-radius: 3rem;
}

.boton-secundario {
  text-decoration: none;
  list-style: none;
  font-weight: 600;
  margin: 7px;
  padding: 10px 20px;
  border-radius: 3rem;
  border: none;
  font-size: 16px;
  background-color: #1B8636;
  color: #FFFFFF;
  border: 1px solid #DDDDDD;
  text-transform: uppercase;
}

.boton-terciario {
  background-color: #1B8636;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 3rem;
  border: 2px solid #DDDDDD;
  margin-top: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.boton {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  margin: 1rem;
  border: 2px solid #DDDDDD;
  border-radius: 3rem;
  padding: 10px 20px;
}

/*
    #################################################################################################
    #                                                                                               #
    #                                             BOTONES                                           #
    #                                       SECCION - RVICIOS                                       #
    #                                                                                               #
    #################################################################################################
*/
.boton-primario-servicios {
  margin-top: 13.5rem;
  text-decoration: none;
  list-style: none;
  font-weight: 600;
  color: #222222;
  margin: 7px;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
}

.boton-secundario-servicios {
  text-decoration: none;
  list-style: none;
  font-weight: 600;
  margin: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  background-color: #1B8636;
  color: #FFFFFF;
  border: 1px solid #DDDDDD;
  text-transform: uppercase;
}

.botones-servicios {
  margin-top: 2.7rem;
}

.titulo-principal-h1 {
  color: #222222;
  font-size: 3rem;
  font-weight: 700;
  font-style: bold;
}

.subtitulo-principal {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 400;
}

.banner-titulo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.titulo {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #43db82, #1B8636);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.banner-titulo h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 0 2rem;
}

/* 💻 Responsive para Laptop 1024px */
@media (max-width: 1024px) {
  .titulo {
    height: 100px;
  }
  .titulo h2 {
    font-size: 2.8rem;
  }
}
/* 📱 Responsive para Tablet 768px */
@media (max-width: 768px) {
  .titulo {
    height: 90px;
  }
  .titulo h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
}
/* 📱 Responsive para Móviles L 425px */
@media (max-width: 425px) {
  .titulo {
    height: 70px;
    width: 95%;
  }
  .titulo h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
    letter-spacing: 0.5px;
  }
}
/* 📱 Responsive para Móviles M 375px */
@media (max-width: 375px) {
  .titulo {
    height: 65px;
  }
  .titulo h2 {
    font-size: 1.3rem;
  }
}
/* 📱 Responsive para Móviles S 320px */
@media (max-width: 320px) {
  .titulo {
    height: 60px;
  }
  .titulo h2 {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                   SECTION - CALL TO ACTION                                    #
    #                                        VER PRODUCTOS                                          #
    #                                                                                               #
    #################################################################################################
*/
.cta-productos {
  background-color: #C90000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 10%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.cta-productos-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1.5rem;
  color: #FFFFFF;
  z-index: 2;
}

.cta-productos-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #FFFFFF;
}

.cta-productos-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 50ch;
  margin: 0;
  color: #FFFFFF;
}

.boton-cta-productos {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #222222;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  border: 2px solid #222222;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
}
.boton-cta-productos:hover {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-productos-imagen {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
  z-index: 1;
}

.cta-productos-imagen img {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 968px) {
  .cta-productos {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 3rem 5%;
    min-height: auto;
  }
  .cta-productos-content {
    align-items: center;
    text-align: center;
  }
  .cta-productos-content h2 {
    font-size: 2.5rem;
  }
  .cta-productos-content p {
    max-width: 100%;
  }
  .cta-productos-imagen {
    justify-content: center;
    align-items: center;
  }
  .cta-productos-imagen img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cta-productos {
    padding: 2.5rem 5%;
  }
  .cta-productos-content h2 {
    font-size: 2rem;
  }
  .cta-productos-content p {
    font-size: 1rem;
  }
  .boton-cta-productos {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 425px) {
  .cta-productos {
    padding: 2rem 5%;
    gap: 1.5rem;
  }
  .cta-productos-content h2 {
    font-size: 1.75rem;
  }
  .cta-productos-content p {
    font-size: 0.95rem;
  }
  .boton-cta-productos {
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.5rem;
  }
}
/*
    #################################################################################################
    #                                                                                               #
    #                                           F O O T E R                                         #
    #                                                                                               #
    #################################################################################################
*/
footer {
  background-color: #FFFFFF;
  padding: 3rem 15%;
  color: #222222;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: space-between; /* Alinea los elementos a los extremos */
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #DDDDDD; /* La línea divisoria */
}

.footer-top nav ul {
  display: flex;
  gap: 1.5rem;
}

.footer-top nav ul li {
  list-style: none;
}

.footer-top nav a {
  color: #222222;
  text-decoration: none;
  font-weight: 500;
}

.footer-social-media {
  display: flex;
  gap: 1rem;
}

.footer-social-media img {
  width: 2rem;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #222222;
  text-decoration: none;
}

/* para los enlaces de texto legal */
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-social-media i {
  color: #4A4A4A;
  font-size: 1.5rem;
}

@media (max-width: 320px) {
  .menu-principal {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  .header-logotipo {
    width: 100%;
    justify-content: center;
  }
  .logotipo {
    width: 10rem;
    height: 2rem;
  }
  .menu-icon {
    display: block;
  }
  .navegacion {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  #menu-toggle:checked ~ .navegacion {
    display: flex;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  .boton-primario,
  .boton-secundario {
    width: 100%;
    text-align: center;
    display: block;
  }
  .hero-section {
    min-height: 60vh;
    padding: 1rem;
    text-align: center;
  }
  .conteiner-hero {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-section h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero-section p {
    font-size: 0.875rem;
    margin: 1rem 0;
  }
  .boton-terciario {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  .boton {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
    display: block;
  }
  .why-choose-us {
    padding: 2rem 1rem;
  }
  .why-choose-us h2 {
    font-size: 1.5rem;
  }
  .why-choose-us p {
    font-size: 0.875rem;
    max-width: 100%;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  .benefits-text {
    margin: 0;
  }
  .benefits-text h2 {
    font-size: 1.5rem;
    padding-top: 0;
    text-align: center;
  }
  .benefits-cards {
    grid-template-columns: 1fr;
    margin: 1rem 0;
    gap: 1rem;
  }
  .card {
    padding: 1.5rem;
  }
  .card i {
    font-size: 2rem;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.875rem;
  }
  .partners {
    padding: 2rem 1rem;
  }
  .partners-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .marcas {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .marcas img {
    height: 40px;
  }
  .how-to-start {
    padding: 2rem 1rem;
  }
  .how-to-start h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .steps {
    flex-direction: column;
    gap: 2rem;
  }
  .step {
    width: 100%;
  }
  .steps i {
    font-size: 2.5rem;
  }
  .step h3 {
    font-size: 1rem;
  }
  .call-to-action {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .call-to-action-text {
    max-width: 100%;
    text-align: center;
  }
  .call-to-action h2 {
    font-size: 1.5rem;
  }
  .call-to-action p {
    font-size: 0.875rem;
  }
  .call-to-action-button {
    flex-direction: column;
    width: 100%;
  }
  .call-to-action-button a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  footer {
    padding: 2rem 1rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
  }
  .footer-top .logotipo {
    margin-bottom: 1rem;
  }
  .footer-top nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-social-media {
    gap: 1.5rem;
  }
  .footer-social-media i {
    font-size: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 0.75rem;
  }
  .footer-bottom p {
    line-height: 1.5;
  }
}
@media (max-width: 426px) {
  .logotipo {
    width: 12rem;
    height: 2.4rem;
  }
  .header-logotipo {
    justify-content: center;
  }
  .menu-principal {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    position: relative;
  }
  .navegacion {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  #menu-toggle:checked ~ .navegacion {
    display: flex;
  }
  .menu-icon {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
  }
  nav, ul {
    flex-direction: column;
    width: 100%;
  }
  nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .boton-primario,
  .boton-secundario {
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }
  .hero-section {
    min-height: 70vh;
    padding: 2rem 1.5rem;
    text-align: center;
    justify-content: center;
  }
  .conteiner-hero {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-section h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .hero-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  .boton-terciario {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }
  .boton {
    width: 100%;
    text-align: center;
    display: block;
    margin: 0.75rem 0;
    padding: 0.75rem 1.5rem;
  }
  .why-choose-us {
    padding: 2.5rem 1.5rem;
  }
  .why-choose-us h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .why-choose-us p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .benefits-text {
    margin: 0;
    font-size: 1rem;
  }
  .benefits-text h2 {
    font-size: 1.5rem;
    padding-top: 0;
    text-align: center;
    margin-bottom: 1rem;
  }
  .benefits-cards {
    grid-template-columns: 1fr;
    margin: 0;
    gap: 1.25rem;
  }
  .card {
    padding: 1.5rem;
  }
  .card i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
  .card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  .card p {
    font-size: 0.938rem;
    line-height: 1.5;
  }
  .partners {
    padding: 2.5rem 1.5rem;
  }
  .partners-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .marcas {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .marcas img {
    height: 45px;
  }
  .how-to-start {
    padding: 2.5rem 1.5rem;
  }
  .how-to-start h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .steps {
    flex-direction: column;
    gap: 2.5rem;
  }
  .step {
    width: 100%;
  }
  .steps i {
    font-size: 3rem;
  }
  .step h3 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .call-to-action {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }
  .call-to-action-text {
    max-width: 100%;
    text-align: center;
  }
  .call-to-action h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .call-to-action p {
    font-size: 1rem;
  }
  .call-to-action-button {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .call-to-action-button a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }
  footer {
    padding: 2.5rem 1.5rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1.5rem;
  }
  .footer-top nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-social-media {
    gap: 1.5rem;
  }
  .footer-social-media i {
    font-size: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 1.5rem;
  }
  .footer-bottom p {
    line-height: 1.5;
  }
}
/* 📱 Para Tablet */
@media (max-width: 768px) {
  .menu-principal {
    flex-direction: column;
    padding: 0 1.5rem;
  }
  .logotipo {
    width: 12rem;
    height: auto;
  }
  .navegacion {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav ul {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .boton-primario,
  .boton-secundario {
    width: 80%;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 1.75rem;
  }
  .hero-section p {
    font-size: 1.25rem;
  }
  .conteiner-hero {
    margin-left: 0;
    text-align: center;
    padding: 0 1rem;
  }
  .benefits {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }
  .benefits-text {
    margin: 0;
    text-align: center;
  }
  /* Benefits en 2 columnas y 2 filas */
  .benefits-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin: 1.5rem 0 0 0;
    gap: 1.25rem;
  }
  .partners {
    padding: 1.5rem 1rem;
  }
  .partners-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .marcas {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .marcas img {
    height: 40px;
  }
  .how-to-start {
    padding: 2rem 1rem;
  }
  .how-to-start h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1.5rem;
  }
  .call-to-action {
    flex-direction: column;
    padding: 2rem 5%;
    text-align: center;
    gap: 1.5rem;
  }
  .call-to-action-text {
    max-width: 100%;
    text-align: center;
  }
  .call-to-action-button {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .call-to-action-button a {
    width: 100%;
    text-align: center;
  }
  footer {
    padding: 2rem 5%;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-top nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-social-media {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
/* 📱 Responsive iPad */
@media (max-width: 1024px) {
  .menu-icon {
    display: block;
  }
  .navegacion {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: #FFFFFF;
    width: 100%;
    padding: 1rem;
    border-top: 1px solid #DDDDDD;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  #menu-toggle:checked ~ .navegacion {
    display: flex;
  }
}

/*# sourceMappingURL=style.css.map */
