 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #f4f7fb;
        color: #1e293b;
        line-height: 1.6;
    }

    /* ================= NAVBAR PRINCIPAL ================= */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        transition: all 0.4s ease;
        padding: 15px 40px;
    }

    .navbar.scrolled {
        padding: 8px 40px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar-container {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

  

    /* ================= NAV LINKS (versión escritorio) ================= */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 25px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #1e293b;
        font-weight: 600;
        font-size: 15px;
        transition: color 0.3s ease;
    }

    .nav-links li a:hover {
        color: #0077b6;
    }

    /* ================= BOTÓN HAMBURGUESA ================= */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        cursor: pointer;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1002;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        background: #1e293b;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .hamburger:hover {
        background: #f1f5f9;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay para móvil */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ================= HEADER DESTINO ================= */
    .header-destino {
        margin-top: 80px;
        height: 400px;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        position: relative;
        border-radius: 30px;
        margin-left: 20px;
        margin-right: 20px;
        overflow: hidden;
    }

    .header-destino::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
    }

    .header-text {
        position: relative;
        z-index: 2;
    }

    .header-text h1 {
        font-size: 48px;
        margin-bottom: 10px;
        font-family: 'Playfair Display', serif;
    }

    .header-text p {
        font-size: 20px;
    }

    /* ================= CONTENIDO PRINCIPAL ================= */
    .contenido {
        max-width: 900px;
        margin: auto;
        padding: 60px 25px;
        background: white;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .contenido h2 {
        font-size: 28px;
        margin-top: 45px;
        margin-bottom: 15px;
        color: #1b4965;
        border-left: 5px solid #e67e22;
        padding-left: 10px;
    }

    .ventaja {
    color: #22aa5b;     /* Verde */
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #f0e2d0;
}

.desventaja {
    color: #dc2626;     /* Rojo */
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #f0e2d0;
}

.coche {
    color: #1b4965;     /* Azul */
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #f0e2d0;
}
    /* ================= BOTONES ================= */
    .boton-hotel {
        display: inline-block;
        background: linear-gradient(135deg, #0071c2, #00a6ff);
        color: white;
        padding: 12px 22px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        margin-top: 10px;
    }

    .boton-hotel:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    /* ================= TARJETAS ================= */
    .tarjeta {
        display: flex;
        gap: 25px;
        background: #eef0f7;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 30px;
        align-items: center;
        border: 1px solid #eadbc8;
    }

    .tarjeta-img img {
        width: 220px;
        height: 220px;
        object-fit: cover;
        border-radius: 15px;
    }

    .tarjeta-texto {
        flex: 1;
    }

    .tarjeta-texto h3 {
        margin-bottom: 10px;
        color: #1b4965;
    }

    .aviso {
        margin-top: 15px;
        font-size: 14px;
        color: #555;
        background: #fff8e6;
        padding: 10px;
        border-radius: 8px;
        border-left: 3px solid #ffb703;
    }

    /* ================= CONSEJO VIAJERO ================= */
    .consejo-viajero {
        background: #fff8e6;
        border-left: 5px solid #ffb703;
        padding: 20px;
        margin: 30px 0;
        border-radius: 16px;
        font-size: 16px;
    }

    /* ================= MAPA ================= */
    .mapa {
        max-width: 900px;
        margin: 50px auto;
        padding: 15px;
        background: rgb(207, 216, 222);
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(3, 3, 3, 0.15);
    }

    .mapa iframe {
        width: 100%;
        height: 450px;
        border-radius: 15px;
        border: none;
    }

    /* ================= GALERIA ================= */
    .galeria {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .galeria img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 12px;
        transition: 0.4s;
        cursor: pointer;
    }

    .galeria img:hover {
        transform: scale(1.05);
    }

    /* ================= SECCIONES ================= */
    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 600;
        margin: 2rem 0 1.5rem 0;
        border-left: 6px solid #e67e22;
        padding-left: 1rem;
        color: #1b4965;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    /* Tarjetas de alojamiento y sabores */
    .precio-card, .card.sabor {
        background: white;
        border-radius: 32px;
        overflow: hidden;
        border: 1px solid #eadbc8;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .precio-card:hover, .card.sabor:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .precio-card .card-header, .card.sabor .card-header {
        background: linear-gradient(135deg, #a8b89f 0%, #a8b89f 100%);
        padding: 1rem 1.5rem;
        border-bottom: 4px solid #e6b17e;
    }

    .precio-card .card-header h3, .card.sabor .card-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: white;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .precio-card .destino-badge, .card.sabor .destino-badge {
        background: rgba(255,255,255,0.25);
        color: white;
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
        border-radius: 40px;
    }

    .precio-card .card-content, .card.sabor .card-content {
        padding: 1.2rem 1.5rem;
        background: #eef0f7;
    }

    .precio-alojamiento, .card.sabor .precio {
        background: #bad5c8;
        display: inline-block;
        padding: 0.2rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #1b4965;
    }

    .alojamiento-descripcion, .card.sabor .historia {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #2c2418;
        margin-bottom: 0.8rem;
    }

    .card.sabor .moraleja {
        background: #fdfefd;
        padding: 0.6rem 1rem;
        border-radius: 16px;
        font-size: 0.85rem;
        font-weight: 500;
        margin-top: 1rem;
        color: #a1582c;
        border-left: 3px solid #e67e22;
    }

    .precio-card .card-footer, .card.sabor .card-footer {
        padding: 0.8rem 1.5rem 1.2rem;
        background: #a8b89f;
        border-top: 1px solid #f0e2d0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag-icon {
        background: #f6efe5;
        color: #1b4965;
        font-size: 0.75rem;
        padding: 4px 12px;
        border-radius: 20px;
    }

    .map-link {
        text-decoration: none;
        color: #e67e22;
        font-weight: 600;
        font-size: 0.8rem;
    }

    /* Sección de precios (3 columnas) */
    .pais-fila {
        background: white;
        border-radius: 32px;
        margin-bottom: 2.5rem;
        overflow: hidden;
        border: 1px solid #eadbc8;
    }

    .pais-header {
        background: linear-gradient(135deg, #a8b89f 0%, #a8b89f 100%);
        padding: 1rem 2rem;
        display: flex;
        align-items: baseline;
        gap: 1rem;
        flex-wrap: wrap;
        border-bottom: 4px solid #e6b17e;
    }

    .pais-nombre {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: white;
    }

    .tres-columnas {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        background: #eef0f7;
    }

    .columna {
        padding: 1.5rem;
        background: #e4e7ed;
    }

    .columna:first-child {
        border-right: 1px solid #f0e2d0;
    }

    .columna:last-child {
        border-left: 1px solid #f0e2d0;
    }

    .columna-titulo {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 2px dashed #e6cba0;
        padding-bottom: 0.5rem;
        color: #1b4965;
    }

    .sabor-plato {
        font-weight: 700;
        font-size: 1rem;
        color: #1b4965;
        margin: 0.8rem 0 0.2rem;
    }

    .sabor-precio {
        background: #f6efe5;
        display: inline-block;
        padding: 0.15rem 0.7rem;
        border-radius: 20px;
        font-size: 0.7rem;
        font-weight: 600;
        margin: 0.3rem 0;
    }

    .sabor-historia {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #3e3324;
    }

    .proxima-item {
        margin-bottom: 1rem;
        padding-left: 0.5rem;
        border-left: 2px solid #e6cba0;
    }

    .proxima-item strong {
        color: #1b4965;
        display: block;
        font-size: 0.85rem;
    }

/* ================= APLICACIONES (app-card) ================= */
.apps-intro {
    text-align: center;
    font-size: 1rem;
    color: #4a3a28;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    margin-bottom: 2rem;
}

.app-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eadbc8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.app-card .card-header {
    background: linear-gradient(135deg, #a8b89f 0%, #a8b89f 100%);
    padding: 1rem 1.5rem;
    border-bottom: 4px solid #e6b17e;
}

.app-card .card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.app-card .destino-badge {
    background: rgba(255,255,255,0.25);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
}

.app-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.8rem;
}

.app-descripcion {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #2c2418;
    margin-bottom: 1rem;
}

.app-ventajas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.5rem;
}

.ventaja-tag {
    background: #e8f4f8;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #1b4965;
    font-weight: 500;
}

.boton-app {
    display: inline-block;
    background: linear-gradient(135deg, #0071c2, #00a6ff);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.boton-app i {
    margin-right: 8px;
}

.boton-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.app-card .card-content {
    padding: 1.2rem 1.5rem;
    background: #eef0f7;
}

.app-card .card-footer {
    padding: 0.8rem 1.5rem 1.2rem;
    background: #e4e7ed;
    border-top: 1px solid #f0e2d0;
}

/* Responsive para aplicaciones */
@media (max-width: 768px) {
    .app-ventajas {
        gap: 6px;
    }
    .ventaja-tag {
        font-size: 0.65rem;
        padding: 0.15rem 0.6rem;
    }
    .boton-app {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

    /* ================= RESPONSIVE ================= */
    @media (max-width: 968px) {
        .navbar {
            padding: 12px 20px;
        }

        .logo img {
            height: 45px;
        }

        .hamburger {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 80px 20px 30px;
            margin: 0;
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            z-index: 1001;
            overflow-y: auto;
            gap: 15px;
        }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 10px 0;
            font-size: 16px;
        }

        .header-destino {
            margin-top: 70px;
            height: 300px;
            margin-left: 15px;
            margin-right: 15px;
        }

        .header-text h1 {
            font-size: 32px;
        }

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

        .contenido {
            padding: 30px 20px;
            margin: 0 15px;
        }

        .tarjeta {
            flex-direction: column;
            text-align: center;
        }

        .tarjeta-img img {
            width: 100%;
            height: auto;
        }

        .tres-columnas {
            grid-template-columns: 1fr;
        }

        .columna:first-child,
        .columna:last-child {
            border: none;
            border-top: 1px solid #f0e2d0;
        }

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

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

    @media (max-width: 600px) {
        .header-destino {
            height: 250px;
        }

        .header-text h1 {
            font-size: 24px;
        }

        .header-text p {
            font-size: 14px;
        }

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

    /* Animaciones */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .card, .tarjeta, .pais-fila {
        animation: fadeInUp 0.6s ease backwards;
    }