* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #cecece;
    font-family: "Oswald", sans-serif;
}

.navbar {
    margin: 20px;     
    border-radius: 10px;
    /*padding: 20px;*/
}

#navbarNav {
    font-size: 1.2em;
    font-weight: 400;
}

.nav-link {
    color: #000; /* Color del texto */
    text-decoration: none; /* Sin subrayado */
    padding: 3px 10px; /* Espaciado interno */
    margin: 0 20px; /* Espacio entre los enlaces */
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: scale(1);
}

.nav-link:hover {
    color: #0958B1;
    transform: scale(1.1);
}

.btnContacto {
    background-color: #008616; /* Color de fondo */
    border-style: solid;
    border-color: #008616;
    border-width: 2px;
    color: white; /* Color del texto */
    /*padding: 10px 20px; /* Espaciado interno */
    border-radius: 50px; /* Bordes redondeados */
    transition: all 0.3s ease;
    transform: scale(1);
}

.btnContacto:hover {
    background-color: rgb(255, 255, 255); /* Color de fondo */
    border-style: solid;
    border-color: #008616;
    border-width: 2px;
    transform: scale(1.05);
}

.btnContacto:hover .letrabtn {
    color: #008616 !important; /* Force text color on hover */
}

.letrabtn {
    color: white;
    padding: 2px 10px; 
    margin: 0 10px; 
}

.letrabtn:hover {
    color: #004A99;
}

.divInicial {
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
}

.h1-titulo {
    color: white;
    font-size: 4em;
    word-wrap: break-word;
    margin-bottom: 50px;
}

.p-titulo {
    margin-bottom: 50px;
    font-size: 1.5em;
    word-wrap: break-word;
    
}

.imghero {
    width: 100%; /* Imagen ocupa todo el ancho disponible en tablet */
    height: 100%; /* Altura fija para mantener proporción (se puede cambiar para ajustar la altura) */
    object-fit: cover;
    border-radius: 10px;
    
}

.contenido-principal {
    margin: 20px;
    padding: 10px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    border-radius: 10px;
}

.estilos-hero {
    border-radius: 10px;
    padding: 50px;
}

/*.col-hero1 {
    padding: 20px 20px 20px 100px; /* Espacio superior e inferior 
}*/

.col-hero2 {
    padding: 20px; /* Espacio superior e inferior */
}

.carrusel-hero {
    border-radius: 10px;
}

.ancla-hero {
    color: rgb(0, 0, 0);
    font-size: 1.2em; /* Reduced from 2em to 1.2em */
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px; /* Reduced padding */
    background-color: #ffffff; /* Color de fondo */
    border-radius: 10px; /* Bordes redondeados */
    width: 140px; /* Reduced width from 180px */
    margin-top: 15px; /* Slightly reduced margin */
    display: inline-block; /* Para que el padding y el ancho funcionen correctamente */
    text-align: center; /* Center the text */
    transition: all 0.3s ease; /* Smooth hover effect */
}

.ancla-icono {
    margin-left: 10px; /* Reduced from 10px */
    font-weight: bold; /* Peso del icono */
    transition: transform 0.3s ease; /* Smooth arrow animation */
}

.ancla-hero:hover .ancla-icono {
    transform: translateX(10px); /* Arrow moves right on hover */
}

.section2 {
    background-color: #004A99;
}

/* Sección de características */
.caracteristicas-section {
    background-color: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
    padding: 50px;
}

.caracteristicas-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Responsonsive de Caracteristicas*/
@media (max-width: 1024px) {
    .caracteristicas-section h2 {
        font-size: 2.3rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .caracteristicas-section .lead {
        font-size: 1.3rem;
    }
    
    .caracteristicas-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .caracteristicas-section h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .caracteristicas-section .lead {
        font-size: 1rem;
        text-align: center;
    }
    
    .caracteristicas-section {
        padding: 30px;
    }
}

.caracteristicas-section .lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #6c757d;
    font-size: 1rem;
}

.caracteristicas-section .btn-primary {
    background-color: #004A99;
    border-color: #004A99;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.caracteristicas-section .btn-primary:hover {
    background-color: #003875;
    border-color: #003875;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.3);
}

.caracteristicas-section .img-fluid {
    transition: transform 0.3s ease;
    border-radius: 8px !important;
}

.caracteristicas-section .img-fluid:hover {
    transform: scale(1.05);
}

/* Layout de imágenes flotantes */
.imagenes-flotantes {
    position: relative;
    height: 400px;
    width: 100%;
}

.imagen-principal {
    position: absolute;
    top: 0;
    /*left: 0;*/
    right: 300px;
    width: 330px;
    z-index: 3;
}

.imagen-secundaria-1 {
    position: absolute;
    bottom: 50px;
    right: 500px;
    width: 230px;
    z-index: 2;
}

.imagen-secundaria-2 {
    position: absolute;
    bottom: 5px;
    right: 220px;
    width: 270px;
    z-index: 1;
}

.imagenes-flotantes img {
    width: 100%;
    height: auto;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.imagenes-flotantes img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.logoNavbar {
    height: 70px;
}

/* Responsive para imágenes flotantes */
@media (max-width: 1440px) {

    .imagen-principal {
        width: 310px;
        right: 200px;
    }
    
    .imagen-secundaria-1 {
        width: 210px;
        bottom: 80px;
        right: 400px;
    }
    
    .imagen-secundaria-2 {
        width: 250px;
        right: 145px;
        bottom: 35px;
    }
}

@media (max-width: 1024px) {
    .imagenes-flotantes {
        height: 280px;
    }
    
    .imagen-principal {
        width: 220px;
        right: 115px;
    }
    
    .imagen-secundaria-1 {
        width: 140px;
        bottom: 60px;
        right: 250px;
    }
    
    .imagen-secundaria-2 {
        width: 170px;
        right: 75px;
        bottom: 27px;
    }
}

@media (max-width: 991px) {
    .imagenes-flotantes {
        height: 300px;
    }
    
    .imagen-principal {
        width: 220px;
        right: 200px;
    }
    
    .imagen-secundaria-1 {
        width: 140px;
        bottom: 60px;
        right: 300px;
    }
    
    .imagen-secundaria-2 {
        width: 120px;
        right: 130px;
        bottom: 15px;
    }
}

@media (max-width: 768px) {
    .imagenes-flotantes {
        height: 350px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .imagen-principal {
        width: 250px;
        top: 5px;
        left: 220px;
        right: auto;
    }
    
    .imagen-secundaria-1 {
        width: 180px;
        bottom: 80px;
        right: 350px;
        left: auto;
    }
    
    .imagen-secundaria-2 {
        width: 210px;
        right: 135px;
        bottom: 45px;
        left: auto;
    }
}

@media (max-width: 425px) {
    .imagenes-flotantes {
        height: 250px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .imagen-principal {
        width: 200px;
        top: 5px;
        left: 65px;
        right: auto;
    }
    
    .imagen-secundaria-1 {
        width: 150px;
        bottom: 27px;
        right: 165px;
        left: auto;
    }
    
    .imagen-secundaria-2 {
        width: 160px;
        right: 0px;
        bottom: 10px;
        left: auto;
    }
}

@media (max-width: 375px) {
    .imagenes-flotantes {
        height: 220px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .imagen-principal {
        width: 170px;
        top: 5px;
        left: 50px;
        right: auto;
    }
    
    .imagen-secundaria-1 {
        width: 120px;
        bottom: 35px;
        right: 145px;
        left: auto;
    }
    
    .imagen-secundaria-2 {
        width: 130px;
        right: 10px;
        bottom: 20px;
        left: auto;
    }
}

@media (max-width: 320px) {
    .imagenes-flotantes {
        height: 200px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .imagen-principal {
        width: 150px;
        top: 5px;
        left: 50px;
        right: auto;
    }
    
    .imagen-secundaria-1 {
        width: 100px;
        bottom: 40px;
        right: 115px;
        left: auto;
    }
    
    .imagen-secundaria-2 {
        width: 110px;
        right: 0px;
        bottom: 25px;
        left: auto;
    }
}


/* Estilos Generales para pantallas pequeñas */

@media (max-width: 1440px) {
    .h1-titulo {
        font-size: 2.5em;
      }
    .imghero {
        width: 100%; /* Imagen ocupa todo el ancho disponible en tablet */
        height: 300px; /* Altura fija para mantener proporción */
        object-fit: cover;
      }

}
@media (max-width: 1024px) {
    .h1-titulo {
        font-size: 2.3em;
        margin: 0px;
      }
    .p-titulo {
        font-size: 1.3em;
        margin: 0px;
    }
    .imghero {
        width: 100%; /* Imagen ocupa todo el ancho disponible en tablet */
        height: 300px; /* Altura fija para mantener proporción */
        object-fit: cover;
      }

}

@media (max-width: 768px) {
  .h1-titulo {
    font-size: 2.5em;
  }
  
  .imghero {
    width: 100%; /* Imagen ocupa todo el ancho disponible en tablet */
    height: 350px; /* Altura fija para mantener proporción */
    object-fit: cover;
  }
  
  .estilos-hero {
    padding: 30px 20px; /* Reducir padding en tablet */
  }

  #navbarNav {
    padding: 10px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .h1-titulo {
    font-size: 2.2em;
  }
  .p-titulo{
    font-size: 1.1em;
  }
  .ancla-hero {
    font-size: 16px; /* Reducido de 24px a 16px */
    width: 110px; /* Reducido de 140px a 110px */
    padding: 6px 10px; /* Reducir padding interno */
    margin: 10px 0px 10px 0px;
  }
  
  .imghero {
    width: 100%; /* Imagen ocupa todo el ancho en móvil */
    height: 200px; /* Altura fija más pequeña para móvil */
    object-fit: cover;
  }
  
  .estilos-hero {
    padding: 20px 15px; /* Menos padding en móvil para más espacio */
  }
  
  .col-hero2 {
    padding: 10px; /* Reducir padding del contenedor del carrusel */
  }
  
  #navbarNav {
    padding: 10px;
    font-size: 1em;
  }

  .logoNavbar {
    height: 40px;
    }
}

/* Sección de servicios */
.servicios-section {
    /*background-color: #e8f4fd00;*/
    padding: 60px 0;
    margin-top: 50px;
}

.servicio-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.servicio-icon {
    background-color: #004A99;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.servicio-titulo {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

/* Responsive para Card de servicios */
@media (max-width: 768px) {
    .servicios-section {
        padding: 30px 10px;
        margin: 0px;
    }
    
    .servicios-section .container {
        padding: 0 5px;
    }
    
    .servicios-section .col-12.col-md-4 {
        padding: 0 5px;
        margin-bottom: 15px;
    }
    
    .servicio-card {
        padding: 20px 10px;
        height: 140px;
        width: 180px;
        max-width: none;
    }
    
    .servicio-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .servicio-titulo {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Sección de comunicación */
.comunicacion-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
}

.comunicacion-header h2 {
    font-weight: bold;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.comunicacion-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    max-width: 800px;
    margin: 0 auto;
}

.comunicacion-lado {
    width: 350px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.comunicacion-azul {
    background-color: #004A99;
    margin-right: 50px;
}

.comunicacion-verde {
    background-color: #2EDA50;
    margin-left: -50px;
}

.comunicacion-texto {
    text-align: center;
    color: white;
    padding: 20px;
}

.comunicacion-texto h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.comunicacion-boton {
    background-color: white;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.comunicacion-boton i {
    font-size: 1.2rem;
}

.comunicacion-mobile {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-image {
    width: 410px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Responsive para comunicación */
@media (max-width: 768px) {
    .comunicacion-content {
        flex-direction: row;
        height: auto;
        /*gap: 20px;*/
        padding: 20px;
    }
    
    .comunicacion-lado {
        width: 280px;
        height: 150px;
        margin: 0 !important;
    }
    
    .comunicacion-texto h3 {
        font-size: 1rem;
    }
    
    .comunicacion-boton {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .comunicacion-mobile {
        position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .mobile-image {
        width: 300px;
    }
    
    .comunicacion-azul {
        order: 1;
    }
    
    .comunicacion-verde {
        order: 3;
    }
}

@media (max-width: 480px) {
    .comunicacion-content {
        flex-direction: column;
        height: auto;
        /*gap: 20px;*/
        padding: 20px;
    }
    .comunicacion-header h2 {
        font-size: 1.4rem;
        padding: 0 20px;
    }
    
    .comunicacion-lado {
        width: 220px;
        height: 130px;
    }
    
    .comunicacion-texto h3 {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .comunicacion-boton {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .comunicacion-mobile {
        position: static;
        transform: none;
        order: 2;
        margin: 20px 0;
    }
    
    .mobile-image {
        width: 200px;
    }
}

/* HEADER DE LOS TITULOS DE CADA PAGINA */

.contenido-principal-titulos {
    margin: 0px;
    padding: 20px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    border-radius: 10px;
}

.h1-titulos {
    color: white;
    letter-spacing: 0.1rem;
    word-wrap: break-word;
}
.p-titulos {
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    
}

/* ESTILOS PARA PRODUCTOS */
.productos-section {
    /*background-color: #f8f9fa00;*/
    margin: 0px 20px;
}

.productos-section .container {
    padding-left: 0;
    padding-right: 0;
}

.producto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.producto-imagen {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.producto-imagen img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.producto-info {
    padding: 20px;
    text-align: center;
}

.producto-badge {
    background: #008616;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.producto-descripcion {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.producto-descripcion i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-descripcion i {
    transform: translateX(5px);
}

/* Estilos para enlaces de productos */
.producto-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.producto-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

/* ESTILOS PARA PAGINAS INDIVIDUALES */

/* Breadcrumb - Linea delgadita que sale arriba */
.breadcrumb-section {
    /*background: #f8f9fa;*/
    padding: 10px 0;
    margin-bottom: 0;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcum-estilo {
    margin: 0px 0px 0px 20px;
}

.breadcrumb-item a {
    color: #1ba500;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #073d7a;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Hero del producto */
.producto-hero-section {
    padding: 30px 0;
    margin: 0px 20px 20px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.producto-hero-imagen {
    text-align: center;
    padding: 20px;
}

.producto-hero-imagen img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    /*mask-image: linear-gradient( black 80%, transparent 0%);*/
}

.producto-hero-content {
    padding: 20px;
}
.producto-hero-content-c {
    padding: 20px;
    text-align: center;
}

.producto-titulo {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0958B1;
    margin-bottom: 15px;
}

.producto-subtitulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 20px;
}

.producto-descripcion-hero {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 30px;
}

/* Botones de acciones */

.producto-acciones {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.producto-acciones .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    border: 2px solid transparent;
}

.producto-acciones .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.producto-acciones .btn:hover::before {
    left: 100%;
}

.btn-cotizacion {
    background: linear-gradient(135deg, #1ba500, #008616);
    color: white;
    border-color: #1ba500;
    box-shadow: 0 6px 20px rgba(27,165,0,0.3);
}

.btn-cotizacion:hover {
    background: linear-gradient(135deg, #008616, #147700);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(27,165,0,0.4);
}

.btn-llamar {
    background: transparent;
    border: 2px solid #0958B1;
    color: #0958B1;
    box-shadow: 0 6px 20px rgba(9,88,177,0.2);
}

.btn-llamar:hover {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    border-color: #0958B1;
    color: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(9,88,177,0.4);
}

.producto-acciones .btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Lista de tipos disponibles (entre hero e info detallada) */
.lista-tipos-rodamientos-section {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    margin: 20px;
    border-radius: 10px;
    padding: 30px 20px;
}

.lista-tipos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px; /* row and column gap */
}

.tipo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0; /* grid already adds spacing via gap */
}

.tipo-texto {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    font-weight: 600;
}

.tipo-texto i {
    color: #000000; /* chevrón azul */
}

.badge-disponible {
    background-color: #1ba500; /* verde */
    color: #ffffff;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
    .tipo-item {
        padding: 10px;
    }
    .badge-disponible {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .lista-tipos {
        grid-template-columns: 1fr; /* una por fila en móviles */
    }
}

/* Información detallada */
.producto-info-section {
    background: #fff;
    margin: 20px;
    border-radius: 10px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: white;
}

.info-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #0958B1;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card ul li {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 20px;
}

.info-card ul li:before {
    color: #0958B1;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.info-card ul li:last-child {
    border-bottom: none;
}

/* Sección de contacto del producto */
.producto-contacto-section {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    padding: 60px 0;
    margin: 20px;
    border-radius: 10px;
}

.producto-contacto-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.producto-contacto-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contacto-opciones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contacto-opciones .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 18px 35px;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 180px;
}

.contacto-opciones .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.contacto-opciones .btn:hover::before {
    left: 100%;
}

.contacto-opciones .btn-success {
    background: linear-gradient(135deg, #25d366, #1ba500);
    border-color: #25d366;
    /*box-shadow: 0 8px 25px rgba(37,211,102,0.4);*/
}

.contacto-opciones .btn-success:hover {
    background: linear-gradient(135deg, #1ba500, #147700);
    border-color: #1ba500;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37,211,102,0.5);
    color: white;
}

.contacto-opciones .btn-primary {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    border: 3px solid #ffffff;
    box-shadow: 0 8px 25px rgba(9,88,177,0.4);
}

.contacto-opciones .btn-primary:hover {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-color: #ffffff;
    color: #0958B1;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.3);
}

.contacto-opciones .btn-outline-primary {
    background: transparent;
    border: 3px solid #ffffff;
    color: #ffffff;
    /*box-shadow: 0 8px 25px rgba(255,255,255,0.2);*/
}

.contacto-opciones .btn-outline-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0958B1;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.contacto-opciones .btn i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Productos relacionados */
.productos-relacionados-section {
    background: #ffffff;
    margin: 20px;
    border-radius: 10px;
    padding: 40px 20px;
}

.productos-relacionados-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #0958B1;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

/* Estilos para formulario de contacto */
.contacto-form-section {
    background-color: #f8f9fa;
    margin: 20px;
    border-radius: 10px;
}

.contacto-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-titulo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #0958B1;
    font-weight: 600;
    margin-bottom: 15px;
}

.form-subtitulo {
    font-family: 'Montserrat', sans-serif;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-label i {
    color: #0958B1;
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #0958B1;
    box-shadow: 0 0 0 0.2rem rgba(9, 88, 177, 0.25);
}

.form-control-custom:valid {
    border-color: #28a745;
}

.form-check-input:checked {
    background-color: #0958B1;
    border-color: #0958B1;
}

.form-check-label {
    font-family: 'Montserrat', sans-serif;
    color: #495057;
}

.btn-registrar {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-registrar:hover {
    background: linear-gradient(135deg, #073d7a, #0958B1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(9, 88, 177, 0.3);
    color: white;
}

.alert-success {
    border-radius: 10px;
    border: none;
    background-color: #d4edda;
    color: #155724;
    font-family: 'Montserrat', sans-serif;
}

/* Información adicional de contacto */
.info-contacto-section {
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.info-contacto-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f1f1f1;
    transition: all 0.3s ease;
    height: 100%;
}

.info-contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-contacto-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-contacto-icon i {
    font-size: 2rem;
    color: white;
}

.info-contacto-card h4 {
    font-family: 'Oswald', sans-serif;
    color: #0958B1;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-contacto-card p {
    font-family: 'Montserrat', sans-serif;
    color: #495057;
    margin: 0;
}

.info-contacto-card a {
    color: #0958B1;
    text-decoration: none;
    font-weight: 600;
}

.info-contacto-card a:hover {
    color: #073d7a;
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    .producto-titulo {
        font-size: 2.2rem;
    }
    
    .producto-subtitulo {
        font-size: 1.1rem;
    }
    
    .producto-descripcion-hero {
        font-size: 1rem;
    }
    
    .producto-acciones {
        justify-content: center;
    }
    
    .producto-acciones .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contacto-opciones {
        flex-direction: column;
        align-items: center;
    }
    
    .contacto-opciones .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .producto-contacto-section h2 {
        font-size: 2rem;
    }

}

/* Sobre Nosotros - Secciones */
.sobre-empresa-section {
    background: #ffffff;
    margin: 20px;
    border-radius: 10px;
    padding: 40px 20px;
}

.sobre-empresa-section h2 {
    font-family: 'Oswald', sans-serif;
    color: #0958B1;
    font-weight: 600;
}

.sobre-empresa-section p,
.sobre-empresa-section li {
    font-family: 'Montserrat', sans-serif;
    color: #495057;
}

.sobre-empresa-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sobre-empresa-section li {
    padding: 6px 0;
}

.mapa-section {
    background: #ffffff;
    margin: 20px;
    border-radius: 10px;
    padding: 30px 20px;
}

.mapa-section h2 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-weight: 600;
}

.mapa-iframe-wrapper {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

/* ESTILOS MEJORADOS PARA SOBRE NOSOTROS */

/* Card principal de información de empresa */
.empresa-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(9, 88, 177, 0.1);
}

.empresa-info-header {
    background: linear-gradient(135deg, rgba(9, 88, 177, 0.05), rgba(9, 88, 177, 0.1));
    border-bottom: 2px solid rgba(9, 88, 177, 0.1);
}

.empresa-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    box-shadow: 0 6px 20px rgba(9, 88, 177, 0.3);
}

.empresa-title {
    color: #0958B1;
    font-size: 1.6rem;
    letter-spacing: 0.3px;
}

.empresa-subtitle {
    font-size: 0.9rem;
}

.empresa-text {
    font-size: 1rem;
    color: #495057;
}

.productos-title {
    color: #0958B1;
    font-size: 1.1rem;
}

.producto-item {
    background: linear-gradient(135deg, rgba(9, 88, 177, 0.05), rgba(9, 88, 177, 0.08));
    border-left: 3px solid #0958B1;
    transition: all 0.3s ease;
}

/* Card de valores */
.valores-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(9, 88, 177, 0.1);
}

.valores-header {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
}

.valores-header-overlay {
    background: rgba(255,255,255,0.1);
    opacity: 0.3;
}

.valores-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.valor-item {
    background: linear-gradient(135deg, rgba(9, 88, 177, 0.05), rgba(9, 88, 177, 0.1));
    border-left: 4px solid #0958B1;
    transition: all 0.3s ease;
}

.valor-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    box-shadow: 0 4px 15px rgba(9, 88, 177, 0.3);
}

.valor-title {
    font-size: 1.1rem;
}

.valor-text {
    font-size: 0.95rem;
}

.estadistica-item {
    background: linear-gradient(135deg, rgba(9, 88, 177, 0.1), rgba(9, 88, 177, 0.05));
}

.estadistica-numero {
    font-size: 1.8rem;
    color: #0958B1;
    text-shadow: 0 2px 4px rgba(9, 88, 177, 0.2);
}

.estadistica-texto {
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

/* Sección de mapa mejorada */
.mapa-section-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mapa-container {
    background: #ffffff;
    border: 2px solid rgba(9, 88, 177, 0.2);
}

.mapa-header {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
}

.mapa-icon-circle {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #0958B1;
}

.mapa-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mapa-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contacto-card {
    background: linear-gradient(135deg, rgba(9, 88, 177, 0.08), rgba(9, 88, 177, 0.12));
    border: 1px solid rgba(9, 88, 177, 0.2);
}

.contacto-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
}

.contacto-title {
    color: #0958B1;
    font-size: 1.2rem;
}

.contacto-text {
    color: #495057;
    font-size: 1rem;
}

.info-destacada {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.info-icon {
    color: #28a745;
}

.info-text {
    color: #495057;
    font-size: 1.1rem;
}

.mapa-titulo {
    color: #0958B1;
}

.mapa-frame {
    border: 3px solid rgba(9, 88, 177, 0.3);
}

/* ESTILOS PARA FOOTER */
.footer-section {
    background: linear-gradient(135deg, #0958B1, #073d7a);
    color: white;
    padding: 50px 0 20px 0;
    margin: 20px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    padding: 0 30px;
}

.footer-column {
    margin-bottom: 30px;
}

/* Logo del footer */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 150px;
    margin-right: 0px;
    background: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.40);
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e8f4fd;
    margin-bottom: 25px;
}

/* Redes sociales */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    color: #0958B1;
    transform: translateY(-3px);
}

/* Subtítulos del footer */
.footer-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enlaces del footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e8f4fd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
    text-decoration: underline;
}

.footer-links a:before {
    margin-right: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover:before {
    transform: translateX(5px);
}

/* Información de contacto */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #e8f4fd;
}

.contact-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 50%;
    margin-right: 12px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Línea divisoria */
.footer-divider {
    border: none;
    height: 1px;
    background: rgb(255, 255, 255);
    margin: 30px 30px 20px 30px;
}

/* Parte inferior del footer */
.footer-bottom {
    padding: 0 30px;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #e8f4fd;
    margin: 0;
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-badge i {
    font-size: 0.9rem;
}

@media (max-width: 1440px) {
    .footer-logo-img {
        height: 135px;
    }
}

@media (max-width: 1024px) {
    .footer-logo-img {
        height: 100px;
    }
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer-section {
        margin: 20px;
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-column {
        text-align: start;
        margin-bottom: 25px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: start;
    }
    
    .contact-item {
        justify-content: start;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-divider {
        margin: 25px 20px 15px 20px;
    }

    .footer-logo-img {
        height: 80px;
    }
}



@media (max-width: 480px) {
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-badge {
        font-size: 0.75rem;
    }
    .footer-logo-img {
        height: 90px;
    }
}

/* Sección de Marcas */
.marcas-section {
    background: #ffffff;
    margin: 20px;
    border-radius: 10px;
    padding: 40px 20px;
}

.marcas-section h2 {
    font-family: 'Oswald', sans-serif;
    color: #0958B1;
    font-weight: 600;
}

.brand-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    height: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #dbe2ea;
}

.brand-logo {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    /*filter: grayscale(100%) contrast(1.05);
    opacity: 0.8;*/
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.brand-card:hover .brand-logo {
    /*filter: grayscale(0%);
    opacity: 1;*/
    transform: scale(1.03);
}

/* Iconos de beneficios */
.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b11d, #00490c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.benefit-icon:hover {
    transform: translateY(-5px);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.marcas-section h5 {
    font-family: 'Oswald', sans-serif;
    color: #0958B1;
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .marcas-section {
        padding: 30px 15px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .brand-card {
        height: 120px;
        padding: 15px;
    }
    .brand-logo {
        max-height: 70px;
    }
}

@media (max-width: 576px) {
    .brand-card {
        height: 100px;
        padding: 12px;
    }
    .brand-logo {
        max-height: 60px;
    }
}

/* Layout de 5 columnas para marcas */
.brand-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Tarjetas más grandes */
.brand-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    height: 290px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #dbe2ea;
}

.brand-logo {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    /*filter: grayscale(100%) contrast(1.05);
    opacity: 0.8;*/
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.brand-card:hover .brand-logo {
    /*filter: grayscale(0%);
    opacity: 1;*/
    transform: scale(1.03);
}

.line-marcas {
    border: none;
    height: 1px;
    background: #008616;
    margin: 30px 30px 20px 30px;
}

/* Responsive para 5 columnas */
@media (max-width: 1200px) {
    .brand-col-5 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 768px) {
    .brand-col-5 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .brand-card {
        height: 220px;
        padding: 25px;
    }
    
    .brand-logo {
        max-height: 130px;
    }
}

@media (max-width: 576px) {
    .brand-col-5 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .brand-card {
        height: 180px;
        padding: 20px;
    }
    
    .brand-logo {
        max-height: 100px;
    }
}

@media (max-width: 420px) {
    .brand-col-5 {
        flex: 0 0 100%;
        max-width: 75%;
    }
    
    .brand-card {
        height: 150px;
        padding: 10px;
    }
    
    .brand-logo {
        max-height: 70px;
    }
}

/* Estilos para el carrusel hero */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

#heroCarousel .carousel-control-icon {
    font-size: 2rem;
    color: #0958B1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-control-prev:hover .carousel-control-icon,
#heroCarousel .carousel-control-next:hover .carousel-control-icon {
    background: #0958B1;
    color: white;
    transform: scale(1.1);
}

#heroCarousel .carousel-indicators {
    bottom: 20px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background-color: #008616;
    opacity: 1;
    transform: scale(1.2);
}

#heroCarousel .carousel-indicators button:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Nuevo diseño hero - mitad azul, mitad imagen */
.hero-section {
    margin: 20px;
    border-radius: 10px !important;
    /*overflow: hidden;*/
}
.carousel-inner {
    border-radius: 10px !important;
}

.hero-slide-container {
    display: flex;
    height: 55vh;
    min-height: 500px;
    max-height: 700px;
    border-radius: 10px !important;
}

.hero-text-section {
    flex: 0 0 50%;
    width: 50%;
    background: linear-gradient(360deg, #0958B1, #073d7a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.hero-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

.hero-image-section {
    flex: 0 0 50%;
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    max-width: 500px;
    color: white;
    text-align: left;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #008616;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    background: #f8f9fa;
    color: #008616;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Responsive para el nuevo diseño */
@media (max-width: 768px) {
    .hero-slide-container {
        flex-direction: column;
        height: auto;
        min-height: 80vh;
        max-height: none;
    }
    
    .hero-text-section {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 20px;
        min-height: 40vh;
    }
    
    .hero-image-section {
        flex: 0 0 auto;
        width: 100%;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text-section {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

.wrapper {
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 100px;
    margin-top: 5rem;
    overflow: hidden;
    mask-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 1) 80%,
      rgba(0, 0, 0, 0)
    );
  }
  
  @keyframes scrollLeft {
    to {
      left: -200px;
    }
  }
  
  .item {
    width: 200px;
    height: 100px;
    background-color: white;
    border-radius: 6px;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
  }

  .item:hover img {
    filter: grayscale(0%);
  }
  
  .item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
  }
  
  .item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
  }
  
  .item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
  }
  
  .item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
  }
  
  .item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
  }
  
  .item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
  }
  
  .item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
  }
  
  .item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
  }

  /* ESTILOS DE ADMIN */
  .container-clientes {
    margin: 20px;
    padding: 20px;
    background: white;
    color: blue;
    border-radius: 10px;
  }

  .btn-ver {
    background-color: #008616;
    color: white;
    border-radius: 5px;
    padding: 2px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-ver:hover {
    background-color: #00690f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .btn-editar {
    background-color: #073d7a;
    color: white;
    border-radius: 5px;
    padding: 2px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-editar:hover {
    background-color: #073d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .btn-eliminar {
    background-color: #971313;
    color: white;
    border-radius: 5px;
    padding: 2px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-eliminar:hover {
    background-color: #971313;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .container-editarcliente {
    margin: 20px;
    padding: 20px;
    background: white;
    color: blue;
    border-radius: 10px;
    margin-top: 20px;
  }

  /* Estilos para eliminar cliente */
  .alert-icon-delete {
    font-size: 4rem;
    color: #dc3545;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }

  .cliente-info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #dc3545;
  }

  .cliente-info-card2 {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #008616;
  }

  .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
  }

  .info-row:last-child {
    border-bottom: none;
  }

  .info-label {
    font-weight: 600;
    color: #495057;
  }

  .info-value {
    color: #212529;
    font-weight: 500;
  }

  /* Estilos para enviar correo */
  .email-icon {
    font-size: 4rem;
    color: #008616;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }