/* Reset y Estilos Globales */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Arial, sans-serif; /* Fuente más moderna */
}

body { background-color: #f4f4f4; }

/* Navegación - Efecto Vidrio (Glassmorphism) */
nav {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: absolute;
    top: 20px;
    left: 5%;
    width: 90%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo { font-weight: bold; font-size: 1.5rem; color: #333; }
.logo span { color: #ff5722; }

nav a { 
    color: #333; 
    text-decoration: none; 
    margin-left: 25px; 
    font-weight: 600;
    transition: color 0.3s;
}
nav a:hover { color: #ff5722; }

/* Sección Hero (Inicio) */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                      url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.5rem; margin-bottom: 30px; }
.hero .btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;  
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.hero .btn:hover { background-color: #e64a19; } 

/* Sección Destinos */
#destinations {
    text-align: center;
    padding: 80px 20px;
}

.destination-cards {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 { padding: 15px 0 5px; color: #444; }

.btn {
    display: inline-block;
    margin: 15px;
    padding: 10px 25px;
    background-color: #ff5722;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover { background-color: #e64a19; }

/* Botón WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.hero-page {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
} 

.card-content p { padding: 5px 15px; color: #666; font-size: 0.95rem; }
.precio { color: #ff5722 !important; font-weight: bold; font-size: 1.1rem !important; }