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

:root {
    --primary-color: #1e40af;        /* Azul corporativo profesional */
    --primary-light: #3b82f6;        /* Azul más claro */
    --secondary-color: #dc2626;       /* Rojo vibrante para acentos */
    --accent-color: #f59e0b;          /* Amarillo/naranja para destacar */
    --text-dark: #1f2937;            /* Gris oscuro para texto */
    --text-light: #6b7280;           /* Gris medio para texto secundario */
    --white: #FFFFFF;
    --light-gray: #f8fafc;           /* Gris muy claro para fondos */
    --dark-gray: #374151;            /* Gris oscuro */
    --border-color: #e5e7eb;         /* Gris claro para bordes */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

/* Fuentes y Base */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Utilidades */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-call {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header Moderno con Glassmorphism */
header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05) rotate(1deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Menú Moderno */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(64, 64, 64, 0.15);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 64, 64, 0.2);
}

.nav-link.active {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Hamburger Moderno */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.7) 100%), 
                url('../images/unidades/06.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
}

.feature span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Nosotros Section */
.nosotros {
    padding: 100px 0;
    background: var(--light-gray);
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nosotros-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.nosotros-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.servicio-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.servicio-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servicio-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.nosotros-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.nosotros-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Horarios Section */
.horarios {
    padding: 100px 0;
    background: var(--white);
}

.horarios-container {
    display: grid;
    gap: 40px;
}

.horario-tabla h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tabla-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.horarios-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.horarios-table th {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.horarios-table td {
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.horarios-table tbody tr:hover {
    background-color: var(--light-gray);
}

/* Excursiones Section */
.excursiones {
    padding: 100px 0;
    background: var(--light-gray);
}

.excursiones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

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

.excursion-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.card-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.card-tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 30px;
}

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

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Aeromundo Section */
.aeromundo {
    padding: 100px 0;
    background: var(--white);
}

.aeromundo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.nuevo-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.aeromundo-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.aeromundo-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.aeromundo-features {
    list-style: none;
    margin-bottom: 40px;
}

.aeromundo-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.aeromundo-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.aeromundo-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.aeromundo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Unidades Section */
.unidades {
    padding: 100px 0;
    background: var(--light-gray);
}

.unidades-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

.unidad-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.unidad-image {
    height: 250px;
    overflow: hidden;
}

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

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

.unidad-info {
    padding: 25px;
}

.unidad-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.unidad-info p {
    color: var(--text-light);
    line-height: 1.6;
}

.unidades-features {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contacto Section */
.contacto {
    padding: 100px 0;
    background: var(--white);
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contacto-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('../images/unidades/06.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.social-links a[href*="facebook"]:hover {
    background: #1877f2;
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links a[href*="whatsapp"]:hover {
    background: #25d366;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.design-credit {
    margin-top: 10px;
    font-size: 0.9rem;
}

.design-credit a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.design-credit a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: calc(100% - 40px);
        margin: 0 20px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 20px 8px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        gap: 5px;
        transform: translateY(-20px);
        opacity: 0;
    }

    .nav-menu.active {
        left: 0;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 15px 20px;
        margin: 0;
        border-radius: 15px;
        font-size: 1rem;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 80px;
    }

    .navbar {
        padding: 10px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .nosotros-content,
    .aeromundo-content,
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .unidades-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .tabla-wrapper {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .horarios-table th,
    .horarios-table td {
        padding: 8px 5px;
        font-size: 0.8rem;
    }
}

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

/* Loading states y microinteracciones */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* Estilos para las nuevas secciones de ubicaciones */
.ubicaciones-info {
    margin-top: 40px;
}

.ubicaciones-info h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

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

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

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

.ubicacion-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.ubicacion-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ubicacion-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.ubicacion-card p strong {
    color: var(--text-dark);
}

/* Estados hover mejorados */
.excursion-card:hover .card-content .btn {
    background: var(--secondary-color);
}

.servicio-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* =================================
   SLIDER ESPECTACULAR DE DESTINOS
   ================================= */

.destinos-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.destinos-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.slider-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.slider-header {
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.slider-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 800%; /* 8 slides = 800% */
}

.slide {
    min-width: 12.5%; /* 100% / 8 slides = 12.5% cada uno */
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.slide-image {
    flex: 1;
    height: 600px;
    position: relative;
    overflow: hidden;
}

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

.slide.active .slide-image img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.slide-content {
    flex: 1;
    padding: 60px;
    color: white;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    backdrop-filter: blur(20px);
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.slide-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.slide-features span {
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.slide-features span:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.slide-features i {
    margin-right: 8px;
    color: #ffd700;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.slide-btn i {
    font-size: 1.3rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-btn-prev,
.slider-btn-next {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    pointer-events: all;
    font-size: 1.2rem;
}

.slider-btn-prev:hover,
.slider-btn-next:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
}

.indicator.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(255,255,255,0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        min-height: auto;
    }
    
    .slide-image {
        height: 300px;
    }
    
    .slide-content {
        padding: 40px 30px;
    }
    
    .slider-header h2 {
        font-size: 2.5rem;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===================================
   GALERÍA EN CINTA DE IMÁGENES
   =================================== */

.galeria-cinta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    position: relative;
}

.galeria-cinta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.galeria-cinta .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 60px;
}

.galeria-cinta .section-header h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.galeria-cinta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
}

.cinta-contenedor {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.cinta-track {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cinta-fila {
    display: flex;
    gap: 20px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Animaciones para cada fila */
.cinta-derecha {
    animation: desplazarDerecha 40s linear infinite;
}

.cinta-izquierda {
    animation: desplazarIzquierda 35s linear infinite;
}

.cinta-derecha-lenta {
    animation: desplazarDerecha 50s linear infinite;
}

@keyframes desplazarDerecha {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes desplazarIzquierda {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.imagen-cinta {
    position: relative;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.imagen-cinta:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.imagen-cinta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    /* Efecto azul por defecto */
    filter: sepia(100%) hue-rotate(200deg) saturate(150%) brightness(0.8);
}

.imagen-cinta:hover img {
    /* Restaurar colores originales al hacer hover */
    filter: none;
    transform: scale(1.1);
}

.imagen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.6), rgba(155, 89, 182, 0.6));
    opacity: 1;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-cinta:hover .imagen-overlay {
    opacity: 0;
}

.imagen-overlay::before {
    content: '🌍';
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.imagen-cinta:hover .imagen-overlay::before {
    opacity: 0;
    transform: scale(1.5);
}

/* Pausa la animación al hacer hover en toda la galería */
.galeria-cinta:hover .cinta-fila {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .galeria-cinta {
        padding: 60px 0;
    }
    
    .galeria-cinta .section-header h2 {
        font-size: 2rem;
    }
    
    .imagen-cinta {
        width: 250px;
        height: 160px;
    }
    
    .cinta-fila {
        gap: 15px;
    }
    
    .cinta-track {
        gap: 20px;
    }
}
/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */

.instagram-feed {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.instagram-feed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.instagram-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.instagram-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.instagram-icon i {
    font-size: 3.5rem;
    color: white;
}

.instagram-title {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.instagram-handle {
    font-size: 1.6rem;
    color: #E1306C;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.instagram-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
    border: none;
    cursor: pointer;
}

.instagram-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.6);
}

.instagram-btn i {
    font-size: 1.5rem;
}

/* Responsive Instagram Feed */
@media (max-width: 768px) {
    .instagram-feed {
        padding: 60px 0;
    }
    
    .instagram-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .instagram-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
    
    .instagram-icon i {
        font-size: 2.8rem;
    }
    
    .instagram-title {
        font-size: 2rem;
    }
    
    .instagram-handle {
        font-size: 1.3rem;
    }
    
    .instagram-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .instagram-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}
