/* Estilos del contenido principal */
.content {
    margin-left: 85px;
    min-height: 100vh;
    padding: 4rem 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    width: min(80%, 300px);
    margin: 2rem auto;
    transition: transform 0.3s;
}

.welcome-title {
    color: #064b98;
    font-size: 2.5rem;
    margin-top: 1rem;
}

.welcome-text {
    color: #064b98;
    font-size: 1.4rem;
    margin: 1.5rem 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Carrusel moderno */
/* Estilos adicionales para el carrusel */
.carousel-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6,75,152,0.1);
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #064b98;
    font-weight: bold;
    overflow: hidden;
}

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

/* Aseguramos que los botones sean clickeables y visibles */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #064b98;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 20; /* Valor más alto para asegurar que esté encima */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-button:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* Mejorar los indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.carousel-indicator.active {
    background: #FF6B35;
    transform: scale(1.2);
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.carousel-indicator.active {
    background: #FF6B35;
    transform: scale(1.2);
}

/* Destinos destacados */
.featured-destinations {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
}

.featured-title {
    color: #064b98;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.featured-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FF6B35;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
    height: 250px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(6,75,152,0.2);
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(6,75,152,0.9));
    padding: 1.5rem;
    color: white;
}

.destination-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.destination-price {
    color: #FF6B35;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Botones interactivos */
.package-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #064b98 0%, #0861c2 100%);
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6,75,152,0.2);
}

/* Sección Nosotros */
.about-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image-container {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6,75,152,0.1);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.about-content h2 {
    color: #064b98;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #FF6B35;
}

.about-content p {
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.stat-item:hover {
    background: #064b98;
    color: white;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FF6B35;
}

.stat-item:hover .stat-number {
    color: white;
}

.stat-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content {
        margin-left: 0;
        padding: 6rem 1rem 6rem 1rem;
        margin-bottom: 60px; /* Espacio para el menú inferior */
    }
    
    .welcome-text {
        font-size: 1.1rem;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
    
    .package-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-destinations {
        padding: 0 1rem;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
}