/*
Theme Name: uu555 Child Theme
Template: flatsome
Description: Tema filho Flatsome para uu555, marca brasileira de slots e cassino online.
Author: uu555 Dev Team
Version: 1.0.0
Text Domain: uu555-child
*/

/* Cores base conforme brazil_green_yellow_blue */
:root {
  --color-primary: #009739; /* verde Brasil */
  --color-secondary: #ffd100; /* amarelo Brasil */
  --color-accent: #0052cc; /* azul Brasil */
  --color-neon: #39ff14; /* neon verde */
  --color-neon-yellow: #f7ff00; /* neon amarelo */
  --color-neon-blue: #00ccff; /* neon azul */
  --color-bg-dark-overlay: rgba(0, 0, 0, 0.6);
  --color-text-light: #f9f9f9;
  --color-text-dark: #222222;
  --color-outline-neon: var(--color-neon);
}

/* Reset básico */
body {
  background-color: #fff;
  color: var(--color-text-dark);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* HEADLINE STYLE - modern_tech */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* CTA STYLE - bold_neon */
a.button-cta {
  background-color: var(--color-neon);
  color: #000;
  font-weight: 900;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 8px var(--color-neon);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
a.button-cta:hover, a.button-cta:focus {
  background-color: var(--color-neon-yellow);
  box-shadow: 0 0 12px var(--color-neon-yellow);
  color: #000;
  outline: none;
}

/* CARD STYLE - outline_neon */
.card-outline-neon {
  border: 2px solid var(--color-outline-neon);
  border-radius: 8px;
  padding: 1.5rem;
  background-color: transparent;
  color: var(--color-text-dark);
  box-shadow: 0 0 8px var(--color-outline-neon);
  transition: box-shadow 0.3s ease;
}
.card-outline-neon:hover {
  box-shadow: 0 0 16px var(--color-outline-neon);
}

/* HERO SECTION - overlay layout */
.hero-overlay {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-light);
}
.hero-overlay .hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-position: center center;
  background-size: cover;
  filter: brightness(0.5);
  z-index: 1;
}
.hero-overlay .hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0 1rem;
}
.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.7);
}
.hero-overlay p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 6px rgba(0,0,0,0.7);
}

/* BONUS EXPLAINER SECTION */
.bonus-explainer {
  background-color: #f0f9f4;
  color: var(--color-text-dark);
  padding: 3rem 1rem;
  max-width: 960px;
  margin: 0 auto 3rem auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 151, 57, 0.15);
}
.bonus-explainer h2 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.bonus-explainer p {
  font-size: 1.125rem;
  line-height: 1.5;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.features-grid .card-outline-neon {
  background-color: #fff;
}
.features-grid h3 {
  margin-top: 0;
  color: var(--color-primary);
}

/* FAQ Section */
.faq {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  padding: 1rem;
  background-color: #e6f1eb;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 151, 57, 0.1);
}
.faq h2 {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1rem;
}
.faq dl {
  margin: 0;
}
.faq dt {
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
  padding-right: 1.5rem;
}
.faq dt::after {
  content: "▶";
  position: absolute;
  right: 0;
  color: var(--color-neon);
  transition: transform 0.3s ease;
}
.faq dt.active::after {
  transform: rotate(90deg);
}
.faq dd {
  margin-left: 1rem;
  margin-bottom: 1rem;
  display: none;
  font-weight: 400;
}
.faq dd.active {
  display: block;
}

/* STEPS Section */
.steps {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-around;
}
.steps .step {
  flex: 1 1 200px;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--color-neon);
  box-shadow: 0 0 12px var(--color-neon);
  text-align: center;
  color: var(--color-text-dark);
}
.steps .step h3 {
  margin-top: 0;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.steps .step p {
  font-size: 1rem;
  line-height: 1.4;
}

/* TRUST BLOCKS Section */
.trust-blocks {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.trust-blocks .trust-item {
  flex: 1 1 250px;
  padding: 1rem;
  text-align: center;
}
.trust-blocks .trust-item h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
}
.trust-blocks .trust-item p {
  font-size: 1rem;
  line-height: 1.4;
}

/* SUPPORT CENTER Section */
.support-center {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  padding: 2rem 1rem;
  background-color: #cce5ff;
  border-radius: 12px;
  text-align: center;
  color: var(--color-text-dark);
}
.support-center h2 {
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.support-center p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.support-center a.button-cta {
  background-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 0 8px var(--color-accent);
}
.support-center a.button-cta:hover {
  background-color: #003d99;
  box-shadow: 0 0 12px #003d99;
}

/* CTA FOOTER Section */
.cta-footer {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}
.cta-footer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Orbitron', sans-serif;
}
.cta-footer a.button-cta {
  background-color: var(--color-neon);
  color: #000;
  font-weight: 900;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--color-neon);
}
.cta-footer a.button-cta:hover {
  background-color: var(--color-neon-yellow);
  box-shadow: 0 0 16px var(--color-neon-yellow);
}

/* MENU STYLE - cta-right */
.header-main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
.header-main-menu a.button-cta {
  margin-left: auto;
}

/* Visual motifs (formas geométricas brand-safe, luzes bokeh, símbolos de slot abstratos) */
section.hero-overlay::before {
  content: "🎰🎡🃏";
  position: absolute;
  font-size: 6rem;
  opacity: 0.12;
  top: 10%;
  left: 5%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
section.trust-blocks::before {
  content: "💳🎁💬";
  position: absolute;
  font-size: 5rem;
  opacity: 0.1;
  bottom: 10%;
  right: 5%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Depth and cinematic effects */
.hero-overlay .hero-content, .trust-blocks .trust-item {
  text-shadow: 0 0 8px rgba(0,0,0,0.85);
}

/* Responsividade básica */
@media (max-width: 768px) {
  .hero-overlay {
    height: 360px;
  }
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Hide Flatsome placeholder */
.header-inner .text-left:empty,.header-inner .text-right:empty,.ux-banner .text:empty{display:none!important;}

/* === Flatsome brand overrides === */
html,body,.page,.page-wrapper,.main-content{background-color:#07182a!important;color:#d0d8ea!important}
h1,h2,h3,h4,h5,h6,.page-title,.entry-title,.product-title,.header-title{color:#eef2ff!important}
p,li,span,div,.entry-content,.page-content,article{color:#c8d0e4!important}
a{color:#2fdc70!important} a:hover{color:#ffd23f!important}
#top-bar,.header-top{background:#0b2236!important;border-bottom:1px solid rgba(255,255,255,.06)!important}
#top-bar *,.header-top *{color:rgba(255,255,255,.65)!important}
#top-bar a:hover{color:#2fdc70!important}
.header-newsletter-item,.header-social-icons,#top-bar .social-icons,#top-bar .header-newsletter-item,.tooltip.is-small{display:none!important}
.header-main,.header-bottom,.nav-dark,.header-wrapper{background:#07182a!important}
.nav>li>a,.header-nav>li>a{color:#d0d8ea!important}
.nav>li>a:hover{color:#2fdc70!important}
.footer-primary,.absolute-footer,.footer,.footer-wrapper{background:#07182a!important;color:#b7c0d8!important}
.copyright-footer{color:#b7c0d8!important;font-size:13px!important}
.copyright-footer strong{color:#2fdc70!important;font-weight:600!important}
.absolute-footer a,.footer a{color:#2fdc70!important}
.lightbox-content.lightbox-newsletter,.lightbox-by-id{display:none!important}
.is-border.is-dashed{display:none!important}
