/* Casino Bet - Estilos principais
   Paleta: teal, roxo e toques de laranja
*/

:root {
  --color-bg: #050816;
  --color-bg-alt: #0b1020;
  --color-primary: #00e6b3;
  --color-primary-soft: rgba(0, 230, 179, 0.1);
  --color-accent: #ff7a3c;
  --color-text: #f5f7ff;
  --color-muted: #a8b0d0;
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 0.2s ease-out;
  --transition-med: 0.3s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #162447 0, #050816 45%, #020409 100%);
  color: var(--color-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(90deg, rgba(5, 8, 22, 0.94), rgba(5, 8, 22, 0.85));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: radial-gradient(circle at 20% 20%, #ffffff 0, #00e6b3 30%, #6c3bff 70%, #050816 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  font-size: 0.9rem;
  color: var(--color-muted);
  position: relative;
  padding-bottom: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width var(--transition-fast);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--color-text);
}

/* Hero */

.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--color-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 32px;
  background: radial-gradient(circle at 0 0, rgba(0, 230, 179, 0.25), transparent 55%);
  opacity: 0.8;
  z-index: -1;
}

.hero-seo-tail {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(0, 230, 179, 0.06), transparent 55%),
              radial-gradient(circle at bottom right, rgba(108, 59, 255, 0.08), transparent 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

/* Cards */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.7rem;
}

.product-card {
  background: rgba(7, 11, 28, 0.92);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.product-card img {
  height: 190px;
  object-fit: cover;
}

.product-body {
  padding: 1.3rem 1.4rem 1.4rem;
}

.product-body h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.product-body p {
  margin: 0.25rem 0 0.75rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 179, 0.6);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.7rem;
}

.news-card {
  background: rgba(7, 10, 30, 0.94);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.news-card h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.news-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Buttons & links */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #050816;
  box-shadow: 0 14px 30px rgba(0, 230, 179, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 230, 179, 0.55);
}

.btn-outline {
  border-color: rgba(168, 176, 208, 0.5);
  color: var(--color-text);
  background: rgba(7, 12, 30, 0.7);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(7, 12, 30, 0.9);
}

.btn-secondary {
  background: var(--color-primary-soft);
  color: var(--color-primary);
  border-color: rgba(0, 230, 179, 0.5);
}

.btn-secondary:hover {
  background: rgba(0, 230, 179, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--color-primary);
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.text-link:hover::after {
  width: 100%;
}

/* Footer */

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, rgba(0, 230, 179, 0.18), transparent 60%),
              linear-gradient(180deg, rgba(5, 8, 22, 0.98), #050816);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.4rem 0 1.8rem;
}

.footer-brand p {
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  max-width: 18rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  margin: 0 0 0.35rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.9rem 0 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.seo-tail-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

/* Produtos page */

.page-hero {
  padding: 3rem 0 1rem;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-hero p {
  max-width: 36rem;
  color: var(--color-muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 180px;
}

.filter-group label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

select {
  appearance: none;
  background: rgba(7, 12, 30, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0.9rem;
  color: var(--color-text);
  font-size: 0.86rem;
}

.product-tagline {
  font-size: 0.83rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.product-meta li {
  margin-bottom: 0.15rem;
}

/* Sobre - equipe */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.7rem;
}

.team-card {
  background: rgba(7, 11, 28, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.team-card img {
  height: 200px;
  object-fit: cover;
}

.team-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.team-body h3 {
  margin: 0 0 0.25rem;
}

.team-role {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: var(--color-primary);
}

.team-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Contato */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
  margin-top: 0;
}

.contact-form {
  background: rgba(7, 11, 28, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 26, 0.95);
  padding: 0.55rem 0.85rem;
  color: var(--color-text);
  font-size: 0.86rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-info p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-map img {
  border-radius: var(--radius-md);
  margin: 0.8rem 0;
}

.contact-note {
  font-size: 0.85rem;
}

.form-feedback {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-primary);
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .split,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .main-nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}


