/* css/estilos.css */

/* Variables de colores festivos */
:root {
    --primary: #E63946; /* Rojo mexicano vibrante */
    --secondary: #2A9D8F; /* Verde turquesa */
    --accent: #F4A261; /* Naranja festivo */
    --accent2: #E9C46A; /* Amarillo dorado */
    --dark: #264653; /* Azul oscuro */
    --light: #F1FAEE; /* Blanco crema */
    --text: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 4px 12px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.8rem;
}

.logo-adventure {
    color: var(--primary);
}

.logo-mexico {
    color: var(--dark);
}

.slogan {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-menu a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1518638150340-f706e86654de?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2067&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.btn-hero {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* Sección Tours */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.tour-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
}

#banner-xochimilco {
    background-image: url('https://images.unsplash.com/photo-1590691565924-90d0a14443c9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-piramides {
    background-image: url('https://images.unsplash.com/photo-1518638150340-f706e86654de?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-taxco {
    background-image: url('https://images.unsplash.com/photo-1588666309990-d68f08e3d4c6?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-puebla {
    background-image: url('https://images.unsplash.com/photo-1626761191817-5db43cb7d577?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-valquirico {
    background-image: url('https://images.unsplash.com/photo-1578662990445-6b1d4d9aede8?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-tolantongo {
    background-image: url('https://images.unsplash.com/photo-1529254479751-fbacb4c7a587?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-atlixco {
    background-image: url('https://images.unsplash.com/photo-1620137586140-1d2e5e6b6b9d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-personalizado {
    background-image: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.tour-info {
    padding: 25px;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.tour-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.tour-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.tour-features {
    list-style: none;
    margin-bottom: 20px;
}

.tour-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.tour-features i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}

.tour-note {
    background-color: #FFF9E6;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #B8860B;
}

.tour-note i {
    margin-right: 5px;
}

.btn-tour {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-tour:hover {
    background: linear-gradient(135deg, #d32f2f, #f57c00);
}

.btn-tour.personalizado {
    background: var(--dark);
}

.btn-tour.personalizado:hover {
    background: #1a3342;
}

/* Tours Temáticos */
.tematicos-section {
    margin-top: 60px;
}

.tematicos-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tematico-banner {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

#banner-tematico1 {
    background-image: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-tematico2 {
    background-image: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

#banner-tematico3 {
    background-image: url('https://images.unsplash.com/photo-1528164344705-47542687000d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.tematico-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.tematico-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Sección Nosotros */
.nosotros-section {
    background-color: var(--light);
}

.experiencia-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--gradient);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.experiencia-badge span {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.experiencia-badge p {
    font-size: 1.2rem;
    text-align: center;
}

.mision-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card-mv {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow);
}

.card-mv h3 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.card-mv h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.valores h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
    font-size: 2rem;
}

.valores-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.valor {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s;
}

.valor:hover {
    transform: translateY(-10px);
}

.valor i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.valor h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Sección Contacto */
.contacto-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contacto-info h3, .contacto-form h3 {
    margin-bottom: 25px;
    color: var(--dark);
    display: flex;
    align-items: center;
}

.contacto-info h3 i, .contacto-form h3 i {
    margin-right: 10px;
    color: var(--primary);
}

.contacto-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contacto-info p i {
    margin-right: 10px;
    color: var(--secondary);
    width: 20px;
}

.redes-sociales {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.fb { background-color: #3b5998; }
.ig { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.tw { background-color: #1da1f2; }
.yt { background-color: #ff0000; }
.tiktok { background-color: #000000; }

.social-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.contacto-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: