@font-face {
    font-family: 'Geist';
    src: url('/static/fonts/Geist-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


/* Contenedor */
.collapsible-ad {
    transition: transform 0.45s ease-in-out;
}

/* Se esconde casi todo */
.collapsible-ad.collapsed {
    transform: translateX(110%);
}

/* Flecha lateral (independiente) */
.expand-arrow {
    position: fixed;
    bottom: 120px; /* ajusta según tu layout */
    right: 0;
    width: 45px;
    height: 80px;
    background: #F7C948;
    color: #1F2555;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 0 0 8px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.2);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.expand-arrow.provider{
    bottom: 1rem;
}

/* Mostrar flecha */
.expand-arrow.show {
    opacity: 1;
    pointer-events: auto;
}

/* Hover: asoma el panel */
.expand-arrow.show:hover ~ .collapsible-ad {
    transform: translateX(calc(100% - 80px));
}

/* Hover visual */
.expand-arrow:hover {
    background: #F9D976;
}