/* Gradientes inspirados no Algarve */
.bg-gradient-to-r {
    background: linear-gradient(to right, #f97316, #facc15, #dc2626, #0891b2);
}

/* Animação de brilho solar para botões */
.animate-sun {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animate-sun:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(251, 146, 60, 0.5);
}

/* Cartões com elevação */
.card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Badges de jogo responsável */
.responsible-gaming-badge {
    transition: transform 0.3s ease;
}
.responsible-gaming-badge:hover {
    transform: scale(1.1);
}

/* Botão Voltar ao Topo */
#scroll-top {
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Acessibilidade: foco visível */
:focus {
    outline: 2px solid #facc15 !important;
    outline-offset: 2px;
}

/* Banner de Cookies */
#cookie-banner {
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), opacity 0.4s;
    opacity: 1;
    transform: translateY(0);
}
#cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
}
@media (max-width: 768px) {
    #cookie-banner .container {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
} 

/* Fade-in для секций */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,2,.6,1), transform 0.8s cubic-bezier(.4,2,.6,1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация солнца */
.sun-rotate {
    animation: sun-rotate 8s linear infinite;
    transform-origin: 60px 60px;
}
@keyframes sun-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Волны анимация */
.wave-move {
    animation: wave-move 6s ease-in-out infinite alternate;
}
@keyframes wave-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Пальма покачивание */
.palm-swing {
    animation: palm-swing 4s ease-in-out infinite alternate;
    transform-origin: 30px 70px;
}
@keyframes palm-swing {
    0% { transform: rotate(-2deg); }
    100% { transform: rotate(4deg); }
}

/* Кнопки: пульсация при hover */
.btn-primary:hover, .btn-success:hover, .btn-danger:hover {
    animation: pulse 0.5s;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 146, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 146, 60, 0); }
}

/* Карточки: масштаб при клике */
.card:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Ссылки: плавный цвет */
a, .nav-link {
    transition: color 0.2s;
}
a:hover, .nav-link:hover {
    color: #facc15 !important;
} 
.responsible-gaming-badges{
    align-items: center;
    gap: 20px;
}
.accordion-body{
    color: #fff;
}

#home{
    background-image: url(../images/home.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

/* Responsive styles for Tabela Comparativa */
@media (max-width: 991.98px) {
  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
  }
  .table-responsive .table {
    min-width: 700px;
    width: 100%;
  }
  .table-responsive td, .table-responsive th {
    white-space: nowrap;
  }
}
@media (max-width: 575.98px) {
  .table-responsive .table {
    min-width: 500px;
    font-size: 0.92rem;
  }
  .table-responsive td, .table-responsive th {
    padding: 0.5rem 0.4rem;
  }
  .table-responsive img {
    width: 24px !important;
    height: auto;
  }
}