*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e50914;
  --primary-dark: #9f0000;
  --primary-soft: #ff4b4b;
  --primary-glow: #ff2a2a;
  --bg-dark: #0d0d0d;
  --bg-darker: #080808;
  --bg-card: rgba(255, 255, 255, 0.04);
  --white: #f5f5f5;
  --white-soft: rgba(245, 245, 245, 0.88);
  --text-muted: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 24px 60px rgba(0, 0, 0, 0.48);
  --radius: 16px;
  --header-height: 96px;
  --container-width: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.1), transparent 25%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}

img,
video,
svg,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
.title,
.about-title,
.section-header h2,
.section-bonus-header h2,
.blog-header h2,
.cursos-header h2,
.vip-text h2,
.inscricao-texto h2,
.cta-box h2,
.footer-col h4,
.footer-col1 h4,
.footer-col2 h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

button,
.btn,
.highlight,
.btn-footer {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.container {
  width: min(var(--container-width), 92%);
  margin: 0 auto;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-glow);
  outline-offset: 4px;
}

body::-webkit-scrollbar {
  width: 6px;
}

body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 999px;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 5, 5, 0.44);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    linear-gradient(to right, rgba(179, 0, 0, 0.14), rgba(13, 13, 13, 0.68));
}

.navbar-container {
  position: relative;
  z-index: 2;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

.brand:hover .brand-text {
  color: var(--primary-glow);
}

.main-nav {
  margin-left: auto;
}

.main-nav.active {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
  color: var(--primary-glow);
}

.dropdown-toggle {
  appearance: none;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 0.78rem;
  opacity: 0.85;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 250px;
  padding: 10px 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.96);
  box-shadow: var(--shadow);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-menu li a:hover {
  background: rgba(229, 9, 20, 0.15);
  color: var(--primary-glow);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.btn-primary {
  position: relative;
  z-index: 1;
  border: none;
  color: #b30000;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.92));
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.45);
  animation: pulseGlow 2s infinite;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 42, 42, 0.85);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px solid rgba(255, 42, 42, 0.55);
  border-radius: inherit;
  animation: pulseRing 2s infinite;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  background: #ff2b2b;
  color: #fff;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn-footer:hover {
  background: #e11f1f;
  transform: translateY(-2px);
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.38);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.85);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.38);
  }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* HERO / BANNER */
.banner.bbb27-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 0 90px;
  overflow: hidden;
  background:
    
    url("../img/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner.bbb27-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.08) 0%, transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(255,255,255,0.05) 0%, transparent 14%),
    radial-gradient(circle at 8% 84%, rgba(255,255,255,0.04) 0%, transparent 18%),
    radial-gradient(circle at 92% 82%, rgba(255,255,255,0.05) 0%, transparent 18%);
  opacity: 0.65;
  pointer-events: none;
}

.banner.bbb27-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to right, rgba(90, 0, 0, 0.55), rgba(90, 0, 0, 0.18) 35%, rgba(90,0,0,0.18) 65%, rgba(90, 0, 0, 0.55)),
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
  pointer-events: none;
}

.banner-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height) - 160px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
  width: 100%;
  padding: 20px 16px 0;
  margin-left: 80px;
}

.title,
.subtitle,
.subtitle1 {
  display: block;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(245, 245, 245, 0.78);
  border-radius: 999px;
  background: rgba(179, 0, 0, 0.42);
  color: var(--white-soft);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.title {
  margin: 0 0 16px;
  font-family: "Anton", sans-serif !important;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
}
/*dna**/

.dna-svg-wrap {
  --dna-width: clamp(300px, 38vw, 580px);

  position: relative;
  width: var(--dna-width);
  display: block;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.28));
}

.dna-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.dna-svg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.dna-svg-text-mask,
.dna-svg-text-stroke,
.dna-svg-text-glow {
  font-family: "Anton", sans-serif;
  font-size: 230px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  transform-origin: center;
}

.dna-svg-text-mask {
  fill: white;
  transform: skewX(-10deg);
}

.dna-svg-text-stroke {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 1px;
  paint-order: stroke fill;
  transform: skewX(-10deg);
}

.dna-svg-text-glow {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 3px;
  paint-order: stroke fill;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.35));
  transform: skewX(-10deg);
}

.subtitle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  max-width: 720px;
  margin: 0 0 12px;
  padding: 16px 42px;
  border-radius: 24px 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f8f5f3;
  background: linear-gradient(180deg, rgba(125,0,0,0.92) 0%, rgba(92,0,0,0.98) 100%);
  border: 3px solid rgba(255, 245, 240, 0.92);
  box-shadow:
    0 0 0 2px rgba(255, 60, 60, 0.18) inset,
    0 0 18px rgba(255, 42, 42, 0.45),
    0 10px 24px rgba(0,0,0,0.26);
  transform: skewX(-14deg);
  white-space: nowrap;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.28),
    0 2px 6px rgba(0,0,0,0.26);
}

.subtitle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 26px 0;
  border: 2px solid rgba(255, 65, 65, 0.9);
  box-shadow:
    0 0 12px rgba(255, 48, 48, 0.72),
    0 0 24px rgba(255, 30, 30, 0.28);
  pointer-events: none;
}

.subtitle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.02) 38%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
}

.subtitle1 {
  margin: 0 0 30px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.4rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: rgba(255, 248, 243, 0.96);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.16),
    0 2px 8px rgba(0,0,0,0.28);
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.banner-actions .btn,
.banner-actions a {
  position: static;
  left: auto;
  top: auto;
  width: auto;
}

/* SOBRE / DEPOIMENTOS */
.about {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.1), transparent 25%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}

.about.depoimentos-bbb27,
.depoimentos-bbb27 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-container {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 48px;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-image img {
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  filter:
    drop-shadow(0 30px 80px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 30px rgba(229, 9, 20, 0.18));
}

.about-content,
.about-content-depoimento {
  max-width: 720px;
}

.about-content-depoimento {
  margin-top: 40px;
}

.about-title {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  color: var(--white);
}

.about-text,
.about-text-depoimento {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--white-soft);
}

.p1 {
  display: grid;
  gap: 2px;
}

.about-highlights,
.depoimentos-grid {
  align-items: stretch;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 30px;
}

.depoimentos-grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-card,
.about-bonus-card,
.topic-card,
.cta-box,
.inscricao-form-card,
.vip-box,
.card,
.blog-card,
.curso-card {
  min-width: 0;
}

.about-card,
.about-bonus-card,
.topic-card {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.about-card strong,
.about-bonus-card strong,
.topic-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: var(--white);
}

.about-card span,
.about-bonus-card span,
.topic-card p {
  display: block;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--white-soft);
}

.depoimento-card {
  min-height: 160px;
}

.depoimento-destaque {
  margin: 26px 0;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.depoimento-destaque strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--primary-soft);
}

.depoimento-destaque p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--white-soft);
  margin-bottom: 12px;
}

.depoimento-destaque span {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.68);
}

.container-botao,
.container-botao-depoimento {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

/* SEÇÕES PADRÃO */
.section-padrao {
  padding: 88px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.363), transparent 28%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-bonus {
  padding: 88px 20px;
  background: url(./img/bonus.png) no-repeat center center/cover;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-padrao .container,
.section-bonus .container,
.cursos .container,
.blog .container,
.inscricoes-reality .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header,
.section-bonus-header,
.blog-header,
.cursos-header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2,
.section-bonus-header h2,
.blog-header h2,
.cursos-header h2,
.midia-kit h2 {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.95;
}

.section-header h2 {
  color: var(--white);
}

.section-bonus-header h2 {
  color: var(--primary);
  text-shadow: #000 1px 1px 4px;
}

.section-header p,
.blog-header p,
.cursos-header p,
.section-bonus-header p,
.midia-kit .sub {
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-header p,
.blog-header p {
  color: var(--white-soft);
}

.section-bonus-header p {
  color: var(--primary-dark);
}

/* MÍDIA KIT */
.midia-kit {
  padding: 90px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #0b0b0b, #120000);
  color: #fff;
  text-align: center;
}

.midia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 42px 0 48px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 0, 0, 0.1);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.4);
}

.card h3 {
  font-size: 1rem;
  color: #bbb;
}

.numero {
  font-size: 2rem;
  font-weight: 800;
  color: #ff2b2b;
  margin: 10px 0;
}

.card span {
  font-size: 0.9rem;
  color: #888;
}

.midia-cta p {
  margin-bottom: 20px;
  font-size: 1.08rem;
}

/* PRESENÇA VIP */
.presenca-vip {
  padding: 96px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 80, 80, 0.12), transparent 30%),
    linear-gradient(180deg, #090909 0%, #140202 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vip-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.vip-tag {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.vip-text h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin-bottom: 22px;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 760px;
}

.vip-text h2 span {
  color: #ff4a4a;
}

.vip-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-bottom: 34px;
}

.vip-benefits {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.vip-item {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.vip-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.vip-item p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.vip-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vip-card {
  display: flex;
  justify-content: center;
}

.vip-box {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.vip-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 800;
}

.vip-box ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.vip-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff3a3a;
  font-size: 24px;
  line-height: 1;
}

.vip-note {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 58, 58, 0.08);
  border: 1px solid rgba(255, 58, 58, 0.16);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  font-size: 15px;
}

/* BLOG */
.blog {
  padding: 96px 20px;
  background: linear-gradient(180deg, #0b0b0b, #120000);
  color: #fff;
  overflow: hidden;
}

.blog-carousel {
  position: relative;
  overflow: hidden;
}

.blog-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.blog-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: blogScroll 28s linear infinite;
}

.blog-carousel:hover .blog-track {
  animation-play-state: paused;
}

.blog-card {
  flex: 0 0 320px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 0, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #ff3a3a;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.blog-content h3 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 15px;
  color: #c7c7c7;
  line-height: 1.6;
  margin-bottom: 18px;
}

.blog-link {
  margin-top: auto;
  color: #fff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #ff3a3a;
}

.blog-cta {
  text-align: center;
  margin-top: 42px;
}

.blog-carousel::before,
.blog-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.blog-carousel::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0b, transparent);
}

.blog-carousel::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0b, transparent);
}

@keyframes blogScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 12px));
  }
}

/* CURSOS */
.cursos {
  position: relative;
  overflow: hidden;
  padding: 96px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

.cursos::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 43, 43, 0.30) 0%, rgba(255, 43, 43, 0.14) 35%, transparent 72%);
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
  animation: blobOne 14s ease-in-out infinite alternate;
}

.cursos::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.24) 0%, rgba(255, 0, 0, 0.10) 38%, transparent 74%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: blobTwo 18s ease-in-out infinite alternate;
}

.cursos .container,
.section-padrao .container,
.section-bonus .container,
.blog .container,
.inscricoes-reality .container {
  position: relative;
  z-index: 2;
}

.cursos-header h2,
.cursos-header p,
.curso-content h3,
.desc,
.preco span,
.preco strong,
.qualidade,
.qualidade span {
  color: #111;
}

.cursos-header p,
.desc,
.qualidade span,
.preco span {
  color: #555;
}

.cursos-grid,
.section-padrao .cursos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.curso-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}

.curso-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.curso-img {
  position: relative;
  overflow: hidden;
}

.curso-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.curso-card:hover .curso-img img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff2b2b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 43, 43, 0.25);
}

.curso-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.curso-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.desc {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.qualidade {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ffb400;
  font-weight: 600;
}

.qualidade span {
  margin-left: 5px;
  font-weight: 500;
}

.curso-card ul {
  padding-left: 18px;
  margin-bottom: 15px;
  color: #444;
  list-style: disc;
}

.curso-card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.preco {
  margin-top: auto;
  margin-bottom: 15px;
}

.preco span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.preco strong {
  font-size: 20px;
  color: #ff2b2b;
  font-weight: 800;
}

/* CTA / OFERTA */
.destaque {
  position: relative;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 34px;
  border-radius: 26px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.cta-box h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--white);
}

.cta-box .preco {
  margin-bottom: 22px;
}

.cta-box .preco strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
}

.cta-box .preco span {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
  color: var(--white-soft);
}

.real {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.pagamento-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 14px;
}

.pagamento-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-soft);
}

.pagamento-item svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.pagamento-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* GARANTIA */
.section-garantia-padrao,
.section-garantia {
  padding: 88px 20px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 0, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #090909 0%, #120000 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* INSCRIÇÕES / FORM */
.inscricoes-reality {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 45%, rgba(0, 0, 0, 0.72) 100%),
    rgba(120, 0, 0, 0.18);
}

.inscricao-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.inscricao-texto {
  color: #fff;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ff4b4b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.inscricao-texto h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 18px;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 700px;
}

.inscricao-texto p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.inscricao-topics {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.inscricao-form-card {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.inscricao-form {
  display: grid;
  gap: 16px;
}

.inscricao-form h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #fff;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255,255,255,0.86);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.form-group select option {
  color: #111;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.46);
}

/* VÍDEO CARD */
.banner-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}

.video-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: #050505;
  box-shadow:
    var(--shadow-strong),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.06) 35%,
    rgba(0, 0, 0, 0.02) 60%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.video-card:hover::after,
.video-card:focus-within::after {
  opacity: 1;
}

.video-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 26px;
  background: rgba(229, 9, 20, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(229, 9, 20, 0.5);
}

.video-card.playing .video-play-center {
  opacity: 0;
  pointer-events: none;
}

.video-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.25s ease;
}

.video-card:hover .video-controls,
.video-card:focus-within .video-controls {
  opacity: 1;
  transform: translateY(0);
}

.video-progress {
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.video-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: var(--primary);
}

.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.video-controls-left,
.video-controls-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-icon-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
}

.video-volume-wrap input {
  width: 110px;
  height: 4px;
  padding: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.video-speed-wrap select {
  min-width: 72px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  appearance: none;
}

/* FOOTER */
.site-footer {
  padding: 72px 20px 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.1), transparent 32%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 26px;
}

.footer-brand {
  display: inline-flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  margin-bottom: 18px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  max-width: 340px;
}

.footer-brand-text p,
.footer-contact-text,
.footer-col ul li a,
.footer-col1 ul li a {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.footer-col,
.footer-col1,
.footer-col2 {
  min-width: 0;
}

.footer-col h4,
.footer-col1 h4,
.footer-col2 h4 {
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #fff;
}

.footer-col ul,
.footer-col1 ul {
  display: grid;
  gap: 10px;
}

.footer-col ul li a:hover,
.footer-col1 ul li a:hover {
  color: var(--primary-glow);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 58, 58, 0.35);
  background: rgba(255, 58, 58, 0.12);
}

.social-link.instagram:hover { background: rgba(225, 48, 108, 0.16); }
.social-link.youtube:hover { background: rgba(255, 0, 0, 0.16); }
.social-link.tiktok:hover { background: rgba(255, 255, 255, 0.12); }
.social-link.telegram:hover { background: rgba(0, 136, 204, 0.16); }
.social-link.facebook:hover { background: rgba(24, 119, 242, 0.16); }
.social-link.hotmart:hover { background: rgba(244, 98, 58, 0.16); }

.footer-contact-text {
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #8f8f8f;
  font-size: 13px;
}

.footer-bottom strong {
  color: #fff;
}

/* ANIMAÇÕES AUXILIARES */
@keyframes blobOne {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(120px, 40px) scale(1.08); }
  50% { transform: translate(220px, 120px) scale(0.95); }
  75% { transform: translate(80px, 220px) scale(1.05); }
  100% { transform: translate(180px, 100px) scale(1.12); }
}

@keyframes blobTwo {
  0% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-80px, -60px) scale(1.06); }
  50% { transform: translate(-180px, -140px) scale(0.94); }
  75% { transform: translate(-60px, -220px) scale(1.08); }
  100% { transform: translate(-160px, -100px) scale(1.02); }
}

/* =========================
   AJUSTES FINOS HERO
   ========================= */

/* move o bloco do hero um pouco mais para a direita e mantém alinhado */
.banner-content {
  margin-left: 115px;
  align-items: flex-start;
  text-align: left;
}

/* DNA com borda branca mais forte e mais legível */
.dna {
  margin-left: 18px;
}

.dna::before {
  -webkit-text-stroke: 2.8px rgba(255, 255, 255, 0.98);
  text-shadow:
    0 0 10px rgba(255,255,255,0.35),
    0 2px 8px rgba(0,0,0,0.42),
    0 0 22px rgba(255,255,255,0.16);
}

/* brilho superior um pouco mais limpo */
.dna::after {
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.28) 18%,
    rgba(255,255,255,0.05) 34%,
    rgba(255,255,255,0) 48%,
    rgba(255,255,255,0) 100%
  );
}

/* caixa DO REALITY mais alinhada com o DNA */
.subtitle {
  margin-left: 0;
  align-self: flex-start;
}

/* assinatura alinhada com o conjunto */
.subtitle1 {
  margin-left: 4px;
  align-self: flex-start;
}

/* botões do hero alinhados */
.banner-actions {
  justify-content: flex-start;
  align-items: center;
}

/* =========================
   BOTÃO COM MESMO PADRÃO
   ========================= */

/* aplique esta classe no botão que está diferente */
.btn-match,
.inscricao-form button,
.inscricao-form input[type="submit"],
.inscricao-form .submit-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  width: 100%;
  padding: 0 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  color: #b30000;

  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.92));
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
  animation: pulseGlow 2s infinite;
}

.btn-match:hover,
.inscricao-form button:hover,
.inscricao-form input[type="submit"]:hover,
.inscricao-form .submit-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(255, 42, 42, 0.85);
}

.btn-match::after,
.inscricao-form button::after,
.inscricao-form input[type="submit"]::after,
.inscricao-form .submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px solid rgba(255, 42, 42, 0.55);
  border-radius: inherit;
  animation: pulseRing 2s infinite;
}

/* =========================
   FOOTER / SVG CENTRALIZADO
   ========================= */

/* deixa o bloco da esquerda mais equilibrado */
.footer-brand {
  align-items: flex-start;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* centraliza os ícones no meio visual da coluna */
.footer-socials {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 12px;
  justify-content: center;
  align-content: center;
  margin-top: 0;
}

/* se os ícones estiverem dentro de uma coluna ao lado do texto, isso ajuda a centralizar verticalmente */
.footer-col2,
.footer-socials-wrap,
.socials-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* botão social melhor alinhado */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
}

/* =========================
   ALINHAMENTO GERAL DE BOTÕES
   ========================= */

.btn i,
.btn svg,
.btn-secondary i,
.btn-secondary svg,
.btn-primary i,
.btn-primary svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

.banner-content{
position: relative;
margin-left: 350px;
}
.dna{
position: relative;
margin-left: 15px;
}

/*login*/

/* =========================
   LOGIN DROPDOWN
   ========================= */

.login-dropdown {
  padding: 16px;
  min-width: 280px;
}

/* container interno */
.login-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* inputs */
.login-box input {
  width: 100%;
  height: 48px;
  padding: 0 14px;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.05);
  color: #fff;

  font-size: 0.95rem;

  transition: 0.25s ease;
}

/* placeholder */
.login-box input::placeholder {
  color: rgba(255,255,255,0.45);
}

/* focus */
.login-box input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.25);
}

/* botão */
.login-box .btn {
  width: 100%;
  height: 50px;
  margin-top: 4px;
}

/* link cadastrar */
.login-link {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  
  transition: 0.2s;
}

.login-link:hover {
  color: var(--primary-glow);
}

/* animação suave do dropdown */
.dropdown-menu.login-dropdown {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s ease;
}

/* ativa no hover */
.dropdown:hover .login-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* REMOVE LINHA/BORDA INDESEJADA NO DNA */
.dna-svg-wrap,
.dna-svg,
.dna-svg foreignObject,
.dna-svg-video {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.dna-svg-wrap {
  overflow: hidden !important;
  background: transparent !important;
}

.dna-svg {
  overflow: visible !important;
  background: transparent !important;
}

.dna-svg foreignObject {
  overflow: hidden !important;
  background: transparent !important;
}

.dna-svg-video {
  display: block !important;
  background: transparent !important;
  transform: scale(1.12) !important;
}

/*whatsapp flutuante*/
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 100px;
  z-index: 9999;

  width: 340px;
  max-width: calc(100vw - 28px);

  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      180deg,
      rgba(18,18,18,0.98),
      rgba(10,10,10,0.98)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 0 35px rgba(255, 42, 42, 0.16),
    0 20px 60px rgba(0,0,0,0.55);

  display: none;
}

/* HEADER */
.whatsapp-header {
  position: relative;

  padding: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(125,0,0,0.98) 0%,
      rgba(85,0,0,1) 100%
    );

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.whatsapp-header::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.12),
      rgba(255,255,255,0)
    );

  pointer-events: none;
}

.whatsapp-header strong {
  display: block;

  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;

  font-size: 1.5rem;
  color: #fff;
}

.whatsapp-header span {
  display: block;

  margin-top: 4px;

  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}

/* BODY */
.whatsapp-body {
  padding: 18px;
}

.whatsapp-body p {
  margin-bottom: 14px;

  color: rgba(255,255,255,0.82);

  line-height: 1.7;
  font-size: 0.95rem;
}

/* INPUT */
.whatsapp-body textarea {
  width: 100%;

  resize: none;
  min-height: 100px;

  padding: 14px;

  border-radius: 16px;

  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(255,255,255,0.04);

  color: #fff;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-body textarea:focus {
  border-color: rgba(255, 42, 42, 0.55);

  background: rgba(255,255,255,0.06);

  box-shadow:
    0 0 0 3px rgba(255, 42, 42, 0.12);
}

.whatsapp-body textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* BOTÃO */
.whatsapp-send {
  position: relative;

  width: 100%;
  min-height: 54px;

  margin-top: 14px;

  border: none;
  border-radius: 14px;

  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;

  color: #b30000;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      rgba(255,255,255,0.92)
    );

  box-shadow:
    0 0 20px rgba(255, 42, 42, 0.35);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-send:hover {
  transform: scale(1.02);

  box-shadow:
    0 0 35px rgba(255, 42, 42, 0.65);
}

.whatsapp-send::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  border: 2px solid rgba(255, 42, 42, 0.38);

  animation: pulseRing 2s infinite;
}

/* FECHAR */
.whatsapp-close {
  position: absolute;

  top: 10px;
  right: 12px;

  z-index: 3;

  border: none;
  background: transparent;

  color: rgba(255,255,255,0.85);

  font-size: 28px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.whatsapp-close:hover {
  color: #fff;
  transform: scale(1.1);
}

/* MOBILE */
@media screen and (max-width: 480px) {

  .whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 58px;
    height: 58px;
  }

  .whatsapp-chat {
    right: 14px;
    bottom: 86px;

    width: calc(100vw - 28px);
  }

}
.whatsapp-float {
  animation:
    whatsappPulse 2s infinite,
    whatsappFloat 4s ease-in-out infinite;
}

/* círculo expandindo */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: 50%;

  border: 2px solid rgba(255, 42, 42, 0.45);

  animation: whatsappRing 2.4s infinite;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

/* efeito respirando */
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(255, 42, 42, 0.25),
      0 12px 40px rgba(0,0,0,0.45);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 38px rgba(255, 42, 42, 0.6),
      0 18px 48px rgba(0,0,0,0.55);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(255, 42, 42, 0.25),
      0 12px 40px rgba(0,0,0,0.45);
  }
}

/* sobe/desce leve */
@keyframes whatsappFloat {
  0% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }

  100% {
    translate: 0 0;
  }
}

/* ondas expandindo */
@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}
.about-more {
  display: none;
  animation: aboutFade 0.45s ease forwards;
}

.about-more.active {
  display: block;
}

.about-read-more {
  width: fit-content;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 22px;
  border: 1px solid rgba(255, 42, 42, 0.45);
  border-radius: 12px;
  background: rgba(255, 42, 42, 0.08);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 42, 42, 0.16);
  transition: 0.3s ease;
}

.about-read-more:hover {
  transform: translateY(-2px);
  background: rgba(255, 42, 42, 0.16);
}

.about-final {
  margin-top: 12px;
  padding: 22px;
  border-left: 3px solid rgba(255,42,42,0.55);
  background: linear-gradient(to right, rgba(255,42,42,0.08), transparent);
  border-radius: 0 16px 16px 0;
}

@keyframes aboutFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .about-read-more {
    margin-inline: auto;
  }

  .about-final {
    text-align: left;
  }
}