/* 1. Barra superior */
.main-header {
    background: #ffffff !important;
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

/* 2. Alineación Extrema */
.header-flex {
    display: flex !important;
    justify-content: space-between !important; /* Logo a la izq, Botón a la der */
    align-items: center;
    width: 100% !important; /* Ocupa todo el ancho */
    padding: 0 40px; /* Margen de seguridad para que no toquen el borde físico */
}

/* 3. Logo del árbol */ /*gran arbol*/
.img-arbol {
    height: 45px !important;
    width: auto !important;
    display: block;
}

/* 4. Botón de acceso */
.btn-acceso {
    font-size: 0.85rem;
    color: #0A3D62;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0A3D62;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-acceso:hover {
    background: #0A3D62;
    color: #ffffff;
    transform: translateY(-2px);
}