﻿body {
    background-color: #f6f8fa;
}

.nav-tabs-container {
    display: flex;
    align-items: center;
}

.scroll-button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #006196;
    cursor: pointer;
}

.nav-tabs-wrapper {
    overflow: hidden;
    flex-grow: 1;
}

.nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: transparent;
}

.nav-tabs::-webkit-scrollbar {
    display: none;
}

.nav-tabs .nav-item {
    margin-right: 10px;
}

.nav-tabs .nav-link {
    border: 2px solid #d9d9d9;
    border-radius: 8px 8px 0 0;
    color: #b3b3b3;
    font-weight: bold;
    background-color: #fff;
    padding: 12px 32px;
    white-space: nowrap;
    font-size: 1.1rem;
    transition: color 0.2s, background 0.2s, border 0.2s;
}

.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #f58120;
    border-color: #f58120;
}

.tab-content {
    border: 2px solid #d9d9d9; /* Cambiado de #006196 a #d9d9d9 */
    padding: 32px 32px 16px 32px;
    border-radius: 0 0 12px 12px;
    margin-top: -2px;
    background: #fff;
}

.btn-warning {
    background-color: #f58120 !important;
    border: none;
    color: #fff !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 8px 24px;
    margin-right: 10px;
}

.btn-primary {
    background-color: #0074a6 !important;
    border: none;
    color: #fff !important;
    font-weight: bold;
    border-radius: 6px;
    padding: 8px 24px;
}

.card-title {
    color: #006196;
    font-weight: bold;
}

.galeria-imagenes .main-img {
    border: 2px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    max-width: 400px; /* Puedes ajustar este valor según tu preferencia */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.galeria-imagenes .miniatura-img {
    border: 2px solid #f58120;
    border-radius: 6px;
    background: #fff;
    margin-right: 6px;
}

.galeria-imagenes .miniatura-img:last-child {
    margin-right: 0;
}

.caracteristicas-lista {
    background: #f6f8fa;
    border: 1.5px solid #d9d9d9;
    border-radius: 12px;
    padding: 24px 24px 16px 24px;
    margin-top: 24px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,97,150,0.04);
}

.caracteristicas-lista li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 1.08rem;
    color: #222;
}

.caracteristicas-num {
    min-width: 36px;
    min-height: 36px;
    background: #f58120;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.1rem;
    box-shadow: 0 1px 4px rgba(0,97,150,0.08);
}

.Caracteristicas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 24px 0;
    background: #f6f8fa;
    border-radius: 12px;
}

.caracteristica {
    min-width: 120px;
    max-width: 160px;
    padding: 12px 8px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caracteristica img {
    height: 90px; /* Aumenta el tamaño aquí */
    margin-bottom: 0;
    filter: drop-shadow(0 2px 4px rgba(0,97,150,0.10));
}

.caracteristica .nombre {
    font-weight: 600;
    font-size: 1.05rem;
    color: #006196;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.caracteristica .descripcion {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
}

#controladorTabs {
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f6f8fa;
}

#controladorTabs .nav-item {
    display: inline-block;
    float: none;
}

#controladorTabs .nav-link {
    white-space: nowrap;
}


@media (max-width: 767.98px) 
{
    .galeria-imagenes .main-img {
        max-width: 90vw;
        max-height: 180px;
        width: auto;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .galeria-imagenes .miniatura-img {
        width: 44px;
        height: 44px;
    }

    .tab-content {
        padding: 16px 8px 8px 8px;
    }

    .Caracteristicas {
        gap: 16px;
        padding: 12px 0;
    }

    .caracteristica img {
        height: 60px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .tab-content {
        padding: 8px 4px;
    }
}

@media (max-width: 575.98px) 
{
    .galeria-imagenes .main-img {
        max-height: 160px;
    }

    .Caracteristicas {
        flex-direction: column;
        align-items: stretch;
    }

    .caracteristica {
        max-width: 100%;
        min-width: 0;
        margin-bottom: 12px;
    }

    .tab-content {
        padding: 8px 2px 2px 2px;
    }
}

