/**
Sección general de la home
 */
.hero-home {
    width: 100%;
    height: auto;
    min-height: 40vh;
    background: url("../../fondo-hero.jpg") center 75% no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.home-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/**
Sección para el filtro
 */
.filter-container {
    width: 100%;
    height: 224px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
    border: #999 1px solid;
    border-radius: 16px;
    padding: 15px;
    background-color: white;
    margin-top: 145px;
    position: relative;
}

.f-container-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.f-container-buttons a {
    text-align: center;
    border: 2px solid #000;
}

.f-container-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.f-container-selects {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.f-fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

/**
Sección contenedores de la home
 */
.company-card {
    border: none;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform:  translateY(-10px);
}

.card-button-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-button-footer .btn-custom-secondary {
    text-align: center;
}

/**
Sección de sin resultado de la home
 */
.no-results-box {
    background-color: #ffffff;
    border-radius: 32px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.promo-section {
    background: linear-gradient(145deg, #fdf8f3 0%, #ffffff 100%);
    border-radius: 16px;
}

.promo-section a {
    text-decoration: none;
}

.text-muted {
    color: #a0a0a0 !important;
}

.my-5.mx-auto {
    width: 30%;
    border-top: 2px solid #e2d1c3;
}

/**
Sección para los detalles de las compañías
 */
.sticky-top {
    top: calc(var(--navbar-height) + 20px) !important;
    z-index: 10;
}

.style-selector {
    background-color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.style-selector:hover {
    transform: translateX(10px);
    background-color: #fdf8f3;
}

.style-selector.active {
    background-color: #8b5a2b !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(139, 90, 43, 0.2);
}

.text-bronze {
    color: #8b5a2b;
}

.style-selector.active .text-bronze {
    color: white;
}

.style-icon-circle {
    width: 45px;
    height: 45px;
    background-color: #fdf8f3;
    color: #8b5a2b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: bold;
    font-size: 14px;
}

.style-selector.active .style-icon-circle {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.schedule-pill {
    min-width: 85px;
    transition: all 0.2s ease;
    border-color: #e2d1c3;
}

.schedule-pill:hover {
    border-color: #8b5a2b;
    transform: translateY(-3px);
}

#schedulesContainer {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 10px;
}
