/* =========================================
   VARIABLES DE MARCA (GRUPO RYO SAN CRISTÓBAL)
   ========================================= */
:root {
    --color-dark-olive: #2E311A;
    --color-gold: #AD8330;
    --color-light-gold: #C6AE73;
    --color-medium-olive: #6B5B2D;

    --font-heading: 'Quirk', serif;
    --font-body: 'Formale Grotesque', sans-serif;
}

/* =========================================
   CARGA DE FUENTES LOCALES
   ========================================= */

@font-face {
    font-family: 'Quirk';
    src: url('../fonts/QUIRK-Regular-BF69e54105d83d8.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Formale Grotesque';
    src: url('../fonts/FormaleGrotesqueTrial-N1.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Formale Grotesque';
    src: url('../fonts/FormaleGrotesqueTrial-B1.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* =========================================
   APLICACIÓN GLOBAL DE TIPOGRAFÍA Y RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FAFAF5;
}

body, input, button, textarea, p, a, span, li, label {
    font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6, .widget-price, .score-number {
    font-family: var(--font-heading) !important;
    color: var(--color-dark-olive);
    font-weight: normal;
}

/* =========================================
              DISEÑOS GLOBALES (INDEX)
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-front-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.navbar {
    position: relative;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    color: white;
    transition: all 0.3s ease-in-out;
    overflow: visible;
}

.navbar.navbar-solid {
    background-color: var(--color-dark-olive);
    padding: 15px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s ease-in-out;
}

.navbar-solid .logo-image {
    height: 65px;
}

.nav-right {
    display: flex;
    gap: 15px;
}

.btn-expert, .btn-login {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-expert {
    background-color: white;
    color: var(--color-dark-olive);
    font-weight: 500;
}

.btn-expert:hover {
    background-color: var(--color-light-gold);
    color: white;
}

.btn-login {
    border: 1px solid white;
}

.btn-login:hover {
    background-color: white;
    color: var(--color-dark-olive);
}

.hero-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    color: white;
}

.center-text {
    text-align: center;
}

#text-container {
    transition: opacity 0.3s ease-in-out;
}

.center-text h1 {
    font-size: 64px;
    color: white;
    margin-bottom: 15px;
}

.center-text p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}

.btn-discover {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border: 1px solid white;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-discover:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
}

.search-box {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-field {
    flex: 1;
    padding: 20px 25px;
    border-right: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-field.border-none {
    border-right: none;
}

.search-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 5px;
}

.search-field input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #666;
    width: 100%;
}

.btn-search {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-search:hover {
    background-color: var(--color-light-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    gap: 10px;
}

.vertical-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   SECCIONES INFERIORES (DESTINOS Y HOTELES)
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.destinations-section, .popular-hotels-section {
    padding: 80px 0 20px 0;
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
    color: #666;
}

.carousel-wrapper {
    position: relative;
}

.destinations-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.destinations-track::-webkit-scrollbar {
    display: none;
}

.destination-card {
    width: 200px;
    flex: 0 0 200px;
    cursor: pointer;
}

.card-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover .card-img img {
    transform: scale(1.08);
}

.destination-card h3 {
    font-family: var(--font-body) !important;
    font-size: 16px;
    color: var(--color-dark-olive);
    font-weight: 700;
    margin-bottom: 3px;
}

.destination-card p {
    font-size: 12px;
    color: #888;
}

.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: -20px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 26px;
    color: var(--color-dark-olive);
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s, color 0.3s;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: white;
}

.hotel-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #eaeaea;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--color-dark-olive);
    color: white;
    border-color: var(--color-dark-olive);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.hotel-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hotel-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.hotel-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.btn-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: color 0.3s;
}

.btn-favorite:hover {
    color: #e74c3c;
}

.hotel-info {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-name {
    font-family: var(--font-body) !important;
    font-size: 19px;
    color: var(--color-dark-olive);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-location {
    font-size: 15px;
    color: #888;
    margin-bottom: 12px;
}

.hotel-rating {
    color: var(--color-gold);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hotel-price {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: auto;
}

.hotel-price span {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 19px;
}

.view-all-container {
    text-align: center;
    margin-bottom: 60px;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--color-dark-olive);
    color: var(--color-dark-olive);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background-color: var(--color-dark-olive);
    color: white;
}

/* =========================================
   SECCIÓN: BANNER PROMOCIONAL
   ========================================= */
.promo-banner {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    margin-top: 50px;
    background-image: linear-gradient(rgba(46, 49, 26, 0.5), rgba(46, 49, 26, 0.5)), url('../img/index/IMG_0005.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

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

.promo-subtitle {
    display: block;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.promo-title {
    font-size: 56px;
    color: white;
    margin-bottom: 35px;
    line-height: 1.2;
}

.btn-promo {
    display: inline-block;
    background-color: white;
    color: var(--color-dark-olive);
    padding: 16px 45px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s, transform 0.3s;
}

.btn-promo:hover {
    background-color: var(--color-light-gold);
    color: white;
    transform: translateY(-3px);
}

/* =========================================
   SECCIÓN: ESTADÍSTICAS
   ========================================= */
.stats-section {
    padding: 80px 0;
    background-color: transparent;
    border-bottom: 1px solid #eaeaea;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* =========================================
   SECCIÓN: POR QUÉ ELEGIRNOS
   ========================================= */
.features-section {
    padding: 90px 0;
    background-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    text-align: center;
}

.feature-item {
    padding: 10px 20px;
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
}

.feature-item h3 {
    font-family: var(--font-body) !important;
    font-size: 17px;
    color: var(--color-dark-olive);
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

/* =========================================
   SECCIÓN: TESTIMONIOS
   ========================================= */
.testimonials-section {
    padding: 90px 0;
    background-color: #EFEFE8;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 40px;
    margin-bottom: 60px;
}

#testi-track {
    gap: 30px;
}

.left-outside {
    left: -15px;
}

.right-outside {
    right: -15px;
}

.testimonial-card {
    background: #fff;
    min-width: 360px;
    flex: 0 0 auto;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testi-hotel {
    color: var(--color-gold);
    font-size: 15px;
    font-weight: 700;
}

.testi-quote {
    font-family: var(--font-heading);
    font-size: 80px;
    color: #eaeaea;
    line-height: 0.5;
    margin-top: 20px;
}

.testi-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 100px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eaeaea;
    padding-top: 25px;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 3px;
}

.author-title {
    font-size: 13px;
    color: #888;
}

.testimonials-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 0 20px;
}

.testi-stats {
    display: flex;
    gap: 60px;
}

.t-stat h3 {
    font-size: 38px;
    margin-bottom: 5px;
}

.t-stat p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.t-stars {
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.testi-logos {
    display: flex;
    gap: 40px;
    align-items: center;
}

.logo-placeholder {
    font-size: 20px;
    font-weight: 700;
    color: #9ba3af;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   ICONOS PERSONALIZADOS GRUPO RYO
   ========================================= */
.ryo-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
    object-fit: contain;
}

/* =========================================
   FOOTER: NEWSLETTER
   ========================================= */
.newsletter-section {
    background-color: var(--color-dark-olive);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    margin-bottom: 20px;
    color: var(--color-gold);
}

.newsletter-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    width: 100%;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 0 35px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--color-light-gold);
}

/* =========================================
   FOOTER: ENLACES PRINCIPALES
   ========================================= */
.site-footer {
    background-color: #fff;
}

.footer-main {
    padding: 70px 20px 40px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-col h4 {
    font-family: var(--font-body) !important;
    font-size: 16px;
    color: var(--color-dark-olive);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.mt-4 {
    margin-top: 25px;
}

.contact-link {
    font-size: 18px;
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--color-light-gold);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--color-dark-olive);
    transition: background 0.3s, border-color 0.3s;
}

.app-btn:hover {
    background-color: #FAFAF5;
    border-color: var(--color-gold);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text span {
    font-size: 11px;
    color: #666;
}

.app-btn-text strong {
    font-size: 14px;
    font-weight: 700;
}

/* =========================================
   FOOTER: BARRA INFERIOR
   ========================================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    border-top: 1px solid #eaeaea;
    color: #666;
    font-size: 13px;
}

.footer-inline-links a {
    color: #666;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
}

.footer-inline-links a:hover {
    color: var(--color-gold);
}

.footer-settings {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lang-currency {
    display: flex;
    gap: 20px;
    font-weight: 700;
    color: var(--color-dark-olive);
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-dark-olive);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--color-gold);
}

/* =========================================
   PÁGINA DE DETALLE DE HOTEL
   ========================================= */
body.bg-white {
    background-color: #fff;
}

.breadcrumbs {
    background-color: #FAFAF5;
    padding: 15px 0;
    border-bottom: 1px solid #eaeaea;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs span {
    color: var(--color-dark-olive);
    font-size: 13px;
    font-weight: 700;
}

.hotel-header-section {
    padding: 40px 20px;
}

.hotel-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.title-left h1 {
    font-size: 38px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.hotel-rating-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: var(--color-gold);
    letter-spacing: 2px;
}

.reviews {
    color: #888;
    font-size: 13px;
}

.hotel-address {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.show-map {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    margin-left: 10px;
}

.title-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.price-box {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.from-text {
    font-size: 12px;
    color: #888;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
}

.btn-select-room {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-room:hover {
    background-color: var(--color-light-gold);
}

.hotel-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-main {
    grid-row: 1 / 3;
    position: relative;
}

.btn-fav-gallery {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.hotel-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.hotel-main-info {
    flex: 7;
}

.hotel-sidebar {
    flex: 3;
    position: sticky;
    top: 90px;
}

.highlights-section {
    margin-bottom: 40px;
}

.highlights-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.booking-widget {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.widget-price {
    font-size: 28px;
}

.widget-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-text {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.rating-text strong {
    font-size: 13px;
    color: var(--color-dark-olive);
}

.rating-text span {
    font-size: 11px;
    color: #888;
}

.rating-badge {
    background-color: var(--color-medium-olive);
    color: white;
    font-weight: 700;
    padding: 8px;
    border-radius: 4px;
    font-size: 14px;
}

.widget-field {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.widget-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 5px;
}

.widget-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 13px;
    color: #666;
}

.btn-check-availability {
    width: 100%;
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-check-availability:hover {
    background-color: var(--color-light-gold);
}

.section-divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 40px 0;
}

.description-section h3, .facilities-section h3, .rooms-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.description-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.facility-item {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fac-icon {
    font-size: 18px;
}

.demand-banner {
    background-color: #FAFAF5;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.demand-icon-wrapper {
    background: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demand-text strong {
    display: block;
    font-size: 16px;
    color: var(--color-dark-olive);
    margin-bottom: 5px;
}

.demand-text p {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.rooms-section {
    margin-top: 50px;
}

.room-card {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
}

.room-card h4 {
    font-family: var(--font-body) !important;
    font-size: 16px;
    color: var(--color-dark-olive);
    font-weight: 700;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.room-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
}

.r-head {
    background-color: var(--color-dark-olive);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 20px;
}

.r-cell {
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.r-type img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

.show-room-info {
    font-size: 13px;
    color: var(--color-gold);
    text-decoration: underline;
}

.r-amenities p {
    font-size: 13px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 10px;
}

.benefit-item {
    font-size: 13px;
    color: var(--color-medium-olive);
    margin-bottom: 8px;
}

.r-price {
    background-color: #FAFAF5;
    padding: 0;
}

.price-block {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.room-price-lg {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.btn-book-now {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.btn-book-now:hover {
    background-color: var(--color-light-gold);
}

.next-step-info {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 10px;
}

.booking-bullets {
    padding-left: 15px;
    font-size: 12px;
    color: #666;
}

.map-widget {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    background: #fff;
}

.map-image-container {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-show-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-perks p {
    font-size: 13px;
    color: var(--color-dark-olive);
    margin-bottom: 10px;
}

.sidebar-divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 20px 0;
}

.landmarks-list h4 {
    font-family: var(--font-body) !important;
    font-size: 14px;
    color: var(--color-dark-olive);
    margin-bottom: 15px;
}

.landmarks-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.landmarks-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.show-more-link {
    font-size: 13px;
    color: var(--color-gold);
    text-decoration: underline;
}

.newsletter-section.dark-navy {
    background-color: var(--color-dark-olive);
    padding: 40px 20px;
    color: white;
}

.newsletter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter-text-block {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-icon-inline {
    color: var(--color-gold);
    opacity: 0.9;
}

.newsletter-copy h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 5px;
}

.newsletter-copy p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form-horizontal {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form-horizontal input {
    flex-grow: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
}

.newsletter-form-horizontal button {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form-horizontal button:hover {
    background-color: var(--color-light-gold);
}

/* =========================================
   PÁGINA DE LOGIN / REGISTRO
   ========================================= */
.login-section {
    background-color: #FAFAF5;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    box-shadow: none;
    padding: 60px 50px;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.auth-tab {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    padding: 12px 30px;
}

.auth-tab.active {
    background-color: var(--color-gold);
    color: white;
    border-radius: 4px;
}

.auth-tab:not(.active):hover {
    color: var(--color-dark-olive);
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form label {
    display: block;
    font-size: 14px;
    color: var(--color-dark-olive);
    margin-bottom: 10px;
    font-weight: 700;
}

.auth-form input[type="text"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--color-gold);
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-dark-olive);
    font-weight: 700 !important;
    cursor: pointer;
    margin: 0 !important;
    white-space: nowrap;
}

.remember-me input {
    width: 16px;
    height: 16px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.lost-password {
    font-size: 14px;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
}

.lost-password:hover {
    color: var(--color-light-gold);
}

.btn-submit-auth {
    width: 100%;
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit-auth:hover {
    background-color: var(--color-light-gold);
}

/* =========================================
   PÁGINA DE DASHBOARD
   ========================================= */
.dashboard-section {
    background-color: #FAFAF5;
    padding: 80px 20px;
    min-height: 80vh;
}

.dashboard-card {
    background: #fff;
    width: 100%;
    border-radius: 4px;
    padding: 60px;
    display: flex;
    gap: 60px;
    margin: 0 auto;
}

.dashboard-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: var(--color-dark-olive);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dashboard-menu a svg {
    color: var(--color-gold);
    opacity: 0.8;
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
    background-color: #FAFAF5;
    color: var(--color-gold);
}

.dashboard-menu a.active svg {
    opacity: 1;
}

.menu-logout {
    margin-top: 30px !important;
}

.dashboard-content {
    flex-grow: 1;
}

.dashboard-alert {
    border: 1px solid var(--color-gold);
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--color-dark-olive);
    background-color: rgba(173, 131, 48, 0.04);
    line-height: 1.5;
}

.dashboard-greeting {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--color-dark-olive);
}

.dashboard-greeting strong {
    font-weight: 700;
}

.dashboard-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.dashboard-text a,
.inline-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.dashboard-text a:hover,
.inline-link:hover {
    color: var(--color-light-gold);
}

/* =========================================
   PÁGINA: LISTA DE EXPERIENCIAS / RESULTADOS
   ========================================= */
.experiences-header-section {
    background-color: #EFEFE8;
    padding: 80px 20px 40px 20px;
    text-align: center;
}

.experiences-main-title {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--color-dark-olive);
}

.exp-search-bar {
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(30px);
}

.exp-search-field {
    flex: 1;
    padding: 20px 25px;
    border-right: 1px solid #eaeaea;
    text-align: left;
}

.exp-search-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark-olive);
    margin-bottom: 5px;
}

.exp-search-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #666;
    background: transparent;
}

.exp-search-button-wrapper {
    padding: 15px;
}

.btn-exp-search {
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-exp-search:hover {
    background-color: var(--color-light-gold);
}

.experiences-layout-section {
    padding: 80px 0;
}

.experiences-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.experiences-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.exp-map {
    margin-bottom: 40px;
    box-shadow: none;
}

.filter-group {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper svg {
    position: absolute;
    left: 15px;
    color: #888;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input-wrapper input:focus {
    border-color: var(--color-gold);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.experiences-results {
    flex-grow: 1;
}

.results-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
}

.results-top-bar p {
    font-size: 14px;
    color: var(--color-dark-olive);
    font-weight: 700;
}

.sort-select {
    padding: 10px 40px 10px 15px;
    border: none;
    background-color: #FAFAF5;
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-dark-olive);
    font-weight: 700;
    cursor: pointer;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%24%2024%22%20fill%3D%22none%22%20stroke%3D%22%232E311A%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-item {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 50%;
    text-decoration: none;
    color: var(--color-dark-olive);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.page-item:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.page-item.active {
    background-color: var(--color-dark-olive);
    color: white;
    border-color: var(--color-dark-olive);
}


/* =========================================
   PÁGINA: E-commerce
   ========================================= */

.cart-section {
    padding: 80px 20px;
    background-color: #fff;
    min-height: 70vh;
}

.cart-page-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-dark-olive);
}

.cart-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.cart-items-col {
    flex: 7;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    gap: 20px;
    background-color: #FAFAF5;
    padding: 15px 20px;
    border-radius: 4px;
    font-weight: 700;
    color: var(--color-dark-olive);
    font-size: 15px;
    margin-bottom: 20px;
}

.c-col-total {
    text-align: right;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.c-col-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cart-item-title {
    font-size: 16px;
    font-family: var(--font-body) !important;
    color: var(--color-dark-olive);
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-unit-price {
    font-size: 15px;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.cart-item-description {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cart-item-description strong {
    color: #444;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.qty-selector {
    display: flex;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    width: max-content;
}

.qty-btn {
    background: transparent;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    color: #666;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    font-size: 14px;
    color: var(--color-dark-olive);
    font-weight: 700;
    outline: none;
}

.btn-remove-item {
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.btn-remove-item:hover {
    color: #e74c3c;
}

.cart-item-total-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-olive);
}


.cart-totals-col {
    flex: 3;
}

.cart-totals-widget {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 30px;
}

.totals-title {
    font-size: 22px;
    margin-bottom: 25px;
}

.coupons-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.coupons-toggle:hover {
    color: var(--color-gold);
}

.totals-divider {
    border: 0;
    height: 1px;
    background: #eaeaea;
    margin: 20px 0;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 15px;
    color: #444;
}

.totals-final-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-olive);
}

.btn-proceed-checkout {
    width: 100%;
    background-color: var(--color-gold);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-proceed-checkout:hover {
    background-color: var(--color-light-gold);
}

/* =========================================
   ALERTAS Y MENSAJES FLASH
   ========================================= */
.flash-messages {
    max-width: 520px;
    margin: 0 auto 20px auto;
}

.alert {
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.alert-danger {
    background-color: #fdecea;
    color: #e74c3c;
    border: 1px solid #fadbd8;
}

.alert-success {
    background-color: #eafaf1;
    color: #27ae60;
    border: 1px solid #d5f5e3;
}

.alert-warning {
    background-color: #fef9e7;
    color: #f39c12;
    border: 1px solid #fcf3cf;
}

.alert-info {
    background-color: #FAFAF5;
    color: var(--color-dark-olive);
    border: 1px solid var(--color-gold);
}

/* =========================================
   PÁGINA DE PAGO EXITOSO
   ========================================= */
.success-section {
    padding: 100px 20px;
    background-color: #FAFAF5;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.success-icon {
    color: var(--color-gold);
    margin-bottom: 25px;
}

.success-title {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--color-dark-olive);
}

.success-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVIDAD MÓVIL/TABLET)
   ========================================= */
@media (max-width: 1024px) {
    .center-text h1 {
        font-size: 48px;
    }

    .search-container {
        width: 95%;
    }

    .search-field {
        padding: 15px;
    }

    .btn-search {
        padding: 0 20px;
    }

    .promo-title {
        font-size: 38px;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .features-grid {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .testimonials-bottom {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .r-head {
        display: none;
    }

    .r-price {
        border-top: 1px solid #eaeaea;
    }

    .newsletter-row {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .newsletter-form-horizontal {
        max-width: 100%;
    }

    .exp-search-bar {
        flex-direction: column;
        transform: none;
        margin-top: 30px;
    }

    .exp-search-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eaeaea;
    }

    .exp-search-button-wrapper {
        width: 100%;
    }

    .btn-exp-search {
        width: 100%;
        justify-content: center;
    }

    .experiences-layout {
        flex-direction: column;
    }

    .experiences-sidebar {
        width: 100%;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .dashboard-sidebar {
        width: 100%;
    }

    .dashboard-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .dashboard-menu li {
        margin-bottom: 0;
        flex: 1 1 45%;
    }

    .menu-logout {
        margin-top: 0 !important;
    }

    .cart-layout {
        flex-direction: column;
    }

    .cart-items-col, .cart-totals-col {
        width: 100%;
        flex: none;
    }
}

/* --- 2. RESPONSIVIDAD PARA MÓVILES --- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
    }

    .logo-image {
        height: 70px;
    }

    .hero-content {
        padding: 0 20px;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .nav-arrow, .scroll-indicator, .slider-arrow {
        display: none;
    }

    .center-text h1 {
        font-size: 36px;
    }

    .center-text p {
        font-size: 16px;
    }

    .search-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 90%;
        margin: 0 auto 40px auto;
    }

    .search-box {
        flex-direction: column;
    }

    .search-field {
        border-right: none;
        border-bottom: 1px solid #eaeaea;
        padding: 15px 20px;
    }

    .search-field.border-none {
        border-bottom: none;
    }

    .btn-search {
        padding: 15px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .destination-card {
        min-width: 140px;
    }

    .card-img {
        height: 140px;
    }

    .hotels-grid {
        grid-template-columns: 1fr;
    }

    .hotel-img-wrapper {
        height: 300px;
    }

    .promo-banner {
        padding: 80px 20px;
        background-attachment: scroll;
    }

    .promo-title {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-item h3 {
        font-size: 42px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 25px 20px;
    }

    .testimonials-wrapper {
        padding: 0;
    }

    .testi-stats {
        flex-direction: column;
        gap: 30px;
    }

    .testi-logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        padding: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .footer-settings {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-text-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .newsletter-form-horizontal {
        flex-direction: column;
    }

    .newsletter-form-horizontal button {
        padding: 15px;
    }

    .login-section {
        padding: 60px 20px;
    }

    .login-card {
        padding: 40px 25px;
    }

    .experiences-main-title {
        font-size: 32px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dashboard-menu li {
        flex: 1 1 100%;
    }

    .cart-header-row {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 15px;
        position: relative;
    }

    .cart-item-img {
        width: 100%;
        height: 200px;
    }

    .c-col-total {
        text-align: left;
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        padding: 5px 10px;
        border-radius: 4px;
    }
}