/*-----------------------------------------------------------------------PÁGINA DE MENÚ*/
/*Estilo del menú*/
.navbar-nav .nav-link.letra_menu {
    font-family: Montserrat Extrabold;
    color: black;
    position: relative;
    padding: 8px 16px; /*Espacio para el cuadro */       
    transition: color 0.3s ease;
}

/*Cambio de color a naranja */
.navbar-nav .nav-link.letra_menu:hover {
    color: #e46f0a; 
    background-color: #1e3c76; 
}

/*Link activo*/
.navbar-nav .nav-link.active.letra_menu {
    background-color: #1e3c76;
    color: white;
}

/*Cuando pasa el mouse en cualquier opción del menú, los demás links activos vuelven a su estado normal*/
.navbar-nav:hover .nav-link.active.letra_menu:not(:hover) {
    background-color: #1e3c76;
    color: white;
    opacity: 0.8; /*Hace que se vea "inactivo"*/
}

/*Subrayado*/
.navbar-nav .nav-link.letra_menu::after {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 0;
    height: 2px; 
    background-color: #e46f0a; /* Color naranja */
    transition: width 0.4s ease;
}

/*Animación del subrayado */
.navbar-nav .nav-link.letra_menu:hover::after {
    width: 100%; 
}

/* ============ DROPDOWN ============ */
/*botón principal*/
.navbar-nav .nav-link.letra_menu {
    font-family: Montserrat Extrabold;
    color: black;
    position: relative;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

/*Cuando pase el mouse sobre la letra que cambié de color*/
.navbar-nav .nav-link.letra_menu:hover {
    color: #ff6600;
}

/* Cuando el dropdown está abierto*/
.navbar-nav .nav-link.letra_menu.show {
    background-color: #1e3c76;
    color: white;
}

/*Menú dropdown*/
.dropdown-menu {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.5rem 0;
}

/* Items DENTRO del dropdown*/
.dropdown-menu .dropdown-item.letra_menu {
    background-color: transparent !important; /* Sin fondo */
    color: black !important; /* Texto azul */
    padding: 8px 20px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    font-family: Montserrat Extrabold;
    font-weight: 200 !important;
}

/*Cuando pase el mouse por encima de los items del dropdown */
.dropdown-menu .dropdown-item.letra_menu:hover {
    background-color: #f8f9fa !important;
    color: #ff6600 !important;
}

/* Active en items del dropdown */
.dropdown-menu .dropdown-item.letra_menu:active,
.dropdown-menu .dropdown-item.letra_menu:focus {
    background-color: #e9ecef !important;
    color: #ff6600 !important;
}

/* Sin subrayado en items del dropdown */
.dropdown-menu .dropdown-item.letra_menu::after {
    display: none;
}

/*El botón principal del dropdown al perder el foco*/
.dropdown:hover > .nav-link.letra_menu {
    background-color: #1e3c76 !important;
    color: #ff6600 !important;
}


/* LINK CON IMAGEN (ADX)*/
.navbar-nav .nav-link.letra_menu img {
    display: block;
    width: 64px;
    height: auto;
    transition: filter 0.3s ease;
}

/* Ajuste del padding para el item con imagen */
.navbar-nav .nav-link.letra_menu:has(img) {
    padding: 5px 8px !important; /* Menos padding para la imagen */    
}

.navbar-nav .nav-link.letra_menu:has(img)::after {
    display: none; /* Sin subrayado para la imagen */
}

.navbar-toggler {
    justify-content: flex-end
}

#bg-light {
    border-bottom: 1px solid #e46f0a;
}

.navbar-brand img {
    height: 5.2rem;
    width: auto;
}

@media (min-width: 1176px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: space-around;
    }
}

navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {

    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}


/* Cookies */
.aviso-cookies {
    display: none;
    background-color: #fff;
    padding: 28px;
    width: calc(100% - 40px);
    max-width: 300px;
    line-height: 150%;
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    padding-top: 60px;

    text-align: center;
}

.aviso-cookies.activo {
    display: block;
}

.aviso-cookies .galleta {
    max-width: 100px;
    position: absolute;
    top: -50px;
    left: calc(50% - 50px);
}

.aviso-cookies .titulo,
.aviso-cookies .parrafo {
    margin-bottom: 15px;
}

.aviso-cookies .parrafo {
    font-size: 14px;
}

.aviso-cookies .boton {
    width: 100%;
    background: #595959;
    border: none;
    color: #fff;
    font-family: "Roboto", sans-serif;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s ease all;
    border-radius: 5px;
    font-size: 14px;
}

.aviso-cookies .boton:hover {
    background-color: black;
}

.aviso-cookies .enlace {
    color: #1e3c76;
    text-decoration: none;
    font-size: 14px;
}

.aviso-cookies .enlace:hover {
    text-decoration: underline;
}

.fondo-aviso-cookies {
    display: none;
    background: rgba(0, 0, 0, .20);
    position: fixed;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

.fondo-aviso-cookies.activo {
    display: block;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}
/*END MENÚ*/

/*------------------------------------------------------------------------PÁGINA DE UBICACION*/
.contenido-mapas
{
    background-color: #1E3C76;  
}

.pt-mapas{
    padding-top: 20px;
}

.titulo_mapas
{
    display: block;
    font-family: Montserrat SemiBold;    
    color: white;
    text-align: center;
    font-size: 2rem;
}

.letra_mapas
{
    font-family: Montserrat Regular;
    color: white;
    text-align: center;
    font-size: 15px;
}
/*END UBICACIÓN*/


/*------------------------------------------------------------------------PÁGINA DE FOOTER*/
.titulo_footer
{
  
  color: var(--gray);
  font-family: Montserrat SemiBold;  
}

.footer1
{
    background:#1E3C76;
}

.footer1_letra
{
    color:white;    
    text-align: center;
    font-family: Montserrat Regular;
}

.red{
  display: inline-flex;
}


.footer-social-bar {
  border-bottom: 1px solid var(--border);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-label {
  font-size: 0.90rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /*color: var(--gray);*/
  color: #595959;
  font-weight: 750;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: #eef4fb;
}
.social-link svg { width: 24px; height: 24px; }

.social-separator {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.cert-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid #c3d9f0;
  border-radius: 100px;
  background: #eef5fd;
}
.cert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1E3C76;
  box-shadow: 0 0 0 2px rgba(46,165,102,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(46,165,102,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(46,165,102,0.08); }
}
.cert-text {
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1E3C76;
}

:root {
  --off-white:  #f7f9fc;
  --gray:       #6b7a8d;
  --border:     #d0daea;
  --blue-light: #2563a8;
}


/*END FOOTER*/


/*------------------------------------------------------------------------PÁGINA DE INDEX*/
/*BLOQUE UNO*/

/*Slider imágenes diseño*/
#heroCarousel {
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    width: 100%;
    margin-top: 112px; /* Ajusta este valor según la altura de tu navbar */
}

/*Mismo aspecto para TODOS los tamaños*/
#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    aspect-ratio: 1501 / 540;
    width: 100%;
    height: auto;
}

#heroCarousel .slider-img {
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: center center; /* Ajusta esto según tu imagen */
    display: block;
}

/* Solo ajustes menores si son necesarios */
@media (max-width: 768px) {
    #heroCarousel {
        margin-top: 85px; /* Si el navbar es más pequeño en móvil */
    }
}

@media (max-width: 576px) {
    #heroCarousel {
        margin-top: 90px;
    }
}

/*Flechas para el carrusel*/
.carousel-control-next-icon, .carousel-control-prev-icon
{
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background: #e4700a;
    margin-top: 100px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/*BLOQUE DOS*/

/*Fondo*/
.lideres
{
    background: #1E3C76;    
}

/*Cajas*/
.padding-top {
  padding-top: 20px;
  border: 1px solid;
  border-radius: 40px;
  border-color: rgb(229, 202, 143);
  background-color: white;
}

/*Borde cajas*/
.border-contact {
  border-width: 6px;
  border-color: #e4700a;
  max-width: 500px; /* Ajusta este valor según necesites */
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
  min-height: 300px;
}

/*Títulos*/
.titulos_m {
  color: #e4700a;
  font-size: 1.5em;
  font-family: Montserrat SemiBold;  
}

/*Texto*/
.texto-bloque-dos {
  color: black;
  font-size: 1.2em;
  font-family: Montserrat Regular;
}

.padding-top{
    position: relative;
}

/*Puntos de paginación*/
.pagination-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px 0;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*Puntos de paginación*/
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1e3c76; /* Azul grisáceo claro */  
  transition: all 0.3s ease;
}


/*BLOQUE TRES (Distribuidores)*/
.marquee-container {
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
    height: 350px;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    will-change: transform; /* Mejora el rendimiento */
}

@keyframes scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.marquee-container .item {
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: 10px;
    text-align: center;
    flex-shrink: 0;
}

.marquee-container .item .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.marquee-container .medio {
    width: 350px;
    margin: 10px;
    flex-shrink: 0;
}

.marquee-container .titulo {
    height: 100px;    
    text-align: center;
    line-height: 100px;
    width: 100%;    
    color: #e4700a;
    font-family: Montserrat SemiBold;
}

.marquee-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0; /* Quita el margin anterior */
    object-fit: contain; /* Mantiene la proporción de la imagen */
}

/* Efecto hover para las imágenes */
.marquee-container figure {
    display: inline-block;
    margin: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* Efecto de sombra para los cuadros */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 
                0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Tamaño fijo para todos los cuadros */
    width: 200px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efecto al pasar el mouse */
.marquee-container figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 
                0 12px 40px rgba(0, 0, 0, 0.15);
}

.marquee-container figure .capa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 95, 138, 0.9); /* Azul semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.marquee-container figure:hover .capa {
    opacity: 1;
}

.marquee-container figure .capa span {
    color: white;
    font-size: 1.5rem;
    font-family: 'Montserrat SemiBold';
    margin: 0;
    text-transform: uppercase;
}

.marquee-container figure .capa a {
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*END INDEX*/

/*-------------------------------------------------------------------------PÁGINA DE NOSOTROS*/

/*BLOQUE UNO*/
.banner-nosotros {
  position: relative;
  z-index: 1;
  margin-top: 70px; /* Altura aproximada del navbar */
}

/*Banner responsive*/
@media (max-width: 768px) {
  .banner-nosotros {
    margin-top: 80px; /* Ajusta para móvil */
  }
}

/*BLOQUE DOS*/
/*Tarjetas*/
.flip-card-nosotros {
  background-color: transparent;
  width: 100%;
  height: 430px;
  perspective: 1000px;
}

.flip-card-inner-nosotros {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card-nosotros:hover .flip-card-inner-nosotros {
  transform: rotateY(180deg);
}

.flip-card-front-nosotros, 
.flip-card-back-nosotros {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius:20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.flip-card-front-nosotros {
  background: linear-gradient(135deg, #1E3C76 0%, #1E3C76 100%);
  color: white;
  border: 8px solid #e4700a;
}

.flip-card-front-nosotros i {
  font-size: 80px;
  color: #e4700a;
  margin-bottom: 20px;
}

.flip-card-front-nosotros h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #e4700a;
  margin: 0;
  font-family: Montserrat SemiBold;
}

.flip-card-back-nosotros {
  background: linear-gradient(135deg, #1E3C76 0%, #1E3C76 100%);
  color: white;
  transform: rotateY(180deg);
  border: 8px solid #e4700a;
}

.flip-card-back-nosotros p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
  font-family: Montserrat Regular;;
}

/* Responsive */

@media (min-width: 1400px) and (max-width: 1920px) {
  .flip-card-nosotros {
    height: 500px;
  }
  
  .flip-card-front-nosotros i {
    font-size: 60px;
  }
  
  .flip-card-front-nosotros h2 {    
    font-size: 2.3rem;
  }
  
  .flip-card-back-nosotros p {
    font-family: Montserrat Regular;
    font-size: 1.2rem;
  }
}


/* Responsive */
@media (min-width: 992px) and (max-width: 1199px) {
  .flip-card-nosotros {
    height: 400px;
  }
  
  .flip-card-front-nosotros i {
    font-size: 60px;
  }
  
  .flip-card-front-nosotros h2 {    
    font-size: 2rem;
  }
  
  .flip-card-back-nosotros p {
    font-family: Montserrat Regular;
    font-size: 0.97rem;
  }
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .flip-card-nosotros {
    height: 420px;
  }
  
  .flip-card-front-nosotros i {
    font-size: 60px;
  }
  
  .flip-card-front-nosotros h2 {    
    font-size: 2rem;
  }
  
  .flip-card-back-nosotros p {
    font-family: Montserrat Regular;
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .flip-card-nosotros {
    height: 400px;
  }
  
  .flip-card-front-nosotros i {
    font-size: 60px;
  }
  
  .flip-card-front-nosotros h2 {   
    padding-bottom: 120px; 
    font-size: 2rem;
  }
  
  .flip-card-back-nosotros p {
    font-family: Montserrat Regular;
    font-size: 1rem;
  }
}

/*BLOQUE TRES*/
.objetivos_titulo h1{
    color: #e4700a;
    font-family: Montserrat ExtraBold;
}

/*BLOQUE CUATRO*/
.valores-img{
    width:65%;
    height:auto;    
}
/*END NOSOTROS*/

/*--------------------------------------------------------------------------PÁGINA DE PRODUCTOS*/
/*BANNER*/
.contenedor {
    position: relative;
    display: inline-block;
}

.pt-6{
    padding-top: 6rem !important;
}

/*BLOQUE DOS*/
.bloque_dos{
    border-radius: 15px;
    background-color: #1e3c76;
}

.bloque_dos p{
    color:white;
    font-size: 1.8rem;
    font-family: Montserrat Regular;
}

.boton_cotizar{
    background-color: #e4700a;
    font-family: Montserrat SemiBold;
    font-size: 3rem;
    color: #1E3C76;            
    border-radius: 15px;        
    height: 260px;
    width: 355px;    
}

.boton_cotizar:hover{
    color: white;
}

/*BLOQUE TRES*/
.objetivos_titulo h1{
    color: #e4700a;
    font-family: Montserrat ExtraBold;
}

/*Tarjetas*/
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 430px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius:30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;  
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.flip-card-front {
  background: linear-gradient(135deg, #1E3C76 0%, #1E3C76 100%);
  color: white;    
}

.flip-card-front i {
  font-size: 80px;
  color: #e4700a;
  margin-bottom: 20px;
}

.flip-card-front h2 {
  min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  font-size: 1.5rem;  
  color: white;
  margin: 0;
  font-family: Montserrat SemiBold;
}

.flip-card-back {
  background: linear-gradient(135deg, #1E3C76 0%, #1E3C76 100%);
  color: white;
  transform: rotateY(180deg);
}

.flip-card-back h5 {  
  text-align: justify;
  color: #e4700a;
  font-family: Montserrat SemiBold;
}

.flip-card-back p {
  font-size: 1rem;  
  text-align: justify;
  font-family: Montserrat Regular;;
}


/* Contenedor de la imagen con borde ajustable */
.image-container {
  display: inline-block; /* Se ajusta al tamaño del contenido */
  border: 4px solid #e4700a;
  border-radius: 15px;
  overflow: hidden; /* Para que el border-radius funcione */
  margin-bottom: 15px;
  max-width: 100%;
}


.image-container img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
}


/*Puntos de paginación*/
.pagination-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;  
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*Puntos de paginación*/
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e4700a; /* Azul grisáceo claro */  
  transition: all 0.3s ease;
}

/*.flip-card-front img.border-img{
    display: block;
    border: 4px solid #e4700a;    
    border-radius: 15px;
    width: 100%;    
    max-height: 400px; 
    object-fit: contain; 
    margin-bottom: 15px; 
  }*/

/* Responsive */
@media (min-width: 1200px) and (max-width: 1400px) {
  .flip-card {
    height: 400px;
  }
  
  .flip-card-front img.border-img {
    height: 250px; /* Ajuste para tablets grandes */
  }

  .flip-card-front i {
    font-size: 60px;
  }
  
  .flip-card-front h2 {    
    font-size: 1rem;
  }
  
  .flip-card-back p {
    font-family: Montserrat Regular;
    font-size: 0.75rem;
  }  
}


@media (min-width: 992px) and (max-width: 1199px) {
  .flip-card {
    height: 400px;
  }
  
  .flip-card-front img.border-img {
    height: 250px; /* Ajuste para tablets grandes */
  }

  .flip-card-front i {
    font-size: 60px;
  }
  
  .flip-card-front h2 {    
    font-size: 1.2rem;
  }
  
  .flip-card-back p {
    font-family: Montserrat Regular;
    font-size: 0.78rem;
  }  
}

/* Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .flip-card {
    height: 400px;
  }

  .flip-card-front img.border-img {
    height: 240px; /* Ajuste para tablets */
  }
  
  .flip-card-front i {
    font-size: 60px;
  }
  
  .flip-card-front h2 {    
    font-size: 1.5rem;
  }
  
  .flip-card-back p {
    font-family: Montserrat Regular;
    font-size: 0.8rem;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .flip-card {
    height: 400px;
  }

   /* Ajustes específicos para la imagen en móvil */
  .flip-card-front img.border-img {
    height: 180px; /* Altura reducida en móvil */
    max-height: 180px;
    object-fit: contain; /* Mantiene la proporción */
    margin-bottom: 10px;
    padding: 0px 1px; /* Reduce el padding horizontal de 15px a 5px */       
  }
  
  .flip-card-front i {
    font-size: 60px;
   
  }
  
  .flip-card-front h2 {        
    font-size: 1.3rem; /* Reduce el tamaño de fuente */
    min-height: auto; /* Permite altura flexible */
  }
  
  .flip-card-back p {
    font-family: Montserrat Regular;
    font-size: 0.9rem; /* Reduce un poco para que quepa mejor */
  }

  .pagination-dots {
    bottom: 10px; /* Acerca los puntos al borde */
  }
}
/*END PRODUCTOS*/

/*---------------------------------------------------------------------------PÁGINA DE COTIZACIÓN*/
/*margin*/
.m-bottom-15 {
    margin-bottom: 15px;
}

.m-bottom-50 {
    margin-bottom: 100px;
}

.m-140 {
    margin: 109px 100px 0 100px;
}

.letra{
    font-family: Montserrat SemiBold;
}

.letra-p{
    font-family: ●Montserrat Regular;
}

/*padding*/

.p-top-40 {
    padding-top: 40px;
}

.p-top-80 {
    padding-top: 80px;
}

.p-left-15 {
    padding-left: 15px;
}

.p-bottom-30 {
    padding-bottom: 30px;
}

.a-padding {
    padding: 15px 45px 15px 45px;
}

.bg-color-orange {
    background-color: #ec7f0a;
}

.p-right-50 {
    padding-right: 50px;
}

/*font*/

.f-weight {
    font-weight: bold;
}

.f-color {
    color: #1E3C76;
}

.color-w {
    color: white;
}


/*border*/

.a-border {
    border: 2px solid;
    border-radius: 30px;
}

.border-s-caja {
    border: 1px solid;
    background-color: rgba(207, 25, 25, 0.911);
    /*background-color: rgba(212, 0, 24, 0.8);*/
    border-radius: 20px;
}

/*background*/

.bg-color {
    background-color: red;
}

.inp-bg-color {
    background-color: rgb(248, 231, 231);
}

.inp-form {
    width: 90%;
    height: 7%;
    border: none;
}

.centrar {
    text-align: center;
}

.section-img {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/cotizacion/Banner.webp');
    /*background-repeat: no-repeat;*/
    background-size: contain;
}

.t-decoration {
    text-decoration: none;
}

.d-lg-block a:hover{
    color: #1E3C76;
}

.hover:hover {
    color: #1E3C76;
}
/*END COTIZACIÓN*/


/*---------------------------------------------------------------------PÁGINA DE ENTRENAMIENTO*/
.pt-6{
    padding-top: 90px !important;
}

/*BLOQUE DOS*/
.bloque_dos{
    border-radius: 15px;
    background-color: #1e3c76;
}

.bloque_dos p{
    color:white;
    font-size: 1.8rem;
    font-family: Montserrat Regular;
}

.entrenamiento_text4 {
    font-family: Montserrat ExtraBold;
    color: #C96F0C;
    font-size: 2rem;
}

.round {
    width: 90%;
    height: 90%;
    margin: 0 auto 19px auto;
    border: 1px solid #1E3C76;
    border-radius: 5;
    -webkit-border-radius: 5px;
    text-align: -webkit-center;
    font-family: Montserrat Regular;
}

/*Botón Enviar*/
.bg-color-orange {
    background-color: #ec7f0a;
    font-family: Montserrat Regular;
}

.color-w {
    color: white;
}

.f-weight {
    font-weight: bold;
}

.a-border {
    border: 2px solid;
    border-radius: 30px;
}

.a-padding {
    padding: 15px 45px 15px 45px;
}

.hover:hover {
    color: rgba(0, 0, 0, 0.5);
}

#tb-centrar {
    margin: auto;
}
/*END ENTRENAMIENTO*/


/*--------------------------------------------------------PÁGINA DE CONTACTOS*/
/*Título*/
.wrap{
    padding-top: 105px;
}

.titulo_nosotros {
  color: #00195c;
  font-family: Montserrat ExtraBold;  
}

.promesa{
    font-size: 1.5rem;
    font-family: Montserrat Regular; 
}


/*Datos de contacto*/
.row {
  justify-content: space-between;
}

.padding-top-contacto {
  padding-top: 20px;
  border: 1px solid;
  border-radius: 40px;
  border-color: rgb(229, 202, 143);
  background-color: rgba(210, 210, 210, 0.35);
}

.border-contact-contacto {
  border-right-width: 8px;
  border-right-color: #e4700a;
}

.titulos_m {
  color: #e4700a;
  font-size: 1.5em;
  font-family: 'Montserrat SemiBold';  
}

.texto_contacto {
  color: black;
  font-size: 1.2em;
  font-family: 'Montserrat Regular';
}
/*END CONTACTOS*/

/*----------------------------------------------------------------PÁGINA DE ADX NOSOTROS*/
/*BLOQUE UNO*/
.banner-nosotros {
  position: relative;
  z-index: 1;
  margin-top: 100px; /* Altura aproximada del navbar */
}

/*Banner responsive*/
@media (max-width: 768px) {
  .banner-nosotros {
    margin-top: 90px; /* Ajusta para móvil */
  }
}

a .boton{
  width:60%;
  height: 60px;
  background: linear-gradient(145deg, #ED6C3A, #ED6C3A);
  color: white;  
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.35s ease;
  
  /* Sombra suave inicial */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.397);
}

a .boton:hover{
  /*background-color: #ED6C3A; 
  border-color: white;  
  transform: translateY(-5px);
  box-shadow: 0 13px 0 #ED6C3A;*/
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.712);
}

a .boton:active,
a .boton:focus {
  /*background-color: #ED6C3A;
  border-color: white;
  outline: none;*/

  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

a .boton:focus {
  background-color: #ED6C3A;  
  box-shadow: none;
}


.letra-boton{
  color:white;
  font-family: Montserrat ExtraBold;  
  font-size: 1.7rem;
}

.titulo-adx{
  background-color: #9E9725; 
  border-color: #9E9725;
}

.descripcion{
  text-align:justify; 
  font-size:1.3rem;  
  font-family: Montserrat Regular; 
}
/*END ADX NOSOTROS*/

/*----------------------------------------------------------------PÁGINA DE ADX PRODUCTOS*/
/*a{
  font-size: 1rem;
  color: #1e3c76 !important;
}*/

.pt-8{
  padding-top: 8rem;
}

.titulo_producto{
  font-size: 1.1rem !important;
  color: #1e3c76 !important;
  font-family: Montserrat SemiBold !important;
}

#menu ul li a {
    display: block;
    text-decoration: none;
    color:#1e3c76 !important;
    position: relative;
    font-family: Montserrat SemiBold !important;
}

#menu ul li:hover {
    position: relative;
    color: #1e3c76 !important;
}

.titulo_menu{
    font-weight: bold;    
}

#menu ul{
    padding-left:0.7rem;
}

.linea{
    text-decoration:underline;
}

.text-color{
  color:#1e3c76 !important;
  font-family: Montserrat SemiBold !important;
}

.img_width_320 {
    width: 320px;
}

.texto-p{
  font-family: Montserrat SemiBold !important;;
}
/*END ADX PRODUCTOS*/

/*------------------------------------------------------PÁGINA DESCARGAS*/
.titulo_nosotros {
    color: #00195c;
    font-family: 'Montserrat SemiBold';
}


.pt-10{
    padding-top: 3%;
}

.promesa_venta{
    padding-bottom: 50px;
}

.img-descargas 
{	
    background-image: 
    linear-gradient(
    rgba(36, 56, 114, 0.5),
    rgba(36, 56, 114, 0.5)
    ),
    url('../img/descargas/descargas.jpg');	
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
}

.letra-descargas {
    position: absolute;
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Montserrat Regular';    
    color: white;
    left: 8%;
    right: 8%;
    margin-top: 80px;
}

.texto {
    color: white;
}

.texto:hover {
    color: #e4700a;
}



@media (min-width: 576px) {
    .pt-10 {
        margin-top: 90px;
    }
}
/*END DESCARGAS*/


