/* css/main-new.css – Nova paleta, fontes, animações e layout completamente renovado */

/* ==== PALETA DE CORES ==== */
:root {
  --primary: #ff4500;      /* Laranja vibrante (energético) */
  --secondary: #00d1ff;    /* Ciano neon (moderno) */
  --accent: #ffd700;       /* Dourado (prémio, luxo) */
  --dark: #0a0a0a;         /* Fundo escuro */
  --light: #f8f9fa;        /* Texto claro */
  --card-bg: #111111;      /* Fundo das cards */
  --border: #333333;
  --success: #00ff9d;
}

/* ==== TIPOGRAFIA ==== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .hero-title, .section-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
}

.visually-hidden { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  overflow: hidden; 
  clip: rect(0 0 0 0); 
}

/* ==== LAYOUT GERAL ==== */
.max-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==== HERO SECTION ==== */
.hero-ranking {
  padding: 3rem 0 4rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-container{
  display: flex;
  align-items: center;
  text-align: left;
}

.hero-content{
  padding-right: 100px;
}

.hero-img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  width: 40%;
}

/* ==== CASINO GRID ==== */
.casino-grid {
  padding: 3rem 0;
  scroll-margin-top: 80px;
}

.casino-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
}

.casino-card {
  background: var(--card-bg);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

@media (min-width: 992px) {
  .casino-card {
    flex-direction: row;
    align-items: center;
  }
}

.casino-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 25px 50px rgba(255, 69, 0, 0.3);
}

/* Media */
.card-media {
  position: relative;
  background: linear-gradient(45deg, #1a1a1a, #222);
  padding: 1.5rem;
  text-align: center;
}

.rank-badge {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255,69,0,0.4);
}

.rank-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
}

.casino-logo {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 1rem;
  margin: 1rem 0;
}

.rating-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.rating-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stars-icon {
  height: 28px;
}

.votes-count {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Info */
.card-info {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
}

.offer-title {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  margin-top: 0px;
}

.offer-detail {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
  margin-top: 0px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.payment-methods img {
  transition: all 0.3s ease;
  height: 20px;
}

.payment-methods img:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Actions */
.card-actions {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  height: -webkit-fill-available;
}

.stats-group {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-item p:first-child {
  font-size: 0.9rem;
  opacity: 0.8;
}

.stat-item p{
  margin: 0px;
}

.highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--success);
}

/* CTA Button – Nova animação (pulse + glow) */
.cta-button {
  display: block;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 600;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(255,69,0,0.4);
}

.cta-button span {
  position: relative;
  z-index: 2;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,69,0,0.6);
}

/* ==== CRITÉRIOS ==== */
.eval-criteria {
  padding: 4rem 0;
  background: #0a0a0a;
  scroll-margin-top: 80px;
  padding-top: 0px;
}

.criteria-container {
  background: linear-gradient(to right, #111, #1a1a1a);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.section-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.criteria-container h3 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.criteria-container p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ==== FOOTER ==== */
.site-footer {
  background: #000;
  padding: 4rem 0 2rem;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
  align-items: center;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--secondary);
}

.footer-logo img {
  height: 80px;
}

.disclaimer {
  max-width: 1000px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-align: center;
}

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}

.partners-logos a img{
  width: 100%;
}

.logo-sm { max-width: 80px; }
.logo-lg { max-width: 160px; }

.copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ==== RESPONSIVIDADE ==== */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .casino-card { flex-direction: column; }
  .stats-group { flex-direction: column; gap: 1rem; }
  .cta-button { max-width: 100%; }

  .hero-content{
    padding: 0px;
  }

  .hero-img{
    display: none;
  }
}

/* PÁGINAS LEGAIS */
.page-header {
  padding: 1.5rem 0;
  background: rgba(10,10,10,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 50px;
}

.header-nav a {
  color: #fff;
  margin-left: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: var(--secondary);
}

.page-content {
  min-height: 80vh;
  padding: 3rem 0;
}

.policy-section {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.policy-container {
  padding: 3rem;
}

.policy-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
}

.update-date {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-block {
  margin-bottom: 2.5rem;
}

.policy-block h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.policy-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.policy-list {
  padding-left: 1.5rem;
  line-height: 1.8;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.warning {
  background: rgba(255,69,0,0.15);
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary);
  font-weight: 500;
}

/* Responsible Gaming */
.responsible-card {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.responsible-card.highlight {
  background: linear-gradient(135deg, rgba(255,69,0,0.2), rgba(0,209,255,0.2));
  border: 1px solid var(--primary);
}

.help-line {
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
}

.help-line .phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--success);
}