:root {
  --bg: #020202;
  --card: #151515;
  --card2: #101010;
  --white: #fff;
  --muted: #b8b8b8;
  --yellow: #ffd400;
  --green: #12e000;
  --green2: #06a900;
}
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.bully-container {
  max-width: 1130px;
}
.section-glow {
  position: relative;
  overflow: visible;
}

.section-glow:before {
  content: "";
  position: absolute;
  width: 900px;
  height: 860px;
  top: -95px;
  left: 50%;
  transform: translateX(-35%);
  background: radial-gradient(
    circle,
    rgba(255, 212, 0, 0.25) 0%,
    rgba(255, 212, 0, 0.14) 28%,
    rgba(255, 212, 0, 0.04) 52%,
    transparent 72%
  );
  z-index: -1;
  pointer-events: none;
}

.bully-header {
  padding: 48px 0 0;
}
.header-logos,
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.header-logos img:first-child,
.footer-logos img:first-child {
  width: 135px;
}
.header-logos img:last-child,
.footer-logos img:last-child {
  width: 250px;
}
.header-logos span,
.footer-logos span {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.55);
}
.bully-header .bully-container {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 28px;
}

.hero-bully {
  position: relative;
  overflow: visible;
  padding: 18px 0 70px;
  z-index: 1;
}
.hero-row {
  min-height: 455px;
}
.hero-content {
  padding-top: 35px;
}
.mini-title,
.section-title span,
.oferta-content span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.mini-title:before,
.section-title span:before,
.section-title span:after,
.oferta-content span:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--yellow);
  display: block;
}
.hero-content h1 {
  max-width: 460px;
  margin: 10px 0 18px;
  font-size: 43px;
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
}
.hero-content h1 strong,
.section-title h2 strong,
.oferta-content h2 strong {
  color: var(--yellow);
}
.hero-content p {
  max-width: 355px;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 18px;
}
.offer-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  text-transform: uppercase;
  line-height: 0.95;
}
.offer-line strong {
  color: var(--yellow);
  font-size: 28px;
  font-weight: 900;
  display: block;
}
.offer-line span {
  font-weight: 900;
  font-size: 26px;
  max-width: 265px;
}
.offer-line img {
  width: 52px;
  margin-left: 10px;
  /* transform: translateY(12px); */
  position: relative;
  left: -80px;
}
.btn-bully {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  min-height: 56px;
  padding: 16px 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, var(--green), var(--green2));
  box-shadow: 0 0 28px rgba(18, 224, 0, 0.18);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
  transition: 0.25s ease;
}
.btn-bully:hover {
  transform: translateY(-2px);
  color: #fff;
  filter: brightness(1.05);
}
.hero-image {
  margin-left: -30px;
  margin-top: -5px;
}

.produtos-bully {
  padding: 22px 0 95px;
}
.section-title {
  margin-bottom: 46px;
}
.section-title h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}
.section-title p {
  font-size: 12px;
  color: #aaa;
  margin: 8px 0 0;
}
.produto-card {
  position: relative;
  min-height: 314px;
  height: 100%;
  border-radius: 10px;
  background: #131313;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px 24px 22px;
}
.tag-proteina {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--yellow);
  color: #000;
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.produto-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.produto-img img {
  max-height: 188px;
  margin: auto;
}
.produto-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 4px;
}
.produto-card p {
  font-size: 11px;
  color: #aaa;
  margin: 0 0 14px;
}
.produto-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 4px;
  background: #080808;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.border-section {
  position: relative;
  padding-top: 82px;
}

.border-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.beneficios-bully {
  padding-bottom: 86px;
}
.beneficio-card {
  min-height: 94px;
  background: #151515;
  border-radius: 9px;
  padding: 20px 22px;
}
.beneficio-card span {
  width: 34px;
  height: 28px;
  border-radius: 6px;
  background: var(--yellow);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}
.beneficio-card h3 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.beneficio-card p {
  font-size: 10px;
  color: #aaa;
  margin: 0;
}

.depoimentos-bully {
  padding: 30px 0 58px;
}
.depoimento-card {
  min-height: 137px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px 28px;
}
.stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.depoimento-card p {
  font-size: 11px;
  line-height: 1.35;
  color: #ddd;
  margin: 0 0 11px;
}
.depoimento-card strong {
  color: var(--yellow);
  font-size: 10px;
  text-transform: uppercase;
}

.oferta-final-bully {
  padding: 10px 0 68px;
}
/* .cachorros-oferta {
  height: 450px;
  object-fit: cover;
} */
.oferta-box {
  max-width: 860px;
  margin: 0 auto;
  border-radius: 22px;
  background: linear-gradient(90deg, #151515 0%, #171706 48%, #191919 100%);
  position: relative;
  overflow: visible;
  padding: 45px 45px 35px;
}
.oferta-content h2 {
  font-size: 39px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  margin: 10px 0 13px;
}
.oferta-content p {
  font-size: 12px;
  color: #cfcfcf;
  margin-bottom: 25px;
}
.oferta-img {
  margin: -115px -35px -55px -20px;
}

.footer-bully {
  padding: 0 0 42px;
}
.footer-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 38px 0 22px;
}
.footer-bully p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #eee;
  margin: 0;
  font-weight: 700;
}
.footer-bully p img {
  width: 92px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

@media (max-width: 991px) {
  .bully-header {
    padding-top: 28px;
  }
  .hero-bully {
    text-align: center;
    padding-bottom: 45px;
  }
  .hero-content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .offer-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  .offer-line img {
    display: none;
  }
  .hero-image {
    margin: 25px auto 0;
    max-width: 680px;
  }
  .produtos-bully {
    padding-bottom: 70px;
  }
  .oferta-box {
    text-align: center;
    padding: 38px 26px 0;
  }
  .oferta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .oferta-img {
    margin: 25px auto -25px;
  }
}
@media (max-width: 575px) {
  .header-logos img:first-child,
  .footer-logos img:first-child {
    width: 112px;
  }
  .header-logos img:last-child,
  .footer-logos img:last-child {
    width: 180px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .offer-line strong,
  .offer-line span {
    font-size: 22px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .btn-bully {
    width: 100%;
    min-width: 0;
  }
  .produto-card {
    min-height: 300px;
  }
  .oferta-content h2 {
    font-size: 28px;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

.whatsapp img {
  position: fixed;
  z-index: 8;
  bottom: 20px;
  right: 50px;
  width: 50px;
  height: 50px;
  opacity: 0.7;
  transition: ease 0.8s all;
}

@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }

  .section-glow {
    overflow: hidden;
  }

  .section-glow::before {
    width: 520px;
    height: 520px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
  }

  .hero-bully.section-glow {
    overflow: hidden;
  }

  .hero-image {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-image img {
    max-width: 100%;
  }
}
