/**
 * GCP Slider - Navigation & Controls
 * Setas, dots, navegação e acessibilidade
 */

/* Navigation - Setas base styles */
.gcp-nav-btn {
    background: #1F2630 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    width: 48px;
    height: 48px;
    border-radius: 70% !important;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.gcp-nav-btn:hover {
    background: #2A3442 !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: none !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    color: #ffffff !important;
}

/* também garantir sem movimento no click/focus/active */
.gcp-nav-btn:active {
    transform: none !important;
}

.gcp-nav-btn:focus {
    outline: 2px solid #F3AA32;
    outline-offset: 2px;
}

/* ✅ SETAS CENTRALIZADAS COM O SLIDER */
.gcp-nav-btn {
    position: absolute !important;
    z-index: 100 !important; /* Diminuído para não sobrepor sidebars (z-index ~350+) */
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ✅ SETA ESQUERDA - POSIÇÃO PERFEITA */
.gcp-prev {
    left: -70px !important; /* Fora do slider à esquerda */
    top: 250px !important; /* Centralizada verticalmente */
}

/* ✅ SETA DIREITA - MESMA CENTRALIZAÇÃO */
.gcp-next { 
    right: -70px !important; /* Fora do slider à direita */
    top: 250px !important; /* Centralizada verticalmente - igual à esquerda */
}


/* ✅ DOTS - estilo base (posicionamento controlado por mobile.css) */
.gcp-dots {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.gcp-dot {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    min-height: 13px !important;
    max-width: 13px !important;
    max-height: 13px !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(179, 179, 179, 0.6) !important;
    cursor: pointer;
    transition: all 300ms ease !important;
    padding: 0 !important;
    margin: 0 2px !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    aspect-ratio: 1/1 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    vertical-align: middle !important;
}

.gcp-dot:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(0.5) !important;
}

.gcp-dot.is-active {
    background: #FFC00D !important;
    transform: scale(1.0) !important;
    box-shadow: none !important;
}

/* ✅ DESKTOP: aproximar os dots do slider (sem afetar mobile/tablet) */
@media (min-width: 1025px) {
    .gcp-slider .gcp-dots {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 220px !important; /* mais próximo do conteúdo do slide */
        z-index: 20 !important;
    }
}
