/* Variables globales */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #E67E22;
    --accent-color: #3498DB;
    --text-color: #2C3E50;
    --light-color: #ECF0F1;
    --dark-color: #2C3E50;
    --gradient-primary: linear-gradient(135deg, #2C3E50 0%, #3498DB 100%);
    --gradient-secondary: linear-gradient(135deg, #E67E22 0%, #F1C40F 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Fuentes */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
}

.navbar-logo {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--dark-color);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Hero Scroll Indicator Mejorado */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator span {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-scroll-indicator i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

/* Secciones */
.section {
    padding: var(--section-padding);
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: white;
    padding: var(--section-padding);
}

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

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stat-item p {
    font-family: var(--font-body);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/images/cta-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Footer Mejorado */
.footer {
    background-color: #1B1B18;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info, .footer-contact, .footer-location {
    padding: 20px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer p {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-info strong {
    color: var(--secondary-color);
    min-width: 80px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--secondary-color);
    background: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.developer-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-info, .footer-contact, .footer-location {
        padding: 20px 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .navbar .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    .nav-links {
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .navbar-logo {
        height: 55px;
    }
}

/* Botones Mejorados */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--gradient-secondary);
}

/* Aventuras Section Mejorada */
.aventuras-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.aventuras-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.aventuras-swiper {
    padding: 40px 0;
    margin: 0 -20px;
    position: relative;
    z-index: 1;
}

.aventura-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.aventura-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.aventura-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aventura-card:hover .aventura-image img {
    transform: scale(1.1);
}

.aventura-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
}

.aventura-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aventura-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.aventura-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.aventura-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.aventura-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

.aventura-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.aventura-meta i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Grid de Aventuras Mejorado */
.aventuras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.aventura-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    aspect-ratio: 4/3;
}

.aventura-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.aventura-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aventura-item:hover img {
    transform: scale(1.1);
}

.aventura-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aventura-item:hover .aventura-info {
    transform: translateY(0);
}

.aventura-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aventura-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation Mejorada para Aventuras */
.aventuras-swiper .swiper-button-next,
.aventuras-swiper .swiper-button-prev {
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.aventuras-swiper .swiper-button-next:after,
.aventuras-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.aventuras-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.aventuras-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Mejorado */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        bottom: 20px;
        padding: 10px 20px;
    }

    .hero-scroll-indicator span {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .aventuras-section {
        padding: 60px 0;
    }

    .aventura-content {
        padding: 20px;
    }

    .aventura-content h3 {
        font-size: 1.3rem;
    }

    .aventura-content p {
        font-size: 0.9rem;
    }

    .aventuras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aventuras-swiper .swiper-button-next,
    .aventuras-swiper .swiper-button-prev {
        display: none;
    }
}

/* Destinos Section */
.destinos-section {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

/* Swiper de Destinos */
.destinos-swiper {
    padding: 20px 0;
    margin: 0 -20px;
}

.destino-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.destino-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.destino-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destino-card:hover .destino-image img {
    transform: scale(1.1);
}

.destino-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.destino-tag {
    align-self: flex-start;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.destino-price {
    color: white;
    text-align: right;
}

.destino-price span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.destino-price strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.destino-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destino-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.destino-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.destino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.destino-features span {
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.destino-features i {
    color: var(--secondary-color);
}

.btn-destino {
    margin-top: auto;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-destino:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-secondary);
}

/* Grid de Destinos Populares */
.destinos-populares {
    margin-top: 80px;
}

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

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.destino-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

.destino-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.destino-item:hover img {
    transform: scale(1.1);
}

.destino-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.destino-item:hover .destino-info {
    transform: translateY(0);
}

.destino-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.destino-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.destino-price-tag {
    display: inline-block;
    background: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

/* Swiper Navigation para Destinos */
.destinos-swiper .swiper-button-next,
.destinos-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.destinos-swiper .swiper-button-next:hover,
.destinos-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.destinos-swiper .swiper-button-next:after,
.destinos-swiper .swiper-button-prev:after {
    font-size: 20px;
}

.destinos-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive para Destinos */
@media (max-width: 768px) {
    .destinos-swiper {
        padding: 20px 0;
    }

    .destino-content h3 {
        font-size: 20px;
    }

    .destino-content p {
        font-size: 14px;
    }

    .destinos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destinos-swiper .swiper-button-next,
    .destinos-swiper .swiper-button-prev {
        display: none;
    }

    .destino-features {
        gap: 10px;
    }

    .destino-features span {
        font-size: 12px;
    }
}

/* Historia Section */
.historia-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.historia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('/images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.historia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.historia-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.historia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.historia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.historia-card:hover::before {
    transform: scaleX(1);
}

.historia-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.historia-card:hover .historia-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
}

.historia-icon i {
    font-size: 32px;
    color: white;
}

.historia-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.historia-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.historia-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-family: var(--font-body);
}

/* Servicios Section */
.servicios-section {
    padding: var(--section-padding);
    background: white;
    position: relative;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.servicio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.servicio-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.servicio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.servicio-card:hover .servicio-image img {
    transform: scale(1.1);
}

.servicio-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.servicio-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.servicio-content {
    padding: 30px;
    position: relative;
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.servicio-card:hover .servicio-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.servicio-icon i {
    font-size: 24px;
    color: white;
}

.servicio-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.servicio-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.servicio-features {
    list-style: none;
    margin-bottom: 25px;
}

.servicio-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
    font-family: var(--font-body);
}

.servicio-features i {
    color: var(--primary-color);
    font-size: 14px;
}

.btn-servicio {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    border: 2px solid var(--primary-color);
}

.btn-servicio:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive para Historia y Servicios */
@media (max-width: 768px) {
    .historia-card {
        padding: 30px;
    }

    .historia-icon {
        width: 60px;
        height: 60px;
    }

    .historia-icon i {
        font-size: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

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

    .servicio-image {
        padding-top: 50%;
    }

    .servicio-content {
        padding: 20px;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Swiper Navigation Mejorado */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Parallax Elements */
.parallax {
    will-change: transform;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Testimonios Instagram Section */
.testimonios-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonio-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
}

.testimonio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonio-card:hover .testimonio-image img {
    transform: scale(1.05);
}

.testimonio-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-link {
    color: #E1306C;
    font-size: 20px;
    text-decoration: none;
}

.testimonio-overlay:hover {
    background: #E1306C;
}

.testimonio-overlay:hover .instagram-link {
    color: #fff;
}

.testimonio-content {
    padding: 20px;
}

.testimonio-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonio-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.testimonio-user h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.testimonio-user span {
    font-size: 12px;
    color: #666;
}

.testimonio-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.testimonio-stats {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.testimonio-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonio-stats i {
    color: #E1306C;
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    border-radius: 15px;
    color: white;
}

.instagram-cta h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.instagram-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #E1306C;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .testimonios-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonio-image {
        height: 200px;
    }
}

/* Estilos para tarjeta de video */
.aventura-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.aventura-link:hover {
    transform: translateY(-5px);
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FF0000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.video-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.video-stats i {
    color: #FF0000;
    font-size: 18px;
}

.aventura-tag i {
    margin-right: 5px;
    color: #FF0000;
}

.video-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.video-views {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.video-views i {
    color: #FF0000;
}

.aventura-card:hover .video-badge {
    transform: scale(1.1);
}

.aventura-card:hover .video-stats {
    background: #FF0000;
}

.aventura-card:hover .video-stats i {
    color: white;
}

/* Ajustes para el overlay del video */
.aventura-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
} 