/* Hotspot para o botão "Inscreve-te já" nas imagens */
.carousel-item {
    position: relative;
    /* Garante que o absoluto é relativo ao slide */
}


.hero-hotspot {
    position: absolute;
    left: 49.5%;
    /* Posição horizontal */
    transform: translate(-50%, -50%);
    /* Centra no ponto */

    width: 11%;
    /* Largura mais curta */
    height: 12%;
    /* Altura ajustada */
    border-radius: 50px;
    /* Formato cápsula */

    display: block;
    z-index: 100;
    cursor: pointer;

    /* Debug removido - invisível mas clicável */
    /* border: 2px dashed red; */
    /* background-color: rgba(255, 0, 0, 0.2); */

    background-color: transparent;
    /* Garantir transparência */
    transition: all 0.3s ease;
}

.hero-hotspot:hover {
    background-color: rgba(255, 255, 255, 0.15);
    /* Mais subtil */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    /* Efeito de luz suave */
}

/* Posição para o Slide 2 (mais baixo) */
.hero-hotspot-low {
    top: 80%;
}

/* Posição específica para o Slide 4 (mais abaixo ainda) */
.hero-hotspot-slide4 {
    top: 82%;
}

/* Posição para os outros slides (mais alto) */
.hero-hotspot-high {
    top: 73%;
}

@media (max-width: 768px) {
    .hero-hotspot {
        width: 50%;
        height: 10%;
    }
}

/* Botão Estático "Academia da Maia" */
.hero-static-btn {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 1050;
    /* Acima de tudo */

    background-color: rgba(0, 0, 0, 0.2);
    /* Ligeiramente escuro para contraste ou transparente */
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    border: 2px solid white;
    /* Ghost button style */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    /* Efeito vidro */
    transition: all 0.3s ease;
}

.hero-static-btn:hover {
    background-color: white;
    color: #f39c12;
    /* Laranja da marca no hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}