* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body{
  font-family: 'Montserrat', sans-serif;
}

body {
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
}

/* GENRAL REUSABLE COMPONENTS */
.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.container-producto {
  max-width: 130rem; 
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 40%; 
  gap: 2rem;
  border-radius: 40px;
  overflow: hidden;
}


.container {
  max-width: 120rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  position: relative;
  gap: 25px;
}

.grid--2-cols {
  grid-template-columns: 50% 50%;
  
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid-3-cols{
  grid-template-columns: 2fr 2fr 1fr;
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.5rem;
  margin-bottom: 4.5rem;
  text-align: center;
}
.heading-mantenimiento{
  font-size:2.7rem;
  line-height: 1.2;
  margin-bottom: 5rem;
  text-align: center;
  font-weight: 700;
  color: #072B79;
  margin-top: 2rem;
}

.heading-secondary {
  font-size: 3.7rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
  text-align: center !important;
  font-weight: 900;
  color: #072B79;
  margin-top: 5rem;
}

.map-heading{
  font-size: 3.7rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
  color: #FFF ;
  margin-top: 5rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.bio, .med{
  font-size: 6.5rem;
  letter-spacing: 0.5rem;
  font-weight: 800;

}

.bio{
  color:#A9D335;
}

.med{
  color: #07BAD8;
}

.subtitulo{
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2.8rem;
  text-align: center;
  color: #ffff;
  font-weight: 800;
}

.titulo-producto{
  font-size: 3rem;
  font-weight: 500;
  color:white;
  margin-bottom: 2rem;
  line-height: 5rem;
  letter-spacing: 1rem;
}

.lista-productos{
  list-style-type: none;
  font-size: 2rem;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  color: #072B79;
}

.lista-servicios{
  list-style-type: none;
  font-size: 2rem;
  margin-left: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  color: #072B79;
}

.lista-servicios li , .lista-productos li{
  margin-bottom: 2rem;
}


.icono-producto{
  margin-right: 1rem;
  align-items: center;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.6rem 3.2rem;
  border-radius: 12px;

  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #9CD400;
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 2.3rem;
  text-align: center;
}

.btn--full:hover,
.btn--full:active {
  background-color: #7fad00;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--form {
  background-color: #00BCDB;
  color: #FFFFFF;
  align-self: end;
  padding: 1.2rem;
  font-size: 1.5rem;
}

.btn--form:hover {
  background-color: #00BCDB;
  color: #FFFFFF;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

/*HELPER/SETTINGS CLASSES*/
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}

.float-wa{
  position:fixed;
  width:60px;
  height:60px;
  bottom:20px;
  right:20px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:32px;
  z-index:999;
}

/* Respuestas a diferentes tamaños de pantalla */
@media (max-width: 768px) {
  .titulo-principal {
    font-size: 3.5rem; /* Reducir tamaño del título en pantallas pequeñas */
  }
  
  .gallery-container {
    height: 300px; /* Ajustar la altura en pantallas más pequeñas */
  }
  
  .gallery-item {
    flex: 0 0 100%; /* Asegura que cada imagen ocupe el 100% del contenedor */
  }
  
  .nav-button {
    padding: 8px 16px; /* Hacer los botones más pequeños */
  }
  
  .gallery-navigation {
    top: 70%; /* Ajustar la posición de los botones */
  }
}

@media (max-width: 480px) {
  .titulo-principal {
    font-size: 2.5rem; /* Reducir aún más el tamaño del título */
  }

  .gallery-container {
    height: 250px; /* Ajustar más la altura */
  }

  .gallery-img {
    object-fit: cover; /* Para llenar el contenedor sin estirarse */
  }
}

/* FOOTER */
.footer {
  padding: 5rem 0; /* Reducir padding para hacerlo más compacto */
  background-color: #072B79;
  color: white;
}

.grid--footer {
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
}

.logo-col,.address-col,.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  max-width: 150px; 
  margin-bottom: 2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}


.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #FFFF;
}


.footer-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2.2rem;
  margin-top: 2.2rem;
  text-transform: uppercase;
  text-align: center;
}


.contacts {
  font-size: 1.4rem;
  color: #FFFF;
  line-height: 2;
}


.address {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font: normal;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: #FFFF;
  transition: all 0.3s;
  margin-bottom: 2rem;
}

.derechos{
  margin-top:2.5rem;
  font-size:1.2rem;
  line-height: 1.5;
}

.footer-link i {
  color: white; 
  font-size: 1.8rem; 
  margin-right: 0.8rem; 
  transition: color 0.3s ease; 
}


/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #fff;

}
.icon-mobile-nav[name="menu-outline"] {
  box-shadow: 0px 4px 25px 0px #00000060;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
  box-shadow: 0px 4px 25px 0px #00000060;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #ffff;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s;
  line-height: 2.5rem;
}


#form-message-warning,
#form-message-success {
  display: none;
}

#form-message-warning {
  color: red;
}

#form-message-success {
  color: #28a745;
  font-size: 18px;
  font-weight: 500;
}

#contactForm .error {
  color: red;
  font-size: 12px;
}

.submitting {
  color: #264dcc;
  font-size: 1.5rem;
}
.aviso-privacidad-title {
  color: #070D27;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  text-align: center;
}

.aviso-privacidad p{
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  }
  
.columnas-fines {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

.columnas-fines ul {
  width: 48%; 
  list-style-type:disc;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}

.columnas-fines li {
  margin-bottom: 8px;
}
.columnas-fines ol {
  list-style-type: upper-roman;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600; 
  margin-left: 10px;
}

/* Si solo quieres que los números romanos sean en negrita */
.columnas-fines ol li {
  font-weight: normal; 
}

.columnas-fines ol li::marker {
  font-weight: 600; 

}
.aviso-privacidad-subtitle {
  color: #070D27;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 2.4rem;
  text-align: left;
}
.contenido-aviso{
  padding: 3rem;
}