:root {
    --gold-light: #e8c96a;
    --gold-primary: #cfb54a;
    --gold-dark: #8a6e14;
    --black-base: #000000;
    --black-light: #0d0d0f;
    --black-card: #121216;
    --text-gray: #9a9aaa;
    --text-light: #c8c8d8;
    --white: #fdfdfb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black-base); color: var(--white); overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; }

/* PARTICLES */
#particles-canvas { position: fixed; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; opacity:.4; }

/* NAVBAR */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%;
    background: rgba(10,10,14,0.85); backdrop-filter: blur(24px);
    position: fixed; width: 100%; top:0; z-index:1000;
    border-bottom: 1px solid rgba(207,181,74,0.12);
    transition: padding 0.3s ease;
}
header.scrolled { padding: 14px 5%; background: rgba(10,10,14,0.97); }
.logo img { width: auto; max-width: 180px; height: auto; max-height: 60px; transition: 0.3s; }
.logo img:hover { filter: drop-shadow(0 0 10px var(--gold-primary)); }

/* Wrapper para alinhar links e botão no Desktop */
.nav-wrapper-mobile {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-desktop a { 
    text-decoration: none; 
    position: relative; 
    transition: color 0.5s ease;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #cfb54a, transparent);
  background-size: 300% 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.nav-links a:hover {
  color: var(--gold-primary) !important;
}

.nav-links a:hover::after {
  opacity: 1;
  animation: shimmer111 2s linear infinite !important;
}

@keyframes shimmer111 {
  0% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* MOBILE MENU PROVIDED STYLE INTEGRATION */
.nav-links-desktop a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

/* Shimmer effect already defined in previous iterations if any, but let's ensure it's here */
.nav-links-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.5s;
}
.nav-links-desktop a:hover::after {
    opacity: 1;
    animation: shimmer111 2s linear infinite;
}

@keyframes shimmer111 {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hamburger-trigger {
    display: none;
    cursor: pointer;
    color: var(--gold-light);
    transition: 0.3s;
}
.hamburger-trigger:hover { color: var(--gold-primary); transform: scale(1.1); }

.nav-opener { display: none; }

.nav-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.nav-opener:checked + .nav-mobile-drawer {
    opacity: 1;
    visibility: visible;
}

.nav-header {
    height: 70px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-title {
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-nav-close {
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
}
.btn-nav-close:hover { color: var(--gold-primary); transform: rotate(90deg); }

.nav-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000;
}

.nav-links-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-link {
    width: 100%;
    margin-bottom: 5px;
}

.nav-link label {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link a {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    padding: 8px 0;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-link a:hover, .nav-link a:active {
    color: var(--gold-light) !important;
    transform: scale(1.05);
}

.nav-images-mobile { display: none !important; }

.menu-btn-animated {
    --color: var(--gold-light);
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    outline: none;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    display: none; /* Hidden on Desktop */
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001; 
}

@media (max-width: 1024px) {
    .nav-links-desktop, .hide-mobile { display: none !important; }
    .menu-btn-animated { display: block !important; }
}



.menu-btn-animated svg {
    width: 64px;
    height: 48px;
    top: -6px;
    left: -14px;
    stroke: var(--color);
    stroke-width: 4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: block;
    position: absolute;
}

.menu-btn-animated svg path {
    transition: stroke-dasharray .85s ease, stroke-dashoffset .85s ease;
    stroke-dasharray: 26px 100px;
    stroke-dashoffset: 126px;
    transform: translateZ(0);
}

.menu-btn-animated svg path:nth-child(2) {
    transition-duration: .7s;
    transition-timing-function: ease-in;
    stroke-dashoffset: 100px;
    stroke-dasharray: 26px 74px;
}

.menu-btn-animated svg path:nth-child(3) {
    stroke-dashoffset: 133px;
    stroke-dasharray: 26px 107px;
}

.menu-btn-animated.active svg path {
    stroke-dashoffset: 57px;
}

.menu-btn-animated.active svg path:nth-child(1),
.menu-btn-animated.active svg path:nth-child(3) {
    transition-delay: .15s;
    transition-timing-function: cubic-bezier(.2, .4, .2, 1.1);
}

.menu-btn-animated.active svg path:nth-child(2) {
    transition-duration: .4s;
    stroke-dashoffset: 2px;
    stroke-dasharray: 1px 74px;
}

.menu-btn-animated.active svg path:nth-child(3) {
    stroke-dashoffset: 58px;
}

/* BUTTONS */
.btn {
    padding: 13px 28px; border-radius: 6px;
    font-family: 'Outfit', sans-serif; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    text-decoration: none; transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; border: none; font-size: 0.9rem; position: relative; overflow: hidden;
}
.btn::after { content:''; position:absolute; top:50%; left:50%; width:0; height:0; background:rgba(255,255,255,0.15); border-radius:50%; transform:translate(-50%,-50%); transition:width .5s,height .5s; }
.btn:hover::after { width:300px; height:300px; }

.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold-primary) 50%, var(--gold-dark)); color: var(--black-base); box-shadow: 0 8px 24px -6px rgba(207,181,74,.6); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -6px rgba(207,181,74,.85); filter: brightness(1.08); }
.btn-outline { background: transparent; color: var(--gold-light); border: 1.5px solid rgba(207,181,74,.5); }
.btn-outline:hover { background: rgba(207,181,74,.1); border-color: var(--gold-light); transform: translateY(-3px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; border-radius: 8px; }

@keyframes btnPulse { 0%,100%{box-shadow:0 8px 24px -6px rgba(207,181,74,.6)} 50%{box-shadow:0 8px 40px 0 rgba(207,181,74,.9)} }
.btn-pulse { animation: btnPulse 2.5s ease infinite; }

/* HERO */
.hero { min-height: 100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 160px 5% 100px; position:relative; overflow:hidden; }
.glow { position:absolute; border-radius:50%; pointer-events:none; }
.glow.center { width:900px; height:900px; background:radial-gradient(circle, rgba(207,181,74,.10) 0%, transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); }
.glow.left { width:500px; height:500px; background:radial-gradient(circle, rgba(207,181,74,.06) 0%, transparent 70%); top:20%; left:-10%; }
.glow.right { width:400px; height:400px; background:radial-gradient(circle, rgba(230,57,70,.05) 0%, transparent 70%); bottom:20%; right:-5%; }
.hero-content { position:relative; z-index:1; max-width:960px; }

.badge { display:inline-flex; align-items:center; gap:10px; background:rgba(207,181,74,.1); border:1px solid rgba(207,181,74,.3); padding:8px 20px; border-radius:50px; font-size:.85rem; font-family:'Outfit',sans-serif; font-weight:600; color:var(--gold-light); text-transform:uppercase; letter-spacing:2px; margin-bottom:28px; }
.badge .dot { width:8px; height:8px; border-radius:50%; background:var(--gold-primary); animation:pulse 2s ease infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(207,181,74,.5)} 50%{box-shadow:0 0 0 8px rgba(207,181,74,0)} }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 { font-size:clamp(1.8rem, 4vw, 3.8rem); line-height:1.1; margin-bottom:28px; font-weight:900; animation:fadeUp .9s ease .1s forwards; opacity:0; }

.hero h1 .unit { display:block; font-size:clamp(1.1rem, 2.2vw, 1.6rem); font-weight:600; color:var(--gold-light); margin-bottom:10px; letter-spacing:.5px; }
.hero h1 .tagline { display:block; }
.hero h1 .gold { background:linear-gradient(135deg, var(--gold-light), #fffbe8, var(--gold-primary)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.hero-sub { font-size:1.2rem; color:var(--text-gray); max-width:700px; margin:0 auto 40px; line-height:1.7; font-weight:300; animation:fadeUp 1s ease .2s forwards; opacity:0; }
.hero-cta { display:flex; gap:20px; justify-content:flex-start; flex-wrap:wrap; animation:fadeUp 1s ease .3s forwards; opacity:0; }

.tela-badge { display:inline-flex; align-items:center; gap:12px; background:rgba(255,255,255,.03); border:1px solid rgba(207,181,74,.2); padding:10px 22px; border-radius:50px; margin-top:48px; font-size:.9rem; color:var(--text-light); animation:fadeUp 1s ease .4s forwards; opacity:0; }

.hero-grid { max-width:1300px; margin:0 auto; width:100%; position:relative; z-index:2; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.hero-text { text-align:left; }

.hero-image { position:relative; animation:fadeUp 1s ease .4s forwards; opacity:0; display:flex; justify-content:flex-end; }
.hero-image img { max-width:100%; height:auto; max-height:75vh; mix-blend-mode: screen; position:relative; z-index:2; filter: brightness(1.05); border-radius: 24px; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); }
.video-wrapper { position:relative; display:inline-block; max-width:100%; max-height:75vh; border-radius:24px; overflow:hidden; z-index:2; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); will-change: transform; -webkit-mask-image: -webkit-radial-gradient(white, black); }
.hero-image video { max-width:100%; height:auto; max-height:75vh; mix-blend-mode: screen; position:relative; z-index:2; filter: brightness(1.05); border-radius:24px; display:block; transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0); }
.video-controls { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; z-index:10; background:rgba(0,0,0,0.65); border:1px solid rgba(255,255,255,0.15); padding:10px 16px; border-radius:16px; backdrop-filter:blur(10px); width:240px; box-sizing:border-box; }
.video-timeline { width:100%; height:6px; background:rgba(255,255,255,0.2); border-radius:3px; cursor:pointer; position:relative; }
.video-progress { width:0%; height:100%; background:var(--gold-primary); border-radius:3px; position:absolute; top:0; left:0; pointer-events:none; }
.video-control-row { display:flex; align-items:center; justify-content:space-between; width:100%; margin-top:4px; }
.video-ctrl-btn { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); color:#fff; width:36px; height:36px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; font-size:1.1rem; transition:all 0.3s ease; padding:0; margin:0; }
.video-ctrl-btn ion-icon { display:flex; align-items:center; justify-content:center; }
.video-ctrl-btn:hover { background:var(--gold-primary); color:#000; border-color:var(--gold-primary); transform:scale(1.05) translateX(0); }
.video-time { color:#e4e4e7; font-size:0.75rem; font-family:'Inter',monospace; user-select:none; }

/* SECTIONS */
.section { padding:100px 5%; position:relative; z-index:1; }
.section-dark { background:var(--black-light); }

.section-header { text-align:center; margin-bottom:70px; }
.section-header .label { color:var(--gold-primary); font-size:.78rem; letter-spacing:4px; text-transform:uppercase; font-family:'Outfit',sans-serif; font-weight:600; margin-bottom:14px; display:block; }
.section-header h2 { font-size:clamp(2rem,4vw,3.2rem); color:var(--white); margin-bottom:14px; }
.section-header h2 span { color:var(--gold-light); }
.section-header p { font-size:1.05rem; color:var(--text-gray); max-width:600px; margin:0 auto; line-height:1.7; }

/* GRUPO STATS */
.grupo-stats { display:flex; justify-content:center; gap:60px; margin-top:50px; flex-wrap:wrap; }
.gstat { text-align:center; }
.gstat-value { font-family:'Outfit',sans-serif; font-size:3rem; font-weight:900; color:var(--gold-light); line-height:1; display:block; }
.gstat-label { font-size:.82rem; color:var(--text-gray); text-transform:uppercase; letter-spacing:1.5px; margin-top:8px; }

/* TAGLINE BIG */
.tagline-box { max-width:1100px; margin:0 auto; padding:60px 0; position:relative; display:flex; align-items:center; gap:50px; text-align:left; background: var(--black-base); border: none; }
.tagline-box::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(to right,transparent,var(--gold-primary),transparent); opacity: 0.5; }
.tagline-text { flex:1; }
.tagline-box h2 { font-size:clamp(2rem,5vw,3.8rem); font-weight:900; }
.tagline-box h2 .gold { color:var(--gold-light); }
.tagline-box .sub { font-size:1.05rem; color:var(--text-gray); margin-top:14px; line-height: 1.6; }
.tagline-image { flex:1; max-width:650px; display:flex; justify-content:center; }
.tagline-image img { max-width:100%; height:auto; mix-blend-mode: screen; filter: brightness(1.1); border-radius:0; }

/* ICON CIRCLE */
.icon-circle { width:56px; height:56px; border-radius:14px; background:rgba(207,181,74,.1); border:1px solid rgba(207,181,74,.25); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold-light); }

/* GRID CARDS */
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; max-width:1200px; margin:0 auto; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:20px; max-width:1200px; margin:0 auto; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }


/* CLIENT LOGO BOX */
.client-logo-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: 0.3s;
}
.client-logo-box:hover {
    background: rgba(207,181,74,0.05);
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}
.client-logo-box img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1) brightness(1.5);
    opacity: 0.7;
    transition: 0.3s;
}
.client-logo-box:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* TOTEM CARD HOME */
.totem-card-home {
    background: var(--black-card);
    border: 2.5px solid rgba(207,181,74,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    width: 280px; /* Largura para formato vertical */
    aspect-ratio: 3 / 4; /* Voltando para vertical para não cortar o totem */
    position: relative;
    flex-shrink: 0;
}
.totem-card-home:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.totem-img-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.totem-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}
.totem-card-home:hover .totem-img-container img {
    transform: scale(1.1);
}
.totem-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95) 75%);
    z-index: 2;
}
.totem-card-info h3, .card-title-slider {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.totem-card-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.card {
    background:var(--black-card); border:1px solid rgba(207,181,74,.12); border-radius:16px; padding:42px 34px;
    position:relative; overflow:hidden; transition:all .4s cubic-bezier(.175,.885,.32,1.275);
}
.card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(to right,var(--gold-dark),var(--gold-light)); transform:scaleX(0); transform-origin:left; transition:transform .4s ease; }
.card:hover { transform:translateY(-12px); border-color:rgba(207,181,74,.35); box-shadow:0 24px 48px -8px rgba(0,0,0,.6),0 0 40px -10px rgba(207,181,74,.2); }
.card:hover::before { transform:scaleX(1); }

.card-icon { margin-bottom:22px; }
.card h3 { font-size:1.2rem; color:var(--gold-light); margin-bottom:14px; font-weight:700; }
.card ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.card ul li { font-size:.95rem; color:var(--text-light); line-height:1.5; padding-left:18px; position:relative; }
.card ul li::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:6px; height:6px; border-radius:50%; background:var(--gold-primary); box-shadow:0 0 6px rgba(207,181,74,.6); }

/* STATS */
.stats-highlight { text-align:center; margin-bottom:60px; }
.stats-num { font-family:'Outfit',sans-serif; font-size:clamp(4rem,8vw,7rem); font-weight:900; background:linear-gradient(135deg,var(--gold-light),var(--gold-primary)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; }
.stats-desc { font-size:1.1rem; color:var(--text-gray); max-width:550px; margin:12px auto 0; line-height:1.6; }
.stats-desc strong { color:var(--white); }

@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes rotateBorder { to { --angle: 360deg; } }
.stat-card { background:var(--black-card); border-radius:18px; padding:42px 22px; text-align:center; transition:all .4s ease; position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:center; align-items:center; }
.stat-card::before { content:''; position:absolute; inset:-50%; width:200%; height:200%; background:conic-gradient(from var(--angle), transparent 0deg 90deg, var(--gold-light) 90deg 180deg, transparent 180deg 270deg, var(--gold-primary) 270deg 360deg); animation:rotateBorder 4s linear infinite; }
.stat-card::after { content:''; position:absolute; inset:2px; background:var(--black-card); border-radius:16px; }
.stat-card:hover { transform:translateY(-8px); box-shadow:0 20px 40px rgba(0,0,0,.5); }
.stat-card .sicon, .stat-card .snum, .stat-card .slabel { position:relative; z-index:1; }
.stat-card .sicon { margin-bottom:14px; color:var(--gold-light); display:flex; justify-content:center; }
.stat-card .snum { font-family:'Outfit',sans-serif; font-size:clamp(1.7rem, 3.5vw, 2.6rem); font-weight:900; color:var(--gold-light); display:block; margin-bottom:10px; line-height:1; }
.stat-card .slabel { font-size:.82rem; color:var(--text-gray); line-height:1.4; padding:0 8px; }

.why-card { background:rgba(207,181,74,.04); border:1px solid rgba(207,181,74,.15); border-radius:12px; padding:34px 26px; transition:all .35s ease; }
.why-card:hover { background:rgba(207,181,74,.08); border-color:rgba(207,181,74,.35); transform:translateY(-6px); }
.why-card .wicon { margin-bottom:14px; color:var(--gold-light); }
.why-card h4 { font-size:.95rem; font-weight:700; color:var(--gold-light); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.why-card p { font-size:.9rem; color:var(--text-gray); line-height:1.6; }
.why-card p strong { color:var(--gold-primary); }

/* SLIDER (Needs dynamic track width in style) */
.slider { width:100%; overflow:hidden; position:relative; padding:20px 0; margin-top:50px; }
.slider::before,.slider::after { content:''; position:absolute; top:0; width:160px; height:100%; z-index:2; }
.slider::before { left:0; background:linear-gradient(to right,var(--black-base),transparent); }
.slider::after { right:0; background:linear-gradient(to left,var(--black-base),transparent); }
.slide-track { display:flex; animation:scroll 35s linear infinite; }
.slide-track:hover { animation-play-state:paused; }
.slide { width:250px; height:100px; display:flex; align-items:center; justify-content:center; padding:0 30px; }
.slide img { max-width:100%; max-height:75px; filter:grayscale(100%) brightness(180%); opacity:.35; transition:all .4s ease; }
.slide:hover img { filter:grayscale(0) brightness(100%); opacity:1; transform:scale(1.1); }

/* WIN CARDS */
.win-card { background:var(--black-card); border:1px solid rgba(207,181,74,.12); border-radius:16px; padding:48px 36px; text-align:center; transition:all .4s ease; position:relative; overflow:hidden; }
.win-card:hover { border-color:rgba(207,181,74,.35); transform:translateY(-10px); box-shadow:0 24px 48px rgba(0,0,0,.5),0 0 30px -5px rgba(207,181,74,.15); }
.win-number { width:68px; height:68px; background:linear-gradient(135deg,var(--gold-primary),var(--gold-dark)); color:var(--black-base); font-size:2rem; font-weight:900; display:flex; align-items:center; justify-content:center; border-radius:50%; margin:0 auto 26px; font-family:'Outfit',sans-serif; box-shadow:0 0 24px rgba(207,181,74,.4); }
.win-card h3 { font-size:1.1rem; color:var(--gold-light); margin-bottom:14px; font-weight:700; }
.win-card p { font-size:.97rem; color:var(--text-gray); line-height:1.7; font-weight:300; }

/* CTA STRIP */
.cta-strip { padding: 100px 5%; background: var(--black-base); position: relative; border-top: 1px solid rgba(255,255,255,0.05); }
.cta-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.cta-image { display: flex; justify-content: center; }
.cta-image img { max-width: 100%; height: auto; mix-blend-mode: screen; filter: brightness(1.2); }
.cta-content { text-align: left; }
.cta-content h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; }
.cta-content p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }


/* CONTACT */
.contact-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.contact-text h2 { font-size:clamp(2rem,4vw,3.2rem); color:var(--white); margin-bottom:18px; line-height:1.15; }
.contact-text h2 .gold { color:var(--gold-light); }
.contact-text > p { font-size:1.05rem; color:var(--text-gray); margin-bottom:36px; line-height:1.7; }

.cinfo-list { display:flex; flex-direction:column; gap:18px; margin-top:40px; }
.cinfo-item { display:flex; align-items:center; gap:14px; }
.cinfo-icon { width:44px; height:44px; background:rgba(207,181,74,.1); border:1px solid rgba(207,181,74,.25); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--gold-light); flex-shrink:0; }
.cinfo-label { font-size:.72rem; color:var(--gold-primary); text-transform:uppercase; letter-spacing:1.5px; font-weight:600; font-family:'Outfit',sans-serif; }
.cinfo-value { font-size:1rem; color:var(--white); font-family:'Outfit',sans-serif; font-weight:600; }

.form-card { background:var(--black-card); padding:46px; border-radius:16px; border:1px solid rgba(214,180,90,.18); box-shadow:0 30px 60px rgba(0,0,0,.5); }
.form-card h3 { font-size:1.3rem; color:var(--white); margin-bottom:4px; }
.form-sub { font-size:.88rem; color:var(--text-gray); margin-bottom:30px; }
.form-group { margin-bottom:22px; }
.form-group label { display:block; margin-bottom:7px; font-size:.75rem; text-transform:uppercase; letter-spacing:1.5px; color:var(--gold-light); font-weight:600; }
.form-control { width:100%; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:8px; color:var(--white); font-size:.97rem; padding:12px 14px; transition:.3s; font-family:'Inter',sans-serif; }
.form-control:focus { outline:none; border-color:var(--gold-primary); background:rgba(207,181,74,.04); box-shadow:0 0 0 3px rgba(207,181,74,.1); }
.form-control::placeholder { color:rgba(255,255,255,.2); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.required { color:#f43f5e; }

/* FOOTER */
footer { padding:56px 5% 36px; background:var(--black-base); border-top:1px solid rgba(255,255,255,.05); position:relative; z-index:1; }
.footer-content { display:flex; justify-content:space-between; align-items:center; max-width:1200px; margin:0 auto; flex-wrap:wrap; gap:20px; }
.footer-logo img { width: auto; max-width: 150px; height: auto; max-height: 40px; filter:grayscale(1) brightness(1.5); }
.footer-tagline { font-family:'Outfit',sans-serif; font-size:.88rem; color:var(--gold-primary); font-weight:600; letter-spacing:1px; }
.copyright { color:var(--text-gray); font-size:.82rem; margin-top:4px; }
.admin-link { color:rgba(255,255,255,.2); text-decoration:none; font-size:.78rem; transition:.3s; }
.admin-link:hover { color:var(--gold-light); }

/* SOCIAL MENU HOVER EFFECT */
.social-menu { display: flex; position: relative; gap: 25px; margin-top: 35px; }
.social-menu li { position: relative; list-style: none; width: 60px; height: 60px; background: white; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); border-radius: 60px; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: 0.5s; }
.social-menu li::before { content: ""; position: absolute; inset: 0; border-radius: 60px; background: linear-gradient(45deg, var(--i), var(--j)); opacity: 0; transition: 0.5s; }
.social-menu li::after { content: ""; position: absolute; top: 10px; width: 100%; height: 100%; border-radius: 60px; background: linear-gradient(45deg, var(--i), var(--j)); transition: 0.5s; filter: blur(15px); z-index: -1; opacity: 0; }
.social-menu li:hover { width: 180px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0); }
.social-menu li:hover::before { opacity: 1; }
.social-menu li:hover::after { opacity: 0.5; }
.social-menu li ion-icon { color: #777; font-size: 1.75em; transition: 0.5s; transition-delay: 0.25s; z-index: 2; }
.social-menu li:hover ion-icon { transform: scale(0); color: #fff; transition-delay: 0s; }
.social-menu li span.title { position: absolute; color: #fff; font-size: 1.1em; letter-spacing: 0.1em; text-transform: uppercase; transform: scale(0); transition: 0.5s; transition-delay: 0s; z-index: 2; }
.social-menu li:hover span.title { transform: scale(1); transition-delay: 0.25s; }

/* SCROLL REVEAL - Garantindo visibilidade inicial para evitar conteúdos ocultos */
.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
body.js-ready .reveal { opacity: 0; transform: translateY(30px); }
body.js-ready .reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* FAQ STYLE */
details summary { list-style: none; outline: none; }
details summary::-webkit-details-marker { display: none; }
details[open] summary span { transform: rotate(45deg); display: inline-block; transition: 0.3s; }

/* WHATSAPP FLOAT */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,.5);
    animation: wppPulse 2.2s ease infinite;
    transition: transform .25s ease, box-shadow .25s ease;
}
.wpp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(37,211,102,.75);
    animation-play-state: paused;
}
.wpp-float svg { width:32px; height:32px; fill:#fff; }
.wpp-ring {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37,211,102,.3);
    animation: wppRing 2.2s ease infinite;
}
@keyframes wppPulse {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.5); }
    50%      { box-shadow: 0 6px 36px rgba(37,211,102,.85), 0 0 0 10px rgba(37,211,102,.15); }
}
@keyframes wppRing {
    0%   { transform:scale(1);   opacity:.6; }
    70%  { transform:scale(1.7); opacity:0; }
    100% { transform:scale(1.7); opacity:0; }
}


/* HERO STATS */
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat .number { font-size: 2rem; font-weight: 800; color: var(--gold-light); }
.hero-stat .label { font-size: .75rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }

/* WIN NUMBER OUTLINE */
.win-number-outline {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gold-primary);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* MOBILE LAYOUT - v3.0 DEFINITIVO */
@media (max-width: 1024px) {
    * { box-sizing: border-box !important; }
    body { overflow-x: hidden !important; }



    /* ── HEADER BLINDADO (v5.0) ── */
    #navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
        padding: 0 15px !important;
        background: #000 !important;
        width: 100% !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 9999 !important;
    }
    /* Logo: FORÇADA NA ESQUERDA */
    #navbar .logo {
        display: block !important;
        float: left !important;
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }
    #navbar .logo img {
        height: 35px !important;
        width: auto !important;
        display: block !important;
    }
    /* Menu: FORÇADO NA DIREITA */
    .nav-wrapper-mobile {
        display: flex !important;
        float: right !important;
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        margin-left: auto !important;
        width: auto !important;
    }
    .header-btns {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    .menu-btn-animated {
        display: block !important;
        position: relative !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
    }
    /* Esconde elementos desnecessários no mobile */
    .nav-links-desktop, .btn.hide-mobile, .hide-mobile { display: none !important; }

    /* ── ESTRUTURA GERAL MOBILE (v4.1) ── */
    .container { width: 100% !important; padding: 0 15px !important; margin: 0 auto !important; }
    section { overflow: hidden !important; width: 100% !important; }
    .contact-container, .cta-grid, .footer-content, .contact-content, .form-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 20px 15px !important;
        margin: 0 auto !important;
    }

    /* ── HERO MOBILE ── */
    .hero { padding-top: 120px !important; }
    h1 { font-size: 1.7rem !important; line-height: 1.2 !important; }
    .hero-sub { font-size: 0.95rem !important; }
    .hero-grid { grid-template-columns: 1fr !important; }
    .hero-cta {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        padding: 0 !important;
        width: 100% !important;
        margin: 20px auto 0 !important;
    }
    .btn-lg {
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 50% !important;
        padding: 12px 2px !important;
        font-size: 0.68rem !important;
        letter-spacing: 0px !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    /* ── FOOTER MOBILE ── */
    .footer-content { flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 24px !important; }
}

/* ── LOGO SLIDER (INFINITE) ── */
.logo-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    background: rgba(255,255,255,0.01);
}
.logo-slider-container::before, .logo-slider-container::after {
    content: ""; height: 100%; width: 150px; position: absolute; z-index: 2; top: 0; pointer-events: none;
}
.logo-slider-container::before {
    left: 0; background: linear-gradient(to right, #000 0%, transparent 100%);
}
.logo-slider-container::after {
    right: 0; background: linear-gradient(to left, #000 0%, transparent 100%);
}
.logo-slider-track {
    display: flex;
    width: max-content;
    animation: logoScroll 35s linear infinite;
}
.logo-slider-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── CARROSSEL DE TOTENS ── */
.totem-slider-track {
    display: flex;
    width: max-content;
    animation: totemScroll 45s linear infinite;
    gap: 30px;
    padding: 20px 0;
}
.totem-slider-track:hover { animation-play-state: paused; }

@keyframes totemScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.totem-as-chip:hover { background: rgba(207,181,74,0.1); padding-left: 20px; }

.totem-as-footer { padding: 15px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 10px; background: #121216; }
.totem-as-input { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 10px; color: #fff; }
.totem-as-send { background: #cfb54a; border: 0; width: 40px; height: 40px; border-radius: 10px; color: #000; cursor: pointer; display: flex; align-items: center; justify-content: center; }

@media (max-width: 480px) {
  .totem-assistant { right: 15px; bottom: 120px !important; }
  .totem-as-panel { width: calc(100vw - 30px); height: 75vh; }
  .totem-as-launcher { width: 65px; height: 65px; border-width: 4px; }
}

