/* ===== HEADER Y NAVEGACIÓN ===== */
header {
    background-color: white;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-logo {
    width: 70px;
    height: 70px;
    background-image: url('https://i.ibb.co/b5FKHmQD/casa-de-dios-removebg-preview.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    padding: 5px;
    background-color: white;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navegación principal */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

/* Botones en la navegación */
.nav-buttons {
    display: flex;
    gap: 0.8rem;
    margin-left: 1rem;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-btn.camp-btn {
    background: linear-gradient(135deg, #8b322c 0%, #c44c44 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 50, 44, 0.3);
}

.nav-btn.camp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 50, 44, 0.4);
    background: linear-gradient(135deg, #c44c44 0%, #8b322c 100%);
}

.nav-btn.inscritos-btn {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a8f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.nav-btn.inscritos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 54, 93, 0.4);
    background: linear-gradient(135deg, #2d5a8f 0%, #1a365d 100%);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}