body{
  font-family: "Open Sans", serif;
} 


.logo{
  width: 150px;
} 

/* Aplicar a todos los títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
}

/* Aplicar al texto normal y párrafos */
body, p, a, li {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.bg-menu {
    background-color: #f7f9fa;
}


.btn-float1 {
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 99999999;
  width:70px;
}
.btn-float2 {
  position: fixed;
  bottom: 160px;
  right: 30px;
  z-index: 99999999;
  width:70px;
}
 

/*titulos banner*/
.h1banner{ 
	font-weight: 400;
  color: white;
  text-shadow: 3px 3px 3px #000;
}
.h2banner{
	font-weight: 400;
  color: white;
  font-size: 2rem;  
  
}

.forma-contacto h5 {
    color: #064f1d !important;
}

.icon-footer{
  color: white;
}

.icon-footer:hover{
  color: gray;
}


/*botones*/
.btn-llamanos{
  background: #00005a;
  color: white;
  border-radius: 10px;
  font-size: 15px;
  margin-left: 5px;
  margin-top: 5px;
}

.btn-llamanos:hover{
  background: #662900;
  color: white;
} 

.btn-whatsapp{
  background: #00e676;
  color: black; 
  border-radius: 10px;
  font-size: 15px;
  margin-left: 5px;
  margin-top: 5px;
}
.btn-whatsapp:hover{
  background: #007a3f;; 
  color:  black;
}

.btn-envia{
  background: #e3000b;
  color: white;
  border-radius: 10px;
  font-size: 15px;
  margin-left: 5px;
  margin-top: 5px;
}

.btn-envia:hover{
  background: #a00010;
  color: white;
} 

/*botones gracias*/
.btn-back{
  background: #e3000b;
  color: #ffffff;
  border-radius: 20px;
  font-size: 20px;
  margin-left: 5px;
  margin-top: 5px;
  font-weight: 600;
}
.btn-back:hover{
  background: #a00010;
  color: white;  
} 

.btn-llamanos-g{
  background: #6cbf63;
  color: #ffffff;
  border-radius: 10px;
  font-size: 25px;
  margin-left: 5px;
  margin-top: 5px;
}
.btn-llamanos-g:hover{
  background:#54914c; 
  color: white;  
}  

.btn-whats-g{
  background: #00e676;;
  color: black; 
  border-radius: 10px;
  font-size: 25px;
  margin-left: 5px;
  margin-top: 5px;
}
.btn-whats-g:hover{
  background: #007a3f;; 
  color:  white;

}  

/*banner fondo*/ 
#banner {
  background-image: url(../img/banner.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/*formulario*/
.bg-form {
  background: rgb(255 255 255 / 83%);
  border-radius: 20px;
  } 

/*TODO LO NUEVO*/
/*Bloque 1*/
.fondo-industrial {
    background-color: #00005a;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.titulo-industrial {
    color: #ffffff;
    /* Ajuste de interlínea para un look más moderno */
    line-height: 1.2;
    letter-spacing: -0.01em;
}
/*Bloque 1 FIN*/

/*Bloque 2*/
/* Contenedor de la tarjeta */
.card-industrial {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    background-color: #222f3a;
    border-radius: 0; /* Minimalismo: esquinas rectas */
}

.titulo-industrial-2 {
    color: #00005a;
    /* Ajuste de interlínea para un look más moderno */
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Manejo de imágenes reales */
.imagen-contenedor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.imagen-contenedor img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7; /* Para que el texto sea legible */
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Hover sutil */
.card-industrial:hover .imagen-contenedor img {
    transform: scale(1.05);
    opacity: 0.5;
}

/* Texto sobre la imagen */
.contenido-bloque {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    color: #ffffff;
    z-index: 2;
}

.contenido-bloque h3 {
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #e3000b; /* Acento rojo minimalista */
    display: inline-block;
}

/* Botón CTA */
.btn-cotizar {
    background-color: #e3000b;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cotizar:hover {
    background-color: #00005a; /* Cambio a azul en hover para coherencia */
    color: #ffffff;
}
/*Bloque 2 FIN*/

/*Bloque 3*/
/* Estilo específico para resaltar la sobriedad del mensaje */
.display-6.fw-normal {
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Ajuste opcional para móviles */
@media (max-width: 768px) {
    .display-6 {
        font-size: 1.5rem;
    }
}
/*Bloque 3 FIN*/

/*Bloque 4*/
/* Botón de optimización */
.btn-optimizacion {
    background-color: #e3000b;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 40px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 2px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-optimizacion:hover {
    background-color: #222f3a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Ajuste de sombras suaves para el look corporativo */
.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

/* Título de sección */
.titulo-industrial {
    color: #ffffff;
    line-height: 1.2;
}
/*Bloque 4 FIN*/

/*Bloque 6*/
/* Contenedor de la lista */
.lista-trazabilidad {
    border-left: 2px solid #00005a;
    padding-left: 2rem;
}

.item-proceso {
    padding-bottom: 2rem;
    position: relative;
}

/* Punto de trazabilidad */
.item-proceso::before {
    content: "";
    position: absolute;
    left: -39px; /* Ajuste para alinear con el borde */
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: #e3000b; /* Acento rojo en el punto */
    border-radius: 50%;
}

.item-proceso p {
    color: #222f3a;
    margin-bottom: 0;
}

/* Botón Asesor */
.btn-asesor {
    background-color: #e3000b;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 35px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-asesor:hover {
    background-color: #00005a;
    color: #ffffff;
}

/* Fondo ligero para contraste */
.bg-light {
    background-color: #f4f7f9 !important;
}
/*Bloque 6 FIN*/

/*Bloque 8*/
.diferencial-item {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    height: 100%;
}

.diferencial-item p {
    color: #222f3a;
    line-height: 1.6;
}

/* Botón Final con los colores solicitados */
.btn-asesoria-final {
    background-color: #e3000b;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 45px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-asesoria-final:hover {
    background-color: #00005a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,90,0.2);
}

/* Ajuste de tipografía general para el cuerpo */
.titulo-industrial {
    color: #ffffff;
    letter-spacing: -0.5px;
}
/*Bloque 8 FIN*/

/*Bloque 10*/
/* Botón de Contacto Final */
.btn-contacto-final {
    background-color: #e3000b;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-contacto-final:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

/* Ajuste de tipografía para el bloque azul */
#contacto .display-5 {
    line-height: 1.1;
    letter-spacing: -1px;
}

#contacto .lead {
    font-size: 1.25rem;
}

/* Efecto sutil para el icono */
.bi-envelope-paper {
    transition: transform 0.3s ease;
}

#contacto:hover .bi-envelope-paper {
    transform: translateY(-5px);
}
/*Bloque 10 FIN*/


/*SCROLL*/
section[id] {
  scroll-margin-top: 80px; /* Ajusta este valor a la altura exacta de tu navbar */
}


/*FOOTER*/
/* El bloque oscuro de la derecha */
.bg-dark2 {
    background-color: #00002b !important;
}


@media (max-width: 425px){
  #banner {
    background-size: 160% auto!important;
    background-position: 0px 0px;
	background-image: url(../img/banner-movil.jpg);
} 
.bgformovil {
    background: rgb(255 255 255 / 83%);
    border-radius: 20px;
	background-color: #7ce2ef;
	margin: 180px 0px 20px 0px;
} 
    }




@media (max-width: 769px){
  #banner {
      background-size: 100% auto!important;
      background-position: 0px 0px;
	  background-image: url(../img/banner-movil.jpg);
      background-size: cover;
  } 

.bgformovilcel {
    background: rgb(255 255 255 / 83%);
    border-radius: 20px; 
	margin-left: auto !important;
    margin-right: auto !important;
	background-color: #7ce2ef;
	margin: 0px 0px 20px 0px;
} 

 
 .ryg-minimal-text {
        font-size: 1.5rem;
        border-left: 3px solid var(--ryg-primario);
        padding-left: 15px;
    }
	
.display-5 {
        font-size: 1.8rem;
    }
	
.bg-cta-industrial h2 {
        font-size: 1.8rem;
    }
 
.display-4 { font-size: 2rem; }
.display-5 { font-size: 1.8rem; }




}