@import url('variables.css');
@import url('header.css');
@import url('footer.css');
@import url('booker.css');
/* Hero Banner */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
}


/* Estilos para la sección de socios */
.partners-section {
    background-color: var(--light);
    padding: 20px 0;
    margin: 20px 0;
}

.partners-title {
    text-align: center;
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 15px;
    font-weight: 500;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.partner-item {
    display: flex;
    align-items: center;
    height: 16px;
}

.partner-item img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.more-partners {
    font-size: 14px;
    color: var(--gray-500);
    font-style: italic;
}

/* Estilos para móvil */
@media (max-width: 768px) {
    .partners-list {
        gap: 15px;
    }

    .partner-item {
        flex: 0 0 calc(33.333% - 10px);
        justify-content: center;
    }

    .more-partners {
        flex: 0 0 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Estilos base */
.recent-carousel {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.header h2 {
    font-size: 18px;
    margin: 0;
}

.header a {
    color: #0078d7;
    text-decoration: none;
    font-size: 14px;
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    display: flex;
}

.space-hotel {
    width: 5px;
    background: var(--light);

}

.destino {
    padding: 15px;
    width: 192px;
    border-right: 1px solid #f0f0f0;
    transition: background 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;

    .icon {
        margin-top: 6px;
    }

    .gray {
        background: var(--light);
    }
}

.destino:hover {
    background: #f9f9f9;
}

.destino h3 {
    font-size: 15px;
    margin: 0 0 6px 0;
    color: #333;
}

.destino p {
    font-size: 13px;
    color: #666;
    margin: 0 0 4px 0;
}

.hotel {
    flex-grow: 1;
    display: flex;
    max-width: 145px;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hotel:hover {
    background: #f9f9f9;
}

.hotel-image {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.hotel-info {
    padding: 12px;
    flex-grow: 1;
}

.hotel-info h4 {
    font-size: 14px;
    margin: 0 0 6px 0;
    color: #222;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
}

.stars {
    color: #ffb700;
    font-size: 14px;
}

.score {
    font-weight: bold;
    font-size: 13px;
}

.reviews {
    color: #666;
    font-size: 12px;
}

.type {
    display: block;
    color: #666;
    font-size: 12px;
}

/* Deals Section */
.deals-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 24px;
    color: var(--gray-700);
    margin-bottom: 25px;
    font-weight: 600;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

/* Tarjeta de oferta */
.deal-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deal-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-content {
    padding: 18px;
}

/* Encabezado */
.deal-header {
    margin-bottom: 12px;
}

.deal-title {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.rating-score {
    font-weight: 700;
    color: var(--gray-700);
}

.rating-label {
    color: var(--gray-500);
    font-size: 14px;
}

.rating-reviews {
    color: var(--gray-500);
    font-size: 13px;
}

.deal-location {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 3px;
}

/* Ahorro */
.deal-savings {
    margin: 12px 0;
}

.savings-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 500;
}

/* Detalles */
.deal-details {
    margin: 15px 0;
}

.provider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.provider-name {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.provider-feature {
    font-size: 12px;
    color: var(--success);
}

.price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-700);
}

.deal-price small {
    font-size: 14px;
    font-weight: normal;
    color: var(--gray-500);
}

.deal-dates {
    font-size: 13px;
    color: var(--gray-500);
}

/* Botón */
.deal-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--text-on-primary);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.deal-btn:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }

    .deal-title {
        font-size: 16px;
    }

    .deal-img {
        height: 180px;
    }
}

/* Features Section */
.features-section {
    background-color: var(--light);
    padding: 50px 0;
    margin-top: 50px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gray-700);
}

/* Destinos populares */
.popular-searches {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 24px;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Pestañas de categoría */
.category-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 15px;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--primary);
    font-weight: 500;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Resultados de búsqueda */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.search-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-item:hover {
    background: var(--light);
}

.search-item h3 {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 10px;
    font-weight: 600;
}

.search-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-500);
}

.hotel-count::before {
    content: '•';
    margin-right: 5px;
    color: var(--gray-200);
}

.price-avg {
    font-weight: 500;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .search-results {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .search-results {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        justify-content: center;
    }
}

/* Estilos generales */
.why-vas-section {
    background-color: var(--light);
    padding: 60px 0;
}


h2 {
    text-align: center;
    font-size: 28px;
    color: var(--gray-700);
    margin-bottom: 40px;
    font-weight: 600;
}

/* Sección de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* Sección de preguntas frecuentes */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.faq-question span {
    margin-right: 15px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
}



.ellipsis {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.w-100 {
    width: 1000%;
}

