@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Inter:wght@400;600&display=swap');

:root {
    --primary: #E91E63;    /* Rosa Mexicano */
    --secondary: #2979FF;  /* Azul Eléctrico */
    --accent: #FF9800;     /* Naranja Cempasúchil */
    --bg: #FFFFFF;
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-b); background: var(--bg); line-height: 1.6; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Nav */
nav { position: fixed; width: 100%; padding: 20px 0; z-index: 1000; transition: 0.4s; }
nav.sticky { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); padding: 10px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo-svg { width: 35px; height: 35px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: white; font-family: var(--font-h); }
nav.sticky .logo-text { color: #222; }
.logo-text span { color: var(--primary); }
.nav-links { display: flex; list-style: none; }
.nav-links a { color: white; text-decoration: none; margin: 0 15px; font-weight: 600; }
nav.sticky .nav-links a { color: #444; }
.btn-nav { background: var(--primary); color: #fff !important; padding: 10px 20px; border-radius: 30px; }

/* Hero */
.hero { 
    height: 80vh; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/monte-alban.webp?q=80&w=1600') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero h1 { font-family: var(--font-h); font-size: 4rem; margin-bottom: 1rem; }
.hero p{margin-bottom: 2rem;}
.btn-main { background: var(--primary); color: white; padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; }

/* Progress Bar */
.progress-container { height: 6px; background: #eee; border-radius: 10px; margin: 50px auto; position: relative; }
.progress-bar { height: 100%; background: var(--primary); width: 33%; border-radius: 10px; transition: 0.5s; }
.steps { display: flex; justify-content: space-between; position: absolute; width: 100%; top: -15px; }
.step span { width: 35px; height: 35px; background: #fff; border: 3px solid #eee; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 700; color: #ccc; }
.step.active span { border-color: var(--primary); color: var(--primary); }
.step p { font-size: 0.7rem; font-weight: 700; margin-top: 5px; color: #999; text-align: center; }

/* Cards */
.section-title { text-align: center; margin: 60px 0 40px; font-family: var(--font-h); font-size: 2.5rem; }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.tour-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.tour-card:hover { transform: translateY(-10px); }
.tour-img { position: relative; height: 220px; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; }
.price { position: absolute; top: 15px; right: 15px; background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 20px; font-weight: 700; }
.tour-info { padding: 25px; }
.tour-footer { display: flex; justify-content: space-between; margin-top: 20px; border-top: 1px solid #eee; padding-top: 15px; }
.btn-card { color: var(--secondary); font-weight: 700; text-decoration: none; }

/* Galería */
.galeria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.foto { height: 200px; border-radius: 10px; overflow: hidden; }
.foto img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; cursor: pointer; }
.foto img:hover { transform: scale(1.1); }

/* Checkout Cards */
.checkout-grid { display: flex; justify-content: center; padding: 40px 0; }
.checkout-card { background: #fff; border: 1px solid #eee; padding: 40px; border-radius: 24px; text-align: center; width: 350px; position: relative; }
.card-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.amount { font-size: 3rem; font-weight: 700; color: var(--secondary); }
.btn-pay { width: 100%; padding: 15px; border-radius: 12px; border: none; background: var(--secondary); color: #fff; font-weight: 700; cursor: pointer; margin-top: 20px; }

/* Form */
.booking-form { max-width: 600px; margin: auto; padding: 40px; background: #fff; border-radius: 20px; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 10px; }
.btn-submit { width: 100%; padding: 15px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* Floating Menu */
.floating-chat { position: fixed; bottom: 30px; right: 30px; z-index: 2000; }
.chat-btn { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 1.5rem; cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.chat-menu { display: none; flex-direction: column; gap: 10px; position: absolute; bottom: 75px; right: 0; }
.chat-option { padding: 12px 20px; border-radius: 30px; text-decoration: none; color: #fff; font-weight: 600; width: 160px; text-align: center; }
.wa { background: #25D366; }
.fb { background: #0084FF; }
.mail { background: #555; }

@media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .galeria-grid { grid-template-columns: repeat(2, 1fr); } }