.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 0;
    padding-top: 120px; /* Altura del header */
    margin-bottom: 3rem; /* Agregar espacio después del slider */
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

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

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
}

.hero .cta-button {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
}

.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social-links .fa-facebook:hover { color: #1877f2; }
.social-links .fa-instagram:hover { color: #e4405f; }
.social-links .fa-tiktok:hover { color: #000000; }
.social-links .fa-twitter:hover { color: #1da1f2; }
.social-links .fa-whatsapp:hover { color: #25D366; }

/* Dark mode adjustments */
[data-theme="dark"] .top-bar {
    background-color: #1a1a1a;
}

[data-theme="dark"] .contact-info a {
    color: rgba(255,255,255,0.9);
}

[data-theme="dark"] .social-links a {
    color: #ffffff;
    opacity: 0.7;
}

[data-theme="dark"] .social-links a:hover {
    opacity: 1;
}

[data-theme="dark"] .cta-button {
    background: var(--primary-color);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

[data-theme="dark"] .cta-button:hover {
    background: #0052a3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px;
    }

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

    .hero p {
        font-size: 1.1rem;
    }
    
    .slider-controls {
        bottom: 1rem;
    }
    
    .slider-controls button {
        width: 30px;
        height: 30px;
    }

    .top-bar {
        display: none;
    }

    .site-header {
        position: relative;
    }

    .main-nav {
        padding: 10px 0;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-right {
        gap: 1rem;
    }

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

    .logo-travel {
        font-size: 1.3rem;
    }

    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        font-size: 1rem;
    }
}
