/* ------------------------------> Variables (:root) */
:root {
    --background-sel: #1e1e1e;
    --gold-sel: #c7a47e;
    --dark-sel: #0a0a0a;
    --black-sel: #000000;
    --white-sel: #ffffff;
    --black-light-sel: #1c1c1c;
    --gray-bg: #282828;
    --gray-light-sel: #cccccc;
    --gray-dark-sel: #3c3c3c;
    --footer-text: #333333;
}

/* Colores de texto y fondo */

.fondo-web-color {
    background-color: var(--background-sel);
    background-image:
        linear-gradient(to right, transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.05) calc(25% - 0.5px), rgba(255, 255, 255, 0.05) calc(25% + 0.5px), transparent calc(25% + 0.5px)),
        linear-gradient(to right, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.05) calc(50% - 0.5px), rgba(255, 255, 255, 0.05) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
        linear-gradient(to right, transparent calc(75% - 0.5px), rgba(255, 255, 255, 0.05) calc(75% - 0.5px), rgba(255, 255, 255, 0.05) calc(75% + 0.5px), transparent calc(75% + 0.5px));
}

.color-negro-suave {
    color: var(--black-light-sel)
}

.color-dorado {
    color: var(--gold-sel);
}

.color-gris-suave {
    color: var(--gray-light-sel);
}

.color-gris-oscuro {
    color: var(--gray-dark-sel);
}

.fondo-gris-oscuro {
    background-color: var(--gray-dark-sel);
}

.fondo-dorado {
    background-color: var(--gold-sel);
}

.text-black {
    color: #000 !important;
}

.text-white {
    color: #d7d7d7 !important;
}

/* Tipografia y texto */
.text-spaced {
    letter-spacing: 2px;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.fs-7 {
    font-size: 0.75rem;
}

/* Dimensiones y layout */
.mw-550 {
    max-width: 550px !important;
}

.mh-350 {
    max-height: 350px !important;
}

/* Formularios y Componentes */
.form-label {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.form-color-1 {
    background-color: #3c3c3c;
}

.form-color-2 {
    background-color: #505050;
}

/* Textarea limpio */
.no-resize {
    resize: none;
}

/* Boton de Whatssap */
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: #25d366;
    color: #fff !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #1bb353;
}

/* ------------------------------> Navbar estructura */
.navbar-custom {
    padding: 0;
    width: 100%;
}

.nav-left {
    background-color: #000000;
    display: flex;
    height: 75px;
    justify-content: center;
    flex-direction: column;
}

.nav-right-bar {
    align-items: stretch;
    background-color: #0a0a0a;
    display: flex;
    height: 75px;
    width: 100%;
}

/* Nav links - items */
.nav-item-sel {
    align-items: center;
    display: flex;
    height: 75px;
    position: relative;
}

.nav-right-bar .nav-link {
    align-items: center;
    border: none !important;
    color: #f9f9f9 !important;
    display: flex;
    font-weight: 600;
    font-size: 0.75rem;
    height: 75px;
    padding: 0 18px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-right-bar .nav-link:hover {
    color: #c7a47e !important;
}

.nav-right-bar .nav-link.active {
    align-items: flex-end;
    background: linear-gradient(to top, #282828 85%, transparent 85%) !important;
    color: #fff !important;
    padding-bottom: 28px !important;
}

.nav-right-bar .nav-link.active::before {
    background-color: #c7a47e;
    content: "";
    height: 2.5px;
    position: absolute;
    top: 0;
    left: 25%;
    right: 25%;
}

.nav-item-sel:hover>.dropdown-sel {
    display: block;
}

.nav-item-sel:hover>.nav-link,
.nav-item-sel .nav-link.active {
    align-items: center !important;
    background: linear-gradient(to top, #282828 85%, transparent 85%) !important;
    color: #fff !important;
    display: flex !important;
    height: 75px !important;
    padding-bottom: 0 !important;
    position: relative;
}

.nav-item-sel:hover>.nav-link::before,
.nav-item-sel .nav-link.active::before {
    background-color: #c7a47e;
    content: "";
    display: block !important;
}

/* Menu Responsive */
.dropdown-sel {
    background-color: #282828;
    border: none !important;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.5);
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    margin: 0;
    list-style: none;
    min-width: 170px;
    padding: 0;
    z-index: 9999;
}

.dropdown-sel::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-sel li a {
    align-items: center !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    justify-content: space-between !important;
    padding: 15px 15px !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dropdown-sel li a::before,
.dropdown-sel li a::after {
    content: none !important;
    display: none !important;
}

.dropdown-sel li a:hover,
.dropdown-sel li a.active {
    background-color: #c7a47e !important;
    color: #1a1a1a !important;
}

/* Sub-dropdown (3er nivel: fly-out lateral) */
.dropdown-sel>li {
    position: relative;
}

.dropdown-sel--sub {
    top: 0 !important;
    left: 100% !important;
    min-width: 230px !important;
}

.dropdown-sel--sub::before {
    top: 0;
    left: -8px;
    width: 8px;
    height: 100%;
}

.dropdown-sel>li:hover>.dropdown-sel--sub {
    display: block;
}

@media (min-width: 1251px) {
    .nav-left {
        width: 20%;
    }

    .nav-right {
        width: 80%;
    }

    .nav-right-bar {
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 992px) and (max-width: 1250px) {
    .nav-left {
        width: 20%;
    }

    .nav-right {
        width: 80%;
    }

    .nav-right-bar .nav-link {
        padding: 0 10px !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 991px) {
    .nav-left {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .nav-right-bar {
        height: auto !important;
        padding: 0 !important;
        display: block;
    }

    .nav-right-bar .nav {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .nav-right-bar .nav-item {
        width: 100% !important;
        display: block;
    }

    .nav-right-bar .nav-link {
        width: 100% !important;
        height: auto !important;
        padding: 20px 0 !important;
        display: flex;
        justify-content: center;
        border: none !important;
    }

    .nav-right-bar .nav-link.active {
        background-color: #282828 !important;
        background-image: none !important;
        color: #fff !important;
        border-radius: 0 !important;
        border-left: 5px solid #c7a47e !important;
        align-items: center;
        padding-bottom: 20px !important;
    }

    .nav-right-bar .nav-link.active::before {
        display: none !important;
    }

    .dropdown-sel.mobile-stack {
        position: static !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        width: 100% !important;
    }

    .dropdown-sel.mobile-stack li {
        opacity: 1 !important;
        transform: none !important;
        display: block !important;
    }

    .sub-link-sel {
        display: flex;
        justify-content: space-between;
        padding: 10px 15px !important;
        color: white !important;
        text-decoration: none;
        font-size: 0.9rem;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 5px;
    }

    .dropdown-sel--sub.mobile-stack {
        margin-left: 15px !important;
        border-left: 2px solid rgba(199, 164, 126, 0.4) !important;
    }
}

/* ------------------------------> Footer */
.main-footer {
    background-color: #ffffff;
    color: #333;
    padding: 40px 10% 20px 10%;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-section {
    flex: 1;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #000000;
    margin: 30px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Contenido y Secciones */
.brand h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #000;
}

.brand p {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
}

/* Títulos de sección */
.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: bold;
    display: inline-block;
}

/* Mapa del sitio */
.sitemap ul {
    list-style: none;
    padding: 0;
}

.sitemap ul li {
    margin-bottom: 8px;
}

.sitemap ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    display: inline-block;
    width: auto;
}

.sitemap ul li a:hover,
.sitemap ul li a.active {
    color: #c6a47e;
}

.sitemap ul li a.active {
    font-weight: bold;
}

/* Información de contacto */
.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

/* Enlaces del pie */
.footer-link:hover {
    color: #000;
}

/* Redes Sociales */
.social-links-2 {
    display: flex;
    gap: 15px;
}

.social-links-2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #4a4a4a;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-2 a i {
    font-size: 23px;
}

.social-links-2 a:hover {
    background-color: #c5a37e;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 5% 20px 5%;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section h3 {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-links-2 {
        justify-content: center;
    }
}

/* ------------------------------> Home */
#homeCarousel .carousel-item {
    transition: transform 0.8s ease-in-out !important;
}

.fixed-caption-container {
    pointer-events: none;
}

#homeCarousel {
    background-color: #000;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.carousel-caption {
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
}

.custom-indicators {
    z-index: 15;
}

.custom-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    margin: 0 6px;
    border: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.custom-indicators .active {
    background-color: #000000 !important;
    opacity: 1;
}

/* Botón Central de Home */
.btn-home-central {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-sel);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.btn-home-central:hover {
    background-color: #b5936d;
    color: white;
}

/* Seccion Mision/Vision/Valores */
.item-home {
    flex: 1;
    min-width: 250px;
    padding: 0 20px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #989898;
    transition: all 0.3s ease;
}

.item-home:nth-child(3) {
    border-right: none;
}

.item-home i {
    font-size: 2.5rem;
    color: #989898;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s ease;
}

.item-home p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #989898;
    margin: 0;
    line-height: 1.4;
}

.item-home .content {
    padding: 20px;
}

/* Filas de Informacion */
.home-row {
    display: flex;
    align-items: stretch;
    min-height: 480px;
}

.home-info {
    background-color: #282828;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.home-info h3 {
    font-weight: 800;
    color: #fefefe;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.home-info p {
    color: #fefefe;
    line-height: 1.6;
    margin-bottom: 0;
}

.home-img {
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

@media (min-width: 992px) {
    .home-row {
        flex-direction: row;
    }

    .btn-home-central {
        position: absolute;
        top: 50%;
        right: -50px;
        margin: 0;
        transform: translateY(-50%);
    }
}

@media (max-width: 992px) {
    .home-row {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .home-img {
        min-height: 350px;
        width: 100%;
    }

    .col-md-6 {
        width: 100%;
    }
}

/* ------------------------------> Nosotros */
.bg-gris {
    background-color: #5a5a5a;
}

.linea-dorada {
    width: 50px;
    height: 3px;
    background-color: #c7a37f;
    border-radius: 2px;
}

/* Contenido */
p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.contenedor-imagen {
    display: flex;
    height: 100%;
}

.img-ajustada {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

/* Bordes y Separadores */
.border-start-nosotros {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.border-x-nosotros {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 992px) {
    .border-gris-nosotros {
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .img-ajustada {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .item-home {
        flex: 0 0 70%;
        border-top: 1px solid #fff;
        border-right: none !important;
        margin-left: auto;
        margin-right: auto;
    }

    .item-home:nth-child(1) {
        border-top: none;
    }

    .border-start-nosotros,
    .border-x-nosotros,
    .border-x-nosotros-2,
    .card-title,
    .home-info p {
        border: none !important;
        padding-left: 0 !important;
        margin-top: 30px;
    }
}

/* ------------------------------> Servicios */
/* ------------------------------> Vacio */

/* ------------------------------> Busquedas - Cards y Status */
.link-titulo-busqueda {
    transition: color 0.3s ease;
}

.link-titulo-busqueda:hover {
    text-decoration: underline 1px !important;
}

.card-destacada {
    background-color: #c6a47e !important;
    color: #000 !important;
}

.card-destacada {
    background-color: #c6a47e !important;
}

.card-cerrada {
    background-color: #8b0000 !important;
    color: #ffffff !important;
}

.card-cerrada {
    background-color: rgba(0, 0, 0, 0.3);
}

.busqueda-status {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.busqueda-destacada {
    background-color: #c6a47e;
    color: #fff;
}

.busqueda-cerrada {
    background-color: #333;
    color: #bbb;
}

.busqueda-destacada-negro {
    background-color: #3c3c3c;
    color: #fff;
}

.busqueda-cerrada-rojo {
    background-color: #ff4d4d;
    color: #fff;
}

/* Botones y Acciones */
.btn-dorado-enviar {
    background-color: #c6a47e !important;
    color: #fff !important;
    border: none;
    border-radius: 3px !important;
    padding: 10px 25px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-dorado-enviar:hover {
    background-color: #a68662 !important;
    transform: scale(1.05);
}

.btn-list-servicios {
    background-color: #c7a47e;
    color: #ffffff !important;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 480px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-list-servicios:hover {
    background-color: #b5936d;
    color: #ffffff !important;
    transform: translateX(5px);
}

.btn-list-servicios .icon-circle {
    background-color: #ffffff;
    color: #c7a47e;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-gris-destacado {
    background-color: #3c3c3c;
    color: #fff !important;
    font-weight: bold;
    border-radius: 3px !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-gris-destacado:hover {
    background-color: #4f4f4f;
    transform: scale(1.05);
}

.list-sel {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.list-sel li {
    margin-bottom: 0.25rem;
}

.list-sel li::marker {
    font-size: 1.5em;
}

.btn-gris-disabled {
    background-color: #5a5a5a !important;
    border: 1px solid #555555;
    color: #fff !important;
    font-weight: bold;
    border-radius: 3px !important;
    pointer-events: none;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

/* Modales y Formularios */
body.modal-open #main-content {
    transition: filter 0.3s ease;
}

.modal-dialog {
    max-width: 500px !important;
    margin: 0.5rem auto;
}

.modal-content {
    background-color: #282828 !important;
    border-radius: 0 !important;
}

.modal-body {
    padding: 0.8rem 1.2rem !important;
}

/* Estilos internos del Modal */
.modal-content .form-label {
    margin-bottom: 0px;
    font-size: 11px !important;
    letter-spacing: 0.5px;
}

.modal-content .form-control {
    padding: 0.25rem 0.5rem !important;
    font-size: 12px !important;
    margin-bottom: 6px;
    border-bottom: 1px solid #444 !important;
    color: white !important;
    height: auto !important;
}

.modal-content textarea.form-control {
    min-height: 40px !important;
}

.modal-content .btn-dorado-enviar {
    padding: 0.5rem !important;
    font-size: 12px !important;
}

@media (max-width: 767.98px) {
    .modal-dialog {
        max-width: 90% !important;
        margin: 10px auto;
    }
}

/* ------------------------------> Blog - Cards y Estructura */
.card-blog-container {
    background-color: #4a4a4a;
    border: none !important;
    border-radius: 0 !important;
    transition: transform 0.3s ease;
}

.card-blog-body {
    min-height: 292px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Contenido */
.card-blog-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-line;
}

.card-blog-btn-cerrar-container.collapsing {
    height: auto !important;
    display: none;
}

/* Botones y Estado */
.card-blog-btn-cerrar {
    color: #c6a47e;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-top: auto;
    padding-top: 20px;
}

.card-blog-btn-cerrar:hover {
    color: #a68662;
}

/* Cuando el elemento se está cerrando (collapsing), lo hacemos invisible rápido */
.grupo-contenido.collapsing {
    opacity: 0;
    transition: height 0.3s ease, opacity 0.1s ease;
}

/* El contenido que entra (show) aparece con un delay suave */
.grupo-contenido.collapse.show {
    animation: aparecerSuave 0.5s ease forwards;
}

@keyframes aparecerSuave {
    0% {
        opacity: 0;
        transform: translateY(5px);
    }

    30% {
        opacity: 0;
        /* Se mantiene invisible un momento para que el otro se retire */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {

    .item-col:nth-child(odd) .card-blog {
        background-color: #3c3c3c !important;
    }

    .item-col:nth-child(even) .card-blog {
        background-color: #4a4a4a !important;
    }
}

/* ------------------------------> FAQs - Acordeones */
.accordion-faqs {
    background-color: #3c3c3c;
    border: none;
    margin-bottom: 4px;
    padding: 20px;
}

/* Botón del Acordeón */
.accordion-button {
    background-color: transparent !important;
    color: #000 !important;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
    box-shadow: none !important;
    transition: color 0.3s ease;
}

/* Icono Personalizado (+ / -) */
.accordion-button::after {
    background-image: none !important;
    color: #c5a37e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.5s ease, color 0.5s ease;
    content: '+';
}

.accordion-button:not(.collapsed)::after {
    color: #c5a059;
    transform: rotate(180deg);
    content: '−';
}

/* Animaciones */
.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body {
    padding-left: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.4s ease;
}

/* Estado Activo */
.accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------> Contacto - Campos de entrada */
.custom-input {
    background-color: transparent !important;
    color: white !important;
    border: none !important;
    border-bottom: 1px solid white !important;
    border-radius: 0 !important;
    padding-left: 10px !important;
    padding-right: 0 !important;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.custom-input:focus {
    background-color: transparent !important;
    border-bottom: 1px solid #c6a47e !important;
    box-shadow: none !important;
}

/* Selector de Archivos */
.custom-input[type="file"] {
    width: 50% !important;
    color: transparent !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;
    padding: 0 !important;
    cursor: pointer;
    display: block;
}

/* Estilo del botón del selector de archivos */
.custom-input[type="file"]::file-selector-button {
    width: 100% !important;
    margin: 0 !important;
    padding: 7px 15px !important;
    background-color: #ffffff !important;
    color: #3c3c3c !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 2;
    cursor: pointer !important;
    transition: background-color 0.3s ease;
}

.custom-input[type="file"]:valid {
    color: white !important;
}

@media (max-width: 991px) {

    .custom-input[type="file"],
    .btn-dorado-enviar {
        width: 100% !important;
        height: auto;
    }
}

/* ------------------------------> Paginacion */

.pagination-container nav div.flex-1.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between>div:first-child,
.pagination-container nav p,
.pagination-container .text-sm.text-gray-700,
.pagination-container .small.text-muted {
    display: none !important;
}

.pagination .page-item:first-child,
.pagination .page-item:last-child {
    display: none !important;
}

.pagination .page-item .page-link {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 0 !important;
    padding: 10px 18px;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.pagination {
    gap: 5px;
    margin-bottom: 0;
    justify-content: center;
}

.pagination .page-item .page-link:hover {
    background-color: #c6a47e;
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: #c6a47e !important;
    border-color: #c6a47e !important;
    color: white !important;
    font-weight: bold;
}

/* -- DataTables Admin: fila de filtros por columna -------- */
table.dt-admin tfoot th {
    background: #f1f3f5;
    padding: 6px 8px;
    border-top: 1px solid #dee2e6;
}

table.dt-admin tfoot .dt-col-filter {
    border: 1px solid #ced4da;
    border-radius: 5px;
    background: #fff;
    font-size: .78rem;
    padding: .25rem .5rem;
    height: 29px;
    color: #212529;
    width: 100%;
}

table.dt-admin tfoot .dt-col-filter:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, .15);
    outline: 0;
}

/* Flecha de ordenamiento: cabecera activa */
table.dt-admin thead .sorting::after,
table.dt-admin thead .sorting_asc::after,
table.dt-admin thead .sorting_desc::after {
    opacity: .8;
}

/* B�squeda global DataTables */
.dt-toolbar {
    padding: .5rem 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.dataTables_filter label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    color: #6c757d;
    margin: 0;
}