/* -------------------------------------------------------------------------------- DUCK SCRIPTS - STYLE BASE (CSS GERAL PARA TODAS AS PÁGINAS) Inclui estilos de Layout, Botões de Ação, Cards e Resgate. -------------------------------------------------------------------------------- */ /* Base e Reset */ * { margin:0; padding:0; box-sizing:border-box } html { scroll-behavior: smooth; } body { font-family: 'Roboto Condensed', sans-serif; background: linear-gradient(to bottom, #000, #030303); color: #f0f0f0; line-height: 1.6; overflow-x: hidden; padding-top: 80px; /* Base pad para Header Fixo */ } a { text-decoration: none; color: inherit; transition: all 0.3s ease; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* TÍTULOS E SEÇÕES GERAIS */ .section { padding: 90px 20px; text-align: center; } .black-section { background: #080808; } .section-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #FFD700; text-shadow: 0 0 15px rgba(255,215,0,0.7); text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; } /* BOTÃO CTA PRINCIPAL (Dourado Skewed - Uso fora dos cards) */ .btn-cta { background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%); color: #000; padding: 18px 45px; border-radius: 8px; font-weight: 700; font-size: 19px; box-shadow: 0 0 25px rgba(255, 215, 0, 0.7); transition: all 0.3s ease; display: inline-block; text-transform: uppercase; border: none; position: relative; overflow: hidden; transform: skewX(-5deg); letter-spacing: 1px; } .btn-cta:hover { background: linear-gradient(135deg, #fff04a 0%, #D4AF37 100%); transform: translateY(-3px) skewX(-5deg) scale(1.02); box-shadow: 0 5px 35px rgba(255, 240, 0, 0.8); } .btn-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,0.2); transform: skewX(-20deg); transition: all 0.7s; } .btn-cta:hover::before { left: 100%; } /* --- SEÇÃO DE RESGATE (Requerido em Loja/Scripts) --- */ .resgate-section { padding: 80px 20px; text-align: center; border-bottom: 2px solid rgba(255,215,0,0.2); } .resgate-section form { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; transform: skewX(-2deg); } .resgate-section input { padding: 12px; border: 2px solid #333; background: #111; color: #fff; border-radius: 6px; width: 300px; } .resgate-section button { padding: 12px 25px; background: #FFD700; color: #000; border: none; font-weight: bold; border-radius: 6px; cursor: pointer; transform: skewX(5deg); } /* --- CARDS E PRODUTOS (Scripts e Sprites) --- */ .category-section { padding: 80px 20px; border-bottom: 5px solid rgba(255,215,0,0.2); text-align: center; } .scripts { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; } .card { background: #1a1a1a; border: 2px solid rgba(255,215,0,0.5); padding: 30px; border-radius: 12px; width: 340px; box-shadow: 0 0 20px rgba(0,0,0,0.5); transition: all 0.3s; transform: skewX(-2deg); position: relative; } .card:hover { transform: translateY(-8px) skewX(-2deg) scale(1.02); box-shadow: 0 15px 40px rgba(255,215,0,0.2); } .card h3 { font-family: 'Bebas Neue', sans-serif; color: #FFD700; font-size: 30px; } .card p { font-size: 16px; color: #ccc; } .card ul { list-style: none; padding: 0; margin: 15px 0; text-align: left; } .card li { margin: 8px 0; font-size: 15px; } .card li i { color: #FFD700; margin-right: 10px; } /* Preços */ .price-info { border: 1px dashed #444; padding: 15px; background: #000; transition: 0.3s; } .price-main { font-size: 30px; font-weight: 800; color: #00e676; text-shadow: 0 0 8px rgba(0, 230, 118, 0.6); } .cupom-highlight { color: #FFD700; font-size: 14px; display: block; margin-top: 5px; } /* Botões de Ação (Abaixo do Preço) */ .card-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 15px; } .btn-compra-final { background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%); color: #000; font-weight: 700; border-radius: 6px; padding: 15px 35px; font-size: 18px; transform: skewX(5deg); box-shadow: 0 0 15px rgba(255,215,0,0.7); transition: 0.3s; display: block; } .btn-compra-final:hover { transform: translateY(-2px) skewX(5deg); box-shadow: 0 5px 30px rgba(255,240,0,0.8); } .btn-video-new, .btn-image-new { /* Unificado para media buttons */ background: #222; color: #ccc; border: 1px solid #444; border-radius: 6px; padding: 10px 35px; font-size: 16px; transform: skewX(5deg); transition: 0.3s; display: block; } .btn-video-new:hover, .btn-image-new:hover { background: #333; border-color: #ff3d00; color: #ff3d00; } /* Cores por categoria (para H2s de seção) */ #tibia h2 { color: #ff9f00; text-shadow: 0 0 15px #ff9f00aa; } #pxg h2 { color: #00bcd4; text-shadow: 0 0 15px #00bcd4aa; } #narutibia h2 { color: #e91e63; text-shadow: 0 0 15px #e91e63aa; } .naruto-btn { background: linear-gradient(135deg, #e91e63 0%, #cc0099 100%); box-shadow: 0 0 15px #e91e63aa; color: #fff !important; } /* FAQ */ .faq-item h4 { font-family: 'Roboto Condensed', sans-serif; color: #FFD700; font-size: 22px; font-weight: 700; letter-spacing: 0.5px; } .faq-item p { font-family: 'Roboto Condensed', sans-serif; } /* Footer (Mantido simples, se precisar do CSS completo do Footer, ele deve ser adicionado aqui) */ footer { padding: 20px; text-align: center; font-size: 14px; color: #555; background: #000; border-top: 1px solid #111; } /* RESPONSIVIDADE GERAL (Do seu código anterior) */ @media (max-width: 768px) { .card { width: 95%; transform: none !important; } .card-actions .btn-compra-final, .card-actions .btn-video-new, .card-actions .btn-image-new { transform: none !important; } .resgate-section button { transform: none !important; } .card { transform: none !important; } .faq-item { transform: none !important; } } quero esse estilo de botoes e cores nesse css abaixo /* Reset básico */ * { margin:0; padding:0; box-sizing:border-box; } body { font-family: 'Lexend Deca', sans-serif; color: #fff; background: linear-gradient(to bottom, #000000 0%, #333333 40%, #FFA500 100%); } a { text-decoration:none; color:inherit; } /* BANNER PROMOÇÃO */ .promo-banner { background: #FF4500; color: #fff; margin-left: -40px; margin-right: -40px; text-align: center; padding: 12px 0; font-weight: bold; animation: pulse 2s infinite; } @keyframes pulse { 0%,100%{opacity:1;}50%{opacity:.7;} } .hero { position: relative; background: transparent; padding: 80px 20px; text-align: center; } .hero::before { display: none; } .hero-overlay { background: rgba(0,0,0,0.5); /* leve transparência só na caixa */ box-shadow: 0 0 20px rgba(255,69,0,0.5); } .hero-logo { max-width:200px; margin-bottom:20px; } .hero h1 { font-size:32px; color:#FF4500; margin-bottom:15px; } .hero p { font-size:1.1rem; margin-bottom:20px; } .features-list { list-style:none; text-align:left; display:inline-block; margin:20px auto 30px; } .features-list li { font-size:18px; margin:10px 0; position:relative; padding-left:30px; } .features-list li::before { content:"✔"; position:absolute; left:0; color:#2ecc71; } .btn-cta { display:inline-block; background:#FF4500; color:#fff; padding:15px 30px; border-radius:50px; font-weight:bold; transition:transform .3s, box-shadow .3s; } .btn-cta:hover { transform:scale(1.1); box-shadow:0 0 15px #FF4500; background:#e03e00; } /* PARTNERS */ .partners { margin-top:-100px; padding:40px 20px; margin-bottom:-30px; text-align:center; background: url('layout/images/bg-partners.png') center/cover no-repeat; } .partner-logos img { max-width:150px; margin:0 15px; vertical-align:middle; transition:transform .3s; } .partner-logos img:hover { transform:scale(1.1); } /* COMPARATIVE */ .compare { background: url('layout/images/bg-compare.png') center/cover no-repeat; padding:60px 20px; text-align:center; } .compare h2 { font-size:28px; margin-bottom:40px; color:#FF4500; } .compare-table { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-bottom:30px; } .compare-table .col { background:#222; padding:20px; border-radius:8px; flex:1; max-width:320px; text-align:left; transition:transform .3s; } .compare-table .col:hover { transform:translateY(-5px); } .compare-table .generic { filter:brightness(0.9); } .compare-table .premium { border:2px solid #2ecc71; box-shadow:0 0 15px rgba(46,204,113,0.5); } .compare-table .col h3 { margin-bottom:15px; font-size:20px; color:#FFD700; } .compare-table .col li { margin:10px 0; font-size:16px; } /* PRICING */ .pricing { background: url('layout/images/bg-pricing.png') center/cover no-repeat; padding:60px 20px; text-align:center; } .pricing h2 { font-size:26px; margin-bottom:40px; } .pricing h2 span { color:#FF4500; } .plans { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; } .plan { background:#111; padding:20px; border-radius:8px; width:260px; position:relative; transition:transform .3s, box-shadow .3s; } .plan:hover { transform:translateY(-5px) scale(1.03); box-shadow:0 10px 20px rgba(255,69,0,0.5); } .plan.featured { border:2px solid #FF4500; } .plan h3 { font-size:18px; margin-bottom:15px; color:#FF4500; text-align:center; } .plan .ribbon { position:absolute; top:-5px; right:-5px; background:#2ecc71; color:#fff; padding:5px 10px; font-size:12px; font-weight:bold; transform:rotate(15deg); } .plan ul { list-style:none; margin-bottom:20px; text-align:left; } .plan li { margin:8px 0; font-size:15px; } .price { font-size:28px; font-weight:bold; margin-bottom:20px; color:#FFD700; } .btn-subscribe { display:block; background:#FF4500; color:#fff; padding:10px 0; border-radius:50px; font-weight:bold; transition:transform .3s, box-shadow .3s; } .btn-subscribe:hover { transform:scale(1.05); box-shadow:0 0 10px #FF4500; background:#e03e00; } /* DISPOSITIVOS SUPORTADOS */ .devices-section { background: url('layout/images/bg-devices.png') center/cover no-repeat; padding:60px 20px; text-align:center; } /* TRAILER */ .trailer { background: url('layout/images/bg-trailer.png') center/cover no-repeat; padding: 60px 20px; text-align: center; } .trailer .section-title { font-size: 2rem; color: #FFFFFF; margin-bottom: 20px; } .trailer video, .trailer iframe { width: 100%; max-width: 800px; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.7); } @media(max-width:768px) { .trailer video, .trailer iframe { max-width: 100%; } } .devices-section .section-title { color:##FFFFFF; margin-bottom:20px; font-size:1.6rem; } .devices-intro { font-size:1.1rem; margin-bottom:30px; } .xcloud-partner { margin:15px 0 30px; font-size:1.1rem; color:#00adef; display:flex; align-items:center; justify-content:center; gap:10px; } .xcloud-partner img { width:100px; height:auto; filter:brightness(1) drop-shadow(0 0 5px #00adef); } .device-logos { display:flex; flex-wrap:wrap; justify-content:center; gap:25px; margin-bottom:30px; } .device-logos img { width:80px; height:80px; object-fit:contain; background:#fff; padding:10px; border-radius:50%; transition:transform .3s, filter .3s; } .device-logos img:hover { transform:scale(1.1); filter:brightness(1.2); } .devices-tagline { font-size:1rem; margin-bottom:25px; } .testimonials-section { background: url('layout/images/bg-testimonials.png') center/cover no-repeat; padding:60px 20px; text-align:center; } .testimonials-section h2 { font-size: 30px; color: #FFFFF; text-shadow: 0 0 1px #000; margin-bottom: 40px; letter-spacing: 1px; } .testimonials { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; } .testimonial { background: rgba(0,0,0,0.65); border: 1px solid #FFFFF; border-radius: 10px; padding: 25px; max-width: 320px; color: #f1f1f1; box-shadow: 0 0 12px rgba(255,165,0,0.3); text-align: left; transition: transform 0.3s; } .testimonial:hover { transform: scale(1.03); } .testimonial p { font-style: italic; font-size: 16px; color: #ffddaa; line-height: 1.5; margin-bottom: 15px; position: relative; } .testimonial p::before { content: "“"; font-size: 32px; color: #FFA500; position: absolute; left: -15px; top: -10px; } .testimonial h4 { font-size: 17px; font-weight: bold; color: #FFA500; text-shadow: 1px 1px 2px #000; margin-bottom: 2px; } .testimonial small { font-size: 13px; color: #ccc; text-shadow: 1px 1px 1px #000; } /* COUNTDOWN */ .countdown-section { margin-left: -40px; margin-right: -40px; padding: 10px 30px; text-align: center; box-shadow: inset 0 0 40px #ff0000; } .countdown-section .section-title { font-size: 2rem; color: #FF3C00; text-shadow: 0 0 140px #ff0000, 0 0 2px #000; margin-bottom: 20px; font-weight: bold; letter-spacing: 1px; } .countdown-timer { font-size: 2.5rem; color: #ff1a1a; font-weight: bold; letter-spacing: 3px; text-shadow: 0 0 10px #ff0000, 0 0 2px #000; animation: blinkTimer 1s infinite; } @keyframes blinkTimer { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } } /* FAQ */ .faq-section { box-shadow: inset 0 0 0px #ff8c00; background: linear-gradient(145deg, #1c1c1c, #2e2e2e); margin-left: -40px; margin-right: -40px; padding: 60px 20px; } .faq-section .section-title { color: #FFA500; font-size: 1.8rem; text-align: center; margin-bottom: 30px; text-shadow: 0 0 4px #000; } .faq { max-width: 800px; margin: 0 auto; } .faq-item { margin-bottom: 20px; border-bottom: 1px solid #444; padding-bottom: 15px; transition: all 0.3s; } .faq-item:hover { background: rgba(255,165,0,0.05); border-color: #FFA500; } .question { font-size: 1.2rem; font-weight: bold; cursor: pointer; position: relative; padding-right: 25px; color: #fff; } .question::after { content: "+"; position: absolute; right: 0; top: 0; color: #FFA500; font-size: 1.3rem; transition: transform 0.3s; } .answer { display: none; margin-top: 10px; color: #ccc; font-size: 1rem; } .faq-item.open .answer { display: block; } .faq-item.open .question::after { transform: rotate(45deg); } /* CTA FINAL */ .final-cta { margin-left: -40px; margin-right: -40px; margin-bottom: -25px; background: linear-gradient(145deg, #1c1c1c, #2e2e2e); text-align: center; } .final-cta .section-title { color: #FFA500; font-size: 2rem; margin-bottom: 15px; text-shadow: 0 0 10px #000; letter-spacing: 1px; } .final-cta p { font-size: 1.1rem; color: #fff; margin-bottom: 25px; } /* Responsividade */ @media(max-width:768px){ .compare-table, .plans, .testimonials { flex-direction:column; align-items:center; } .device-logos img { width:60px; height:60px; } } /* HERO + TRAILER WRAPPER */ .hero-trailer-wrapper { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 30px; padding: 60px 20px; background: transparent; /* Deixa o degradê do body aparecer */ } /* Cada bloco ocupa metade em desktop, mínimo de 300px */ .hero-trailer-wrapper .hero, .hero-trailer-wrapper .trailer { flex: 1 1 300px; max-width: 600px; } /* Garante que o conteúdo do trailer fique centralizado verticalmente */ .hero-trailer-wrapper .trailer { display: flex; flex-direction: column; align-items: center; justify-content: center; } /* Responsivo: empilha no mobile */ @media (max-width: 768px) { .hero-trailer-wrapper { flex-direction: column; padding: 40px 10px; } .hero-trailer-wrapper .hero, .hero-trailer-wrapper .trailer { max-width: none; width: 100%; } } .btn-cta { animation: glow 1.8s infinite; } @keyframes glow { 0% { box-shadow: 0 0 10px #FF4500; } 50% { box-shadow: 0 0 20px #FFD700; } 100% { box-shadow: 0 0 10px #FF4500; } }