/* ============================================
   VARIÁVEIS DE COR - TEMA CASSINO ELEGANTE
   ============================================ */
:root {
  --bg: #120c0a;
  --bg-alt: rgba(10, 8, 7, 0.6);
  --gold: #d4a44a;
  --red: #ba1b1b;
  --text: #f5f5f5;
  --text-muted: #c4c4c4;
  --bordeaux: #5d1a1a;
  --shadow: rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Gradiente de fundo cassino */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0605 0%, var(--bordeaux) 40%, var(--bg) 100%);
  z-index: -2;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
main {
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ============================================
   SEÇÃO HERO
   ============================================ */
.hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background-image: url('/img/home.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Overlay escuro sobre a imagem de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  will-change: opacity;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 3px 3px 8px var(--shadow);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 350px;
    padding: 3rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 300px;
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px var(--shadow);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #8b0000);
  color: var(--text);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d42020, var(--red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 27, 27, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8862c);
  color: #0a0605;
  font-weight: 700;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #e6b85c, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 164, 74, 0.5);
}

/* ============================================
   VITRINE DE PRODUTOS
   ============================================ */
.vitrine {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px var(--shadow);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.card {
  background: var(--bg-alt);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(212, 164, 74, 0.3);
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212, 164, 74, 0.4);
  border-color: var(--gold);
}

@media (hover: none) {
  .card:hover {
    transform: none;
  }
  
  .card:active {
    transform: scale(0.98);
  }
}

.card-image {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bordeaux), #0a0605);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.card-promo {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  padding: 0.8rem;
  background: rgba(212, 164, 74, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.aviso {
  text-align: center;
  padding: 1.5rem;
  background: rgba(186, 27, 27, 0.2);
  border: 2px solid var(--red);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  margin-top: 2rem;
}

/* ============================================
   SEÇÕES DE CONTEÚDO
   ============================================ */
.content-section {
  background: var(--bg-alt);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid rgba(212, 164, 74, 0.3);
}

.content-section h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px var(--shadow);
}

.content-section h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.content-section strong {
  color: var(--text);
}

.content-section em {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   SEÇÕES DETALHADAS DAS PLATAFORMAS
   ============================================ */
.detalhes-plataformas {
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.plataforma-detalhe {
  background: var(--bg-alt);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow);
  border: 1px solid rgba(212, 164, 74, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.plataforma-detalhe:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.plataforma-titulo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px var(--shadow);
  border-bottom: 2px solid rgba(212, 164, 74, 0.3);
  padding-bottom: 1rem;
}

.plataforma-lista {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plataforma-lista li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 0;
  position: relative;
  line-height: 1.7;
}

.plataforma-lista li strong {
  color: var(--text);
  font-weight: 600;
}

.plataforma-conclusao {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.2rem;
  background: rgba(212, 164, 74, 0.15);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  line-height: 1.7;
}

.plataforma-conclusao strong {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .plataforma-detalhe {
    padding: 1.5rem;
  }
  
  .plataforma-titulo {
    font-size: 1.6rem;
  }
  
  .plataforma-lista li {
    padding-left: 0;
    font-size: 0.95rem;
  }
  
  .plataforma-conclusao {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: rgba(10, 6, 5, 0.95);
  border-top: 2px solid var(--gold);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--gold);
}

/* Aviso de Jogo Responsável */
.responsible-gaming-warning {
  background: linear-gradient(135deg, rgba(186, 27, 27, 0.3), rgba(93, 26, 26, 0.3));
  border: 3px solid var(--red);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(186, 27, 27, 0.4);
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% {
    border-color: var(--red);
    box-shadow: 0 8px 30px rgba(186, 27, 27, 0.4);
  }
  50% {
    border-color: #d42020;
    box-shadow: 0 8px 40px rgba(186, 27, 27, 0.6);
  }
}

.warning-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 10px rgba(186, 27, 27, 0.8);
  margin-bottom: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.responsible-gaming-warning p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.responsible-gaming-warning strong {
  color: var(--gold);
  font-weight: 700;
}

/* Logos e Aviso 18+ */
.footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(212, 164, 74, 0.2);
  flex-wrap: wrap;
}

.logos-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.footer-logo:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

@media (hover: none) {
  .footer-logo:hover {
    transform: none;
  }
  
  .footer-logo:active {
    opacity: 0.7;
  }
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.warning-18 {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(186, 27, 27, 0.2);
  border: 2px solid var(--red);
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

.age-warning {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: 0 0 10px rgba(186, 27, 27, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  border: 2px solid var(--red);
  line-height: 1;
}

.warning-18 p {
  color: var(--text);
  font-weight: 600;
  margin: 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 164, 74, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 1.5rem;
  }

  .vitrine {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-image {
    height: 180px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-description,
  .card-promo {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }

  .aviso {
    padding: 1.2rem;
    font-size: 0.9rem;
  }

  .content-section {
    padding: 2rem 1.5rem;
  }

  .content-section h1 {
    font-size: 2rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .content-section h3 {
    font-size: 1.2rem;
  }

  .detalhes-plataformas {
    padding: 3rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-section h3 {
    font-size: 1.1rem;
  }

  .footer-logos {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .logos-group {
    gap: 1rem;
    justify-content: center;
    width: 100%;
  }

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

  .warning-18 {
    flex-direction: column;
    text-align: center;
    width: 100%;
    gap: 0.8rem;
  }

  .age-warning {
    font-size: 2rem;
  }

  .responsible-gaming-warning {
    padding: 1.5rem;
  }

  .warning-title {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
  }

  .responsible-gaming-warning p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  footer {
    padding: 2rem 0 1rem;
  }

  .footer-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .cards-grid {
    gap: 1.2rem;
  }

  .card-image {
    height: 150px;
  }

  .card-image img {
    padding: 1rem;
  }

  .card-content {
    padding: 1.2rem;
  }

  .card-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .card-description,
  .card-promo {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .aviso {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .content-section {
    padding: 1.5rem 1rem;
  }

  .content-section h1 {
    font-size: 1.7rem;
  }

  .content-section h2 {
    font-size: 1.3rem;
  }

  .content-section ul,
  .content-section ol {
    margin-left: 1.2rem;
  }

  .plataforma-detalhe {
    padding: 1.2rem;
  }

  .plataforma-titulo {
    font-size: 1.4rem;
  }

  .plataforma-lista li {
    font-size: 0.85rem;
  }

  .plataforma-conclusao {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  .footer-content {
    gap: 1.2rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 0.85rem;
  }

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

  .warning-18 {
    padding: 0.8rem 1rem;
  }

  .age-warning {
    font-size: 1.8rem;
    padding: 0.2rem 0.6rem;
  }

  .warning-18 p {
    font-size: 0.85rem;
  }

  .responsible-gaming-warning {
    padding: 1.2rem;
  }

  .warning-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .responsible-gaming-warning p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

