:root {
    --primary-color: #00A7E1;
    /* Azul claro del logo */
    --primary-light: #4BBFE8;
    --secondary-color: #005B94;
    /* Azul oscuro del logo */
    --accent-color: #FF6B00;
    /* Naranja del logo */
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #999999;
    /* Gris del logo */
}

body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: #f8f9fa;
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--gray-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
    z-index: 3;
    transform: scale(1.5);
    /* Aumenta al 120% */
    transform-origin: center;
}


.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.btn {
    width: 120%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);

    background: linear-gradient(135deg,
            #8799a5 0%,
            #48a7db 40%,
            #b6e0f9 80%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 0.6rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;

    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.6),
        inset -2px -2px 3px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 150, 225, 0.35),
        0 -1px 1px rgba(255, 255, 255, 0.4);

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Brillo permanente más marcado */
.nav-link.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 30%,
            rgba(255, 255, 255, 0.25),
            transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Capa de brillo móvil (hover) */
.nav-link.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0) 100%);
    /* transform: skewX(-20deg); */
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

/* Activación del reflejo al pasar el mouse */
.nav-link.btn:hover::before {
    animation: shimmer 1.2s ease forwards;
    opacity: 1;
}

.nav-link.btn:hover {
    box-shadow:
        0 6px 18px rgba(0, 150, 225, 0.4),
        0 -1px 1px rgba(255, 255, 255, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.2);
    filter: brightness(1.05);
}

/* Movimiento del reflejo */
@keyframes shimmer {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Hero Section */
.hero-section {
    background: black;
    color: white;
    padding: 5rem 0;
    position: relative;
    /* overflow: hidden; */
}

.hero-sectiomn-proveedor {
    background: black;
    color: white;
    padding: 2rem 0 !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url("/assets/img/sombra_1.svg"), url("/assets/img/servicio_1.jpg");
    background-repeat: repeat-x, no-repeat;

    /* Primera capa: sombra en la parte superior */
    background-position: top center, center bottom;

    /* Segunda capa: escalar para poder mostrar solo la mitad inferior */
    background-size: auto, 100% 250%;

    opacity: 0.7;
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content div .col-lg-4 {
    display: flex;
    justify-content: center;
    /* Centra horizontalmente */
    align-items: center;
    /* Centra verticalmente */
}

.hero-content div .col-lg-4 img {
    height: 250px;
    max-width: 350px;
    max-height: 100%;
    /* Evita que sobrepase el tamaño del texto */
    width: auto;
    /* Mantiene la proporción de la imagen */
    object-fit: contain;
    /* Asegura que la imagen se ajuste dentro del espacio disponible */
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-size: 1rem;
    padding-right: 60px;
}

.search-btn {
    position: absolute;
    right: 20px;
    top: 7px;
    background: linear-gradient(145deg,
            #a8c7dd,
            /* Azul claro metalizado */
            #4a6b82,
            /* Azul más oscuro */
            #a8c7dd);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow:
        inset 1px 1px 3px rgba(255, 255, 255, 0.4),
        /* Brillo interno */
        inset -1px -1px 3px rgba(0, 0, 0, 0.2),
        /* Sombra interna */
        0 4px 8px rgba(0, 0, 0, 0.3),
        /* Sombra externa */
        0 -1px 2px rgba(255, 255, 255, 0.2);
    /* Resplandor superior */

    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

.btn-ver-mas {
    background: linear-gradient(145deg,
            #a8c7dd,
            /* Azul claro metalizado */
            #4a6b82,
            /* Azul más oscuro */
            #a8c7dd);
    border: none;
    color: white;
    box-shadow:
        inset 1px 1px 3px rgba(255, 255, 255, 0.4),
        /* Brillo interno */
        inset -1px -1px 3px rgba(0, 0, 0, 0.2),
        /* Sombra interna */
        0 4px 8px rgba(0, 0, 0, 0.3),
        /* Sombra externa */
        0 -1px 2px rgba(255, 255, 255, 0.2);
    /* Resplandor superior */
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 9px rgba(255, 107, 0, 0.4);
}

/* Main Action Buttons */
.action-buttons {
    padding: 2rem 0;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.action-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-publish {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.btn-request {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
}

.btn-benefits {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
}

.action-btn i {
    margin-right: 0.5rem;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    padding-top: 10px;
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.product-sinonimos {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-country {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.product-country i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.product-company {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.product-company i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.product-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 50px;
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 167, 225, 0.3);
}

/* Content Sections */
.content-section {
    padding: 2.5rem;
    background-color: white;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.content-image:hover {
    transform: scale(1.02);
}

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.step-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
}

.step-item:nth-child(1)::before {
    content: '1';
}

.step-item:nth-child(2)::before {
    content: '2';
}

.step-item:nth-child(3)::before {
    content: '3';
}

.step-item:nth-child(4)::before {
    content: '4';
}

.step-item:nth-child(5)::before {
    content: '5';
}

.benefit-item {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.benefit-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary-color);
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    border: 1px solid #e9ecef;
    font-size: 0.95rem;
    box-shadow: none;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 167, 225, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Benefits Section */
.benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 167, 225, 0.2);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.benefit-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/servicio_2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content div div .img-container {
    background-color: white;
    border-radius: 20px;
    display: inline-block;
    /* padding: 5px; Ajusta el espacio alrededor de la imagen */
    /* padding: 5px; */
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.footer-content div div img {
    border-radius: 20px;
    display: block;
    max-width: 100%;
    /* Asegura que la imagen no sobrepase el contenedor */
    height: auto;
}


.footer-content div div p {
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.footer-content .row {
    /* backdrop-filter: blur(4px); */
    padding-top: 20px;
    padding-left: 20px;
    border-radius: 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;

    color: #fff;
    font-size: 1.3rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 1.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;

    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.footer-links a i {
    margin-right: 0.75rem;
    color: var(--primary-light);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.75rem;
    transition: all 0.3s ease;

    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
}

.contact-info {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 20px;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgb(255, 255, 255);
    position: relative;
    text-shadow: 2px 2px 5px 4px 2px 3px rgb(0, 0, 0);
    z-index: 1;
}

.copyright p {
    color: #fff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.507);
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
}

/* Animations */
/* @keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
} */

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar .nav-item {
        margin-bottom: 0.5rem;
    }

    .navbar .nav-link.btn {
        display: inline-block;
        margin-left: 0;
        margin-right: 0.5rem;
    }

    .navbar-brand img {
        margin-left: 50px;
        height: 30px;
    }

    .nav-link.btn {
        width: 100% !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .content-section {
        padding: 1.5rem;
    }
}

.nav-link.btn-action {
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    margin: 0 0.2rem;
}

.nav-link.btn-action:hover {
    background-color: rgba(0, 167, 225, 0.1);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Asegúrate de incluir este bloque en un archivo .css o en un <style> dentro del HTML */
#nuevoProductoModal .modal-content {
    border-radius: 12px;
    border: 2px solid #8a8a8a;
}

#nuevoProductoModal .modal-header {
    background-color: #ebebeb;
    border-bottom: 1px solid #8a8a8a;
}

#nuevoProductoModal .modal-title {
    font-weight: bold;
    color: #8a8a8a;
}

#publicarModal .modal-content {
    border-radius: 12px;
    border: 2px solid #287fa7;
}

#publicarModal .modal-header {
    background-color: #e9eaf7;
    border-bottom: 1px solid #287fa7;
}

#publicarModal .modal-title {
    font-weight: bold;
    color: #287fa7;
}

#beneficiosModal .modal-content {
    border-radius: 12px;
    border: 2px solid #be8227;
}

#beneficiosModal .modal-header {
    background-color: #f7f4e9;
    border-bottom: 1px solid #be8227;
}

#beneficiosModal .modal-title {
    font-weight: bold;
    color: #be8227;
}

#nuevoProductoModal .form-control,
#nuevoProductoModal .form-select {
    border-radius: 6px;
    border-color: #8a8a8a;
}

#nuevoProductoModal textarea {
    resize: vertical;
}

fieldset {
    margin-top: 30px !important;
    border-width: 1px;
    border-color: darkblue;
    padding-block-start: 0em;
    padding-inline-start: 0.75em;
    padding-inline-end: 0.75em;
    border-radius: 5px;
    padding-block-end: 0.625em;
    margin: 0 auto;
    border: darkblue 1px solid;
}

fieldset legend {
    width: auto;
    font-size: 1.2rem;
    border-style: none;
    background-color: darkblue;
    font-weight: bold;
    color: White;
    margin-top: -15px;
    border-radius: 5px;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

#nuevoProductoModal .modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
}

#autocomplete-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 30px;
    width: 95%;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(0);
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #212529;
    transition: background-color 0.2s ease;
}

.autocomplete-item i {
    font-size: 1rem;
    color: #6c757d;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

/* Modal general */
#modalProveedores .modal-content {
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: #f9fafb;
    border: none;
}

#modalProveedores .modal-header {
    background-color: #3b82f6;
    color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 1rem 1.5rem;
    border-bottom: none;
}

#modalProveedores .modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

#modalProveedores .btn-close {
    filter: invert(1);
}

/* Carousel layout */
.carousel-inner {
    padding: 1.5rem 1rem;
}

/* Empresa card */
.empresa-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e2e8f0;
}

.empresa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

/* Logo grande y bien centrado */
.empresa-logo {
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(0%);
}

/* Texto de empresa */
.empresa-nombre {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

/* Indicadores */
.carousel-indicators [data-bs-target] {
    background-color: #3b82f6;
}

/* Botones de navegación */
.carousel-control-prev,
.carousel-control-next {
    filter: invert(50%);
    width: 5%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    filter: invert(10%);
}

.pie--3 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    /* background-color: #25d36500; */
    border-radius: 50%;
    padding: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
    transition: transform 0.2s;
}

.pie--3:hover {
    transform: scale(1.1);
}

.pie--3 img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}