/* Topbar styles */
.topbar {
    background-color: #1a202c;
    color: #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
}

/* Ajustar la posición del navbar para acomodar la topbar */
.navbar {
    position: fixed;
    top: 40px; /* Altura de la topbar */
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    padding: 1rem 0;
    background-color: #1a202c;
}

/* Ajustar el margen superior de la page-header */
.page-header {
    height: 300px;
    background-color: #1a202c;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 100px; /* Ajustado para acomodar topbar + navbar */
}

/* Ajustar el margen superior del hero-slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    margin-top: 150px; /* Altura de la topbar */
}

@media (max-width: 768px) {
    .hero-slider {
        height: 200px;
    }
}

/* Resto de los estilos existentes... */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1rem;
    text-align: center;
}

.sponsor-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
}

.sponsor-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    transition: transform 0.3s ease;
}

.sponsor-item:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-primary {
    background-color: #2b5b5f; /* Naranja */
    color: white;
}

.btn-primary:hover {
    background-color: #E65A00; /* Naranja más oscuro para hover */
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #2b5b5f; /* Borde naranja */
    color: #2b5b5f; /* Texto naranja */
}

.btn-outline:hover {
    background-color: #FFF0E6; /* Fondo naranja claro al hover */
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-icon {
    padding: 0.5rem;
    border-radius: 9999px;
}

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

.navbar-menu {
    display: none;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
}

.navbar-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-menu-mobile.open {
    display: flex;
}

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #2b5b5f; /* Naranja */
}

.navbar-link.active {
    color: #2b5b5f !important;
}

.navbar.scrolled .navbar-link {
    color: #aeaeae;
}

.navbar:not(.scrolled) .navbar-link {
    color: white;
}

.mobile-menu-button {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.navbar.scrolled {
    background-color: #1a202c;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.principal-sponsor {
    display: flex;
    justify-content: center;
    margin: 20px;
    gap: 30px;
}

.sponsor-package {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.sponsor-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.sponsor-feature i {
    color: #2b5b5f;
    margin-right: 0.5rem;
}

/* Estilos específicos para la sección de hospedaje */
.hospedaje-section {
    height: 720px;
    position: relative;
}

.hospedaje-container {
    height: 100%;
    position: relative;
}

.hospedaje-box {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.hotel-badge {
    position: absolute;
    left: 4rem;
    bottom: -3rem;
    background-color: #2b5b5f;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

/* Estilos para el área de cards */
.area-card {
    text-align: center;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.area-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: #f3f4f6;
    margin-bottom: 1rem;
}

/* Estilos para formularios */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.form-input:focus {
    outline: none;
    border-color: #2b5b5f; /* Naranja */
    box-shadow: 0 0 0 1px #2b5b5f; /* Naranja */
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}