* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top center, rgba(255, 0, 0, 0.07), transparent 30%),
    radial-gradient(circle at bottom center, rgba(255, 0, 0, 0.04), transparent 35%),
    linear-gradient(180deg, #050505 0%, #080808 40%, #050505 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 70px;
  overflow-x: hidden;
  position: relative;
}

/* FUNDO GLOBAL */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 0, 0.05), transparent 20%),
    radial-gradient(circle at 85% 15%, rgba(255, 0, 0, 0.04), transparent 22%),
    radial-gradient(circle at 50% 85%, rgba(255, 0, 0, 0.03), transparent 28%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 70px 70px;
}

/* CANVAS GLOBAL */
canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* TOPO */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 0, 0, 0.15);
}

.logo-top img {
  width: 110px;
  height: auto;
  cursor: pointer;
  transition: 0.3s ease;
}

.logo-top img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px red);
}

.top-btn-link {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.top-btn-link:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px red;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 0, 0, 0.06) 0%, transparent 28%),
    linear-gradient(180deg, #040404 0%, #070707 55%, #080808 100%);
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 65%);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  pointer-events: none;
}

.logo {
  width: 350px;
  max-width: 90%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px red);
  transition: transform 0.3s;
  animation: flutuar 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.logo:hover {
  transform: scale(1.05);
}

.hero p {
  margin-top: 10px;
  font-size: 20px;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  max-width: 700px;
  line-height: 1.6;
}

@keyframes flutuar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* BOTÕES GERAIS */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff0000;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  font-weight: 700;
}

.btn:hover {
  background: #cc0000;
  transform: scale(1.05);
  box-shadow: 0 0 20px red;
}

/* SECTIONS GERAIS */
section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 0, 0, 0.010) 0%,
    transparent 20%,
    transparent 80%,
    rgba(255, 0, 0, 0.012) 100%
  );
}

h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #ff0000;
  margin-bottom: 30px;
  font-size: 42px;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

/* PRICING */
.pricing-section {
  position: relative;
  padding: 120px 30px;
  background: linear-gradient(180deg, #080808 0%, #050505 50%, #070707 100%);
  overflow: hidden;
}

.pricing-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 65%);
  filter: blur(90px);
  pointer-events: none;
}

.pricing-bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.pricing-bg-left {
  background: #ff0000;
  left: -180px;
  bottom: -120px;
}

.pricing-bg-right {
  background: #ff0000;
  right: -140px;
  top: -100px;
}

.pricing-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-family: 'Manrope', sans-serif;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #d9d9d9;
  margin-bottom: 18px;
}

.pricing-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  min-height: 420px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(8, 8, 8, 0.96));
  border: 1px solid rgba(255, 0, 0, 0.10);
  border-radius: 22px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.22);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.10);
}

.featured-card {
  background: linear-gradient(145deg, rgba(35, 8, 8, 0.96), rgba(10, 10, 10, 0.96));
  border-color: rgba(255, 0, 0, 0.18);
}

.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.plan-top h3 {
  font-size: 25px;
  font-weight: 800;
  color: #ff2a2a;
}

.plan-top span {
  font-size: 17px;
  font-weight: 800;
  color: #ff4d4d;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.plan-features li::before {
  content: "▣";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.fake-slider {
  margin-top: auto;
  margin-bottom: 24px;
}

.fake-slider span {
  display: block;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.slider-line {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  position: relative;
}

.slider-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff2a2a;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 16px rgba(255, 0, 0, 0.5);
}

.plan-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.plan-price {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.plan-price small {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 44px;
  padding: 0 20px;
  background: #ff2a2a;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.buy-btn:hover {
  transform: scale(1.05);
  background: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.35);
}

/* SHOWCASE */
.projetos-showcase {
  position: relative;
  padding: 100px 20px;
  background: #050505;
  overflow: hidden;
}

.proj-bg-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 18%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.04), transparent 22%),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.03), transparent 20%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.03), transparent 18%);
  filter: blur(35px);
  opacity: 0.55;
  animation: smokeMove 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes smokeMove {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  100% {
    transform: translateX(-20px) translateY(15px) scale(1.04);
  }
}

.proj-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.proj-glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(255, 0, 0, 0.14);
  top: 40px;
  left: -80px;
}

.proj-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(121, 68, 255, 0.10);
  bottom: 40px;
  right: -80px;
}

.proj-bg-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,0,0,0.18) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,170,0,0.12) 1.5px, transparent 1.5px);
  background-size: 220px 220px, 320px 320px, 280px 280px;
  background-position: 0 0, 60px 100px, 120px 40px;
  animation: particlesFloat 16s linear infinite;
  opacity: 0.7;
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

.projetos-showcase-container {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.projetos-header {
  text-align: center;
  margin-bottom: 34px;
}

.projetos-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9d9d9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.projetos-header h2 {
  font-size: 54px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.projetos-header h2 span {
  color: #ff0000;
}

.projetos-header p {
  color: #a8a8a8;
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.projetos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.projeto-card,
.projeto-social-card {
  position: relative;
  text-decoration: none;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  transition: .28s ease;
}

.projeto-card:hover,
.projeto-social-card:hover {
  transform: translateY(-5px);
}

.projeto-card-small {
  min-height: 270px;
  padding: 22px;
}

.projeto-card-wide {
  grid-column: span 2;
  min-height: 220px;
  padding: 22px;
}

.projeto-number {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  z-index: 3;
}

.projeto-icon-area {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.05);
}

.projeto-icon-area img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.08));
}

.wide-icon {
  height: 110px;
  margin-top: 12px;
}

.projeto-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.05;
}

.projeto-content p {
  color: #c7c7c7;
  font-size: 14px;
  line-height: 1.75;
}

.samp-card {
  background: linear-gradient(180deg, rgba(255,0,0,0.12), rgba(255,255,255,0.02));
  border-color: rgba(255,0,0,0.16);
}

.fivem-card {
  background: linear-gradient(180deg, rgba(255,180,0,0.14), rgba(255,255,255,0.02));
  border-color: rgba(255,180,0,0.14);
}

.blood-card {
  background: linear-gradient(180deg, rgba(125,76,255,0.14), rgba(255,255,255,0.02));
  border-color: rgba(125,76,255,0.18);
}

.samp-card:hover {
  box-shadow: 0 0 30px rgba(255,0,0,0.16), 0 14px 35px rgba(0,0,0,0.34);
}

.fivem-card:hover {
  box-shadow: 0 0 30px rgba(255,180,0,0.16), 0 14px 35px rgba(0,0,0,0.34);
}

.blood-card:hover {
  box-shadow: 0 0 30px rgba(125,76,255,0.18), 0 14px 35px rgba(0,0,0,0.34);
}

.projeto-social-card {
  min-height: 102px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.projeto-social-card-wide {
  grid-column: span 3;
}

.social-icon-box {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.social-icon-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.youtube-box {
  background: rgba(255,0,0,0.10);
  border-color: rgba(255,0,0,0.16);
}

.projeto-social-card h4 {
  font-size: 22px;
  margin-bottom: 6px;
}

.projeto-social-card p {
  color: #b6b6b6;
  font-size: 13px;
  line-height: 1.65;
}

/* SERVIÇOS */
#projects {
  padding-top: 100px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.card {
  width: 250px;
  padding: 20px;
  background: #111;
  border-radius: 15px;
  transition: 0.3s;
  border: 1px solid rgba(255, 0, 0, 0.55);
  box-shadow: 0 0 14px rgba(255, 0, 0, 0.05);
  overflow: hidden;
  font-weight: 700;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.18);
}

/* INFO */
.info-bg {
  position: relative;
  background: linear-gradient(180deg, #070707 0%, #050505 50%, #070707 100%);
  padding: 120px 20px;
  margin: 100px 0;
  overflow: hidden;
}

.info-bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.035), transparent 65%);
  filter: blur(90px);
  pointer-events: none;
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.info-cards {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0;
}

.info-grid {
  width: 100%;
  max-width: 1250px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.info-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 34px 26px;
  min-height: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.04);
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.22);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.10);
}

.info-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 28px;
  background: #161616;
  color: #ff0000;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.35);
}

.info-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.info-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  max-width: 100%;
}

/* CONTATO */
.contact-section {
  padding: 90px 20px;
}

.contact-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 2;
  position: relative;
  z-index: 2;
}

/* WHATSAPP FIXO */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 74px;
  height: 74px;
  background: linear-gradient(180deg, #ff1a1a 0%, #ff0000 100%);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  z-index: 999;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.9);
}

.whatsapp-btn img {
  width: 50px;
  height: 50px;
  display: block;
  object-fit: contain;
}

/* BOTÃO SORTEIO */
.btn-sorteio {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(180deg, #ff1a1a 0%, #c40000 100%);
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 20px rgba(255, 0, 0, 0.35),
    0 0 45px rgba(255, 0, 0, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  animation: sorteioFloat 2.8s ease-in-out infinite;
}

.btn-sorteio:hover {
  transform: translateY(-50%) scale(1.06);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 25px rgba(255, 0, 0, 0.50),
    0 0 60px rgba(255, 0, 0, 0.28);
}

.btn-sorteio-icon {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-sorteio-texto {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

@keyframes sorteioFloat {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

/* MODAL SORTEIO */
.sorteio-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at center, rgba(255, 0, 0, 0.08), transparent 35%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sorteio-box {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,20,20,0.98) 0%, rgba(7,7,7,0.98) 100%);
  border: 1px solid rgba(255, 40, 40, 0.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 0 35px rgba(255, 0, 0, 0.16),
    0 0 90px rgba(255, 0, 0, 0.08),
    0 20px 60px rgba(0,0,0,0.55);
  animation: abrirSorteioAnim .35s ease;
}

@keyframes abrirSorteioAnim {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sorteio-topo-luz {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,0,0.28) 0%, rgba(255,0,0,0.10) 35%, rgba(255,0,0,0.00) 70%);
  filter: blur(25px);
  pointer-events: none;
}

.sorteio-fechar {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transition: .25s ease;
  backdrop-filter: blur(8px);
}

.sorteio-fechar:hover {
  background: rgba(255, 0, 0, 0.18);
  color: #ff4d4d;
  transform: rotate(90deg) scale(1.05);
}

.sorteio-imagem-area {
  position: relative;
  padding: 34px 34px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(255,0,0,0.10), transparent 60%);
}

.sorteio-img {
  display: block;
  max-width: 100%;
  max-height: 290px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(255, 0, 0, 0.18))
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.sorteio-conteudo {
  padding: 10px 32px 32px;
  text-align: center;
}

.sorteio-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.18);
  color: #ff5b5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.sorteio-conteudo h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}

.sorteio-subtexto {
  margin: 0 0 20px;
  color: #b8b8b8;
  font-size: 16px;
}

.sorteio-info {
  margin: 0 auto 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}

.sorteio-info p {
  margin: 0 0 14px;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 1.6;
}

.sorteio-info strong {
  color: #ff2b2b;
}

.sorteio-info ul {
  margin: 0;
  padding-left: 18px;
  color: #f0f0f0;
}

.sorteio-info li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #d4d4d4;
}

.sorteio-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .5px;
  background: linear-gradient(180deg, #ff1a1a 0%, #b80000 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 10px 30px rgba(255, 0, 0, 0.25);
  transition: .25s ease;
}

.sorteio-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 14px 36px rgba(255, 0, 0, 0.34);
}

/* FOOTER */
.footer-red {
  margin-top: 80px;
  padding: 50px 20px 20px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 -20px 60px rgba(255, 0, 0, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-left h2 {
  font-size: 28px;
  color: #fff;
}

.footer-left span {
  color: #ff0000;
}

.footer-left p {
  margin-top: 10px;
  color: #aaa;
  line-height: 1.7;
}

.footer-center h3,
.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
}

.footer-center ul {
  list-style: none;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center a,
.footer-right a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
  color: #ff0000;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-title {
    font-size: 44px;
  }
}

@media (max-width: 980px) {
  .projetos-grid {
    grid-template-columns: 1fr;
  }

  .projeto-card-wide,
  .projeto-social-card-wide {
    grid-column: span 1;
  }

  .projetos-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }
}

@media (max-width: 700px) {
  .info-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }

  .pricing-title {
    font-size: 34px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .plan-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .buy-btn {
    width: 100%;
  }

  .top-bar {
    padding: 0 15px;
  }

  .logo-top img {
    width: 90px;
  }

  .top-btn-link {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero p {
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .btn-sorteio {
    left: 10px;
    min-width: 130px;
    padding: 12px 14px;
    border-radius: 15px;
    gap: 8px;
  }

  .btn-sorteio-icon {
    font-size: 18px;
  }

  .btn-sorteio-texto {
    font-size: 12px;
  }

  .sorteio-box {
    max-width: 100%;
    border-radius: 22px;
  }

  .sorteio-imagem-area {
    padding: 28px 20px 8px;
  }

  .sorteio-img {
    max-height: 220px;
  }

  .sorteio-conteudo {
    padding: 8px 20px 24px;
  }

  .sorteio-conteudo h2 {
    font-size: 32px;
  }

  .sorteio-info {
    padding: 16px;
  }

  .sorteio-cta {
    width: 100%;
    min-width: 0;
  }

  .projetos-showcase {
    padding: 75px 16px;
  }

  .projetos-header h2 {
    font-size: 32px;
  }

  .projeto-card-small,
  .projeto-card-wide,
  .projeto-social-card {
    padding: 18px;
    border-radius: 20px;
  }

  .projeto-content h3 {
    font-size: 24px;
  }

  .projeto-social-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section p {
    font-size: 16px;
  }

  .whatsapp-btn {
    width: 64px;
    height: 64px;
  }

  
  .whatsapp-btn img {
    width: 42px;
    height: 42px;
  }
}