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

/* Navigation - Setas base styles */
.gcp-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #2c3e50;
    width: 48px;
    height: 48px;
    border-radius: 70% !important;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 200ms ease, box-shadow 200ms ease, color 200ms ease; /* sem movimento */
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gcp-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: none !important; /* não sobe nem escala */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    color: #1a252f;
}

/* 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: 999 !important;
    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;
    }
}
