:root {
  --header-h: 72px;
}
/* ====================================
   Reset & Base Styles
   ==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Titillium Web", sans-serif;
  background: #ffffff;
  color: #1e2f3c;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Prevenir zoom em inputs no iOS */
@media (max-width: 768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ====================================
   Section Headers - Estilos Globais
   ==================================== */

.section-header {
  margin-bottom: 60px;
}

.section-label {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.section-line {
  width: 100%;
  height: 1px;
  opacity: 0.3;
}

.section-line.red {
  background: #dc473b;
}

.section-line.white {
  background: #ffffff;
}

/* ====================================
   Hero Section - EXATAMENTE COMO FIGMA
   ==================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  --hero-grid-h: 60px; /* altura do grid inferior (usado também p/ alinhar a VR) */
  /* Fundo roxo do Figma */
  /* corrige caminho relativo: CSS está em assets/css e imagem em /img */
  /* ancorado no rodapé e menor para não ocupar toda a tela */
  background: #f6efd1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 120px;
}

/* Logo abaixo do título no Hero (147 vermelho) */
.hero-logo-small {
  position: relative; /* fica no fluxo, logo após o título */
  top: auto;
  left: auto;
  width: clamp(240px, 28vw, 420px);
  height: auto;
  margin-top: 16px;
  z-index: 4; /* mantém acima do círculo amarelo */
}

.hero-logo-small img {
  width: 100%;
  height: auto;
  display: block;
}

/* Conteúdo principal */
.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Seção de texto */
.hero-text-section {
  position: relative;
  z-index: 5;
  flex: 1 1 clamp(480px, 52vw, 720px);
}

.hero-title {
  font-family: "Titillium Web", sans-serif;
  font-weight: 300;
  font-size: 120px;
  line-height: 0.9;
  margin: 0;
  position: relative;
  z-index: 5; /* garante texto acima do círculo */
  letter-spacing: -0.02em;
}

/* caracteres individuais para hover sutil */
.hero-title .char {
  display: inline-block;
  will-change: transform;
  transform-origin: 50% 60%;
}

.hero-text-dark {
  color: #1e2f3c;
}

.hero-text-red {
  color: #dc473b;
}

.hero-title .hero-line {
  display: block;
  line-height: 1.09;
}

.hero-title .hero-word {
  display: inline-block;
}

/* Bloco que agrupa logo e ícone abaixo do título */
.hero-below-title {
  position: relative;
  margin-top: 8px; /* aproxima do texto */
  display: inline-block;
}

/* Elemento 147 vermelho conforme Figma */
.hero-147-element {
  position: absolute;
  left: 0;
  bottom: -80px;
  z-index: 6;
  pointer-events: none;
}

.hero-147-symbol {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #dc473b;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-147-text {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #dc473b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Ícone amarelo do Figma */
.hero-yellow-circle {
  position: absolute;
  /* Posicionamento responsivo aproximado ao Figma */
  --circle-size: clamp(122px, 10vw, 180px);
  top: calc(var(--circle-size) * -0.4);
  left: calc(100% - var(--circle-size) * -0.24);
  width: var(--circle-size);
  height: var(--circle-size);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* abaixo do texto e logo para ficar "atrás" */
}

.hero-yellow-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.16));
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Telefone com video */
.hero-phone {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.hero-phone-frame {
  position: relative;
  width: clamp(240px, 34vw, 380px);
  max-width: 420px;
}

.hero-phone-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.hero-phone-screen {
  position: absolute;
  z-index: 1;
  top: 4.4%;
  left: 8.6%;
  width: 83.4%;
  height: 92.2%;
  border-radius: clamp(20px, 3vw, 30px);
  overflow: hidden;
  background: #000;
  box-shadow: 0 22px 60px rgba(30, 47, 60, 0.35);
}

.hero-video-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  cursor: pointer;
  transition: opacity 0.35s ease;
}

.hero-video-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero-video-cover-play {
  position: relative;
  z-index: 2;
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  border-radius: 50%;
  background: radial-gradient(
      circle at 35% 35%,
      rgba(255, 255, 255, 0.28) 0%,
      rgba(200, 200, 200, 0) 45%
    ),
    rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

.hero-video-cover-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: clamp(9px, 2vw, 14px) solid transparent;
  border-bottom: clamp(9px, 2vw, 14px) solid transparent;
  border-left: clamp(14px, 2.8vw, 20px) solid #ffffff;
  margin-left: clamp(2px, 0.4vw, 4px);
}

.hero-video-cover:hover .hero-video-cover-play,
.hero-video-cover:focus-visible .hero-video-cover-play {
  transform: scale(1.05);
}

.hero-phone-screen iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transform: translate(-50%, -50%);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-phone-screen.hero-phone-screen--playing iframe {
  opacity: 1;
  pointer-events: auto;
}

.hero-phone-screen.hero-phone-screen--playing .hero-video-cover {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1440px) {
  .hero-container {
    padding: 0 clamp(72px, 6vw, 108px);
  }
  .hero-text-section {
    flex-basis: clamp(440px, 54vw, 660px);
    max-width: clamp(440px, 54vw, 660px);
    min-width: clamp(320px, 40vw, 460px);
  }
  .hero-main-content {
    gap: clamp(24px, 3.4vw, 56px);
  }
}

@media (max-width: 1280px) {
  .hero-container {
    padding: 0 80px;
  }
  .hero-title {
    font-size: clamp(64px, 8vw, 100px);
  }
  .hero-text-section {
    flex-basis: clamp(380px, 52vw, 600px);
    max-width: clamp(380px, 52vw, 600px);
    min-width: clamp(300px, 38vw, 440px);
  }
  .hero-phone-frame {
    width: clamp(230px, 36vw, 360px);
  }
  .hero-yellow-circle {
    --circle-size: clamp(108px, 13vw, 156px);
    top: calc(var(--circle-size) * -0.4);
    left: calc(100% - var(--circle-size) * 0.65);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    padding: 0 60px;
  }
  .hero-title {
    font-size: clamp(56px, 8vw, 82px);
  }
  .hero-phone-frame {
    width: clamp(220px, 42vw, 340px);
  }
  .hero-phone-screen {
    top: 4.8%;
    left: 8.9%;
    width: 82.6%;
    height: 91%;
    border-radius: clamp(18px, 4vw, 26px);
  }
  .hero-yellow-circle {
    --circle-size: clamp(96px, 16vw, 140px);
    top: calc(var(--circle-size) * -0.4);
    left: calc(100% - var(--circle-size) * 0.65);
  }
  .hero-icon {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    padding: 0 40px;
  }
  .hero-title {
    font-size: clamp(52px, 9vw, 74px);
  }
  .hero-main-content {
    align-items: flex-start;
    gap: clamp(24px, 4vw, 48px);
  }
  .hero-text-section {
    max-width: min(520px, 100%);
    min-width: auto;
    flex-basis: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    overflow: visible;
    padding-bottom: 48px;
  }
  .hero-container {
    padding: 0 24px;
    justify-content: flex-start;
    padding-top: 25px;
    height: auto;
    min-height: 100vh;
  }
  .hero-main-content {
    flex-direction: column;
    height: auto;
    gap: 32px;
  }
  #drip-cafe-f09e30b248bc50db3389 {
    margin-top: -77px !important;
  }
  .hero-text-section {
    width: 100%;
  }
  .hero-title {
    font-size: clamp(48px, 12vw, 64px);
    line-height: 0.95;
  }
  .hero-logo-small {
    width: clamp(180px, 45vw, 280px);
    margin-top: 20px;
  }
  .hero-phone {
    width: 100%;
    position: relative;
    flex: 0 1 auto;
  }
  .hero-phone-frame {
    width: clamp(220px, 68vw, 320px);
    margin: 0 auto;
  }
  .hero-phone-screen {
    top: 5.8%;
    left: 9.2%;
    width: 82.6%;
    height: 89.6%;
    border-radius: clamp(16px, 5vw, 22px);
  }
  .hero-yellow-circle {
    --circle-size: clamp(80px, 20vw, 110px);
    top: calc(var(--circle-size) * -2.35);
    left: calc(100% - var(--circle-size) * 0);
  }
  .hero-corner-element {
    width: clamp(100px, 30vw, 160px);
    right: 8px;
    bottom: calc(var(--hero-grid-h) + 12px);
    position: relative;
    margin: 12px 0 0 0;
    height: 84px;
  }
  .hero-transition-grid {
    height: clamp(40px, 10vh, 60px);
  }
  .hero-floor-svg {
    height: clamp(60px, 12vh, 100px);
    top: 1145px;
  }
}

/* Elemento decorativo no canto direito sobreposto à Girl VR */
.hero-corner-element {
  position: absolute;
  right: clamp(8px, 5.5vw, 31px);
  bottom: clamp(14px, 2vw, 28px);
  width: clamp(160px, 69vw, 400px); /* mais largo como no Figma */
  height: auto;
  z-index: 6; /* acima da girl (z-index:3) e do círculo (z-index:4) */
  pointer-events: none;
  top: 93%;
}

@media (max-width: 1024px) {
  .hero-corner-element {
    width: clamp(140px, 18vw, 220px);
    right: 16px;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .hero-corner-element {
    width: 120px;
    right: 12px;
    bottom: 12px;
    top: 1193px;
  }
  .hero-logo-small {
    width: clamp(200px, 50vw, 320px);
    margin-top: 12px;
  }
  .hero-yellow-circle {
    position: relative;
    margin: 12px 0 0 0;
    width: 84px;
    height: 84px;
  }
}

/* ====================================
   Footer logo (bloco vermelho dinâmico)
   ==================================== */
.footer-section {
  position: relative;
  min-height: 560px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.6s ease, filter 0.6s ease;
}
.footer-section.footer-theme-red {
  background: #dc473b;
}
.footer-section.footer-theme-teal {
  background: #0cb3ac;
}
.footer-section.footer-theme-yellow {
  background: #fee644;
}

.footer-logo-giant {
  position: relative;
  z-index: 2;
  width: min(80vw, 980px);
  opacity: 1;
}
.footer-logo-giant img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer do tipo painel (full viewport) */
.footer-section.footer-panels {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 0; /* respiro semelhante às outras seções */
  border-radius: 0; /* sem cantos arredondados */
}

/* Cores default; serão trocadas pelo GSAP */
.footer-section.footer-panels {
  background: #dc473b;
}
.footer-panels.theme-teal {
  background: #0cb3ac;
}
.footer-panels.theme-yellow {
  background: #fee644;
}
.footer-panels.theme-red {
  background: #dc473b;
}

.footer-logo-giant {
  width: min(76vw, 1180px);
}

/* Footer Panels (seção com transições de cor) */
.footer-panels-section {
  position: relative;
  height: 400vh; /* espaço para transição de cores */
}

@media (max-width: 768px) {
  .footer-panels-section {
    height: 400vh;
  }
}

.footer-panels-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc473b; /* cor inicial */
  transition: background-color 0.4s ease;
}
.footer-panels-pin.theme-teal {
  background: #0cb3ac;
}
.footer-panels-pin.theme-yellow {
  background: #fee644;
}
.footer-panels-pin.theme-red {
  background: #dc473b;
}

/* Conteúdo do footer com texto e logo */
.footer-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: min(1100px, 85vw);
  padding: clamp(40px, 12vw, 160px) clamp(32px, 20vw, 145px);
  gap: clamp(32px, 4vw, 48px);
}

.footer-heading {
  font-family: "Titillium Web", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 clamp(28px, 19vw, 214px) 0;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: center;
}

.footer-heading-line {
  display: block;
  white-space: nowrap;
}

.footer-primary-button {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.8vw, 16px) clamp(32px, 6vw, 48px);
  border-radius: 999px;
  background: #1e2f3c;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 20px);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
  position: relative;
  z-index: 2;
  top: -110px;
}

.footer-primary-button:hover {
  background: #15222d;
  transform: translateY(-2px);
}

.footer-primary-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  z-index: 2;
  top: -60px;
}

.footer-cta-text {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.4s ease;
}

.footer-cta-text + .footer-cta-text {
  margin-top: -14px; /* Pull second line closer to mimic negative gap */
}

.footer-panels-pin .footer-logo-giant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(85vw, 1200px);
  z-index: 1;
  pointer-events: none;
  --frame-opacity: 0.24;
  --logo-img-opacity: 1;
  --logo-shadow-opacity: 0.28;
}

.footer-panels-pin .footer-logo-giant img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  opacity: var(--logo-img-opacity);
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, var(--logo-shadow-opacity)));
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.footer-panels-pin .footer-logo-giant::before {
  content: "";
  position: absolute;
  opacity: var(--frame-opacity);
  transition: opacity 0.4s ease, border-color 0.4s ease;
  z-index: 0;
}

@media (max-width: 768px) {
  .footer-content {
    align-items: center;
    text-align: center;
    max-width: none;
    padding: clamp(32px, 10vw, 80px);
    gap: clamp(24px, 5vw, 36px);
  }

  .footer-cta {
    align-items: center;
  }

  .footer-heading-line {
    white-space: normal;
  }

  .footer-primary-button {
    top: -49px;
  }
}

/* Ajuste de cores do texto e logo por tema */
.footer-panels-pin.theme-teal .footer-heading,
.footer-panels-pin.theme-teal .footer-cta-text {
  color: #ffffff;
}

.footer-panels-pin.theme-yellow .footer-heading,
.footer-panels-pin.theme-yellow .footer-cta-text {
  color: #1e2f3c;
}

.footer-panels-pin.theme-red .footer-heading,
.footer-panels-pin.theme-red .footer-cta-text {
  color: #ffffff;
}

/* Ajustes responsivos */
@media (max-width: 1200px) {
  .localizacao-title {
    font-size: 72px;
  }
  .footer-logo-giant {
    width: min(90vw, 1000px);
  }
}
@media (max-width: 768px) {
  .localizacao-section {
    height: auto;
    min-height: 600px;
    padding: 60px 0;
  }
  .localizacao-topbar {
    padding-top: 20px;
  }
  .localizacao-topbar .brand {
    font-size: 16px;
  }
  .localizacao-topbar .brand .dot {
    width: 12px;
    height: 12px;
    margin: 0 0 4px 4px;
  }
  .localizacao-inner {
    padding-top: 80px;
  }
  .localizacao-title {
    font-size: clamp(48px, 12vw, 64px);
    line-height: 95%;
  }
  .localizacao-cta {
    font-size: 11px;
    margin-top: 20px;
    padding-top: 14px;
  }
  .localizacao-cta::before {
    width: 120px;
  }
  .localizacao-bottom {
    bottom: 20px;
  }
  .localizacao-bottom .bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
  }
  .localizacao-bottom .address {
    font-size: 10px;
    line-height: 140%;
  }
  .localizacao-bottom .address .location-icon {
    width: 16px;
    height: 16px;
  }
  .localizacao-bottom .sala {
    gap: 8px;
  }
  .localizacao-bottom .sala-label {
    font-size: 11px;
  }
  .localizacao-bottom .sala-icon {
    min-height: 40px;
  }
  .localizacao-bottom .sala-icon img,
  .localizacao-bottom .sala-icon svg {
    height: 40px;
    max-width: 100px;
  }

  .footer-content {
    padding: 0 24px;
  }
  .footer-heading {
    font-size: clamp(32px, 8vw, 48px);
    margin: 0 0 32px 0;
    line-height: 1.2;
  }
  .footer-cta {
    gap: 16px;
  }
  .footer-cta-text {
    font-size: clamp(20px, 5vw, 32px);
  }
  .footer-panels-pin .footer-logo-giant img {
    opacity: var(--logo-img-opacity);
  }
  .footer-panels-pin .footer-logo-giant::before {
    opacity: 0.24;
  }
}

/* SVG das lanes tipo Guitar Hero */
/* SVG oficial no rodapé (como background animável) */
.hero-floor-svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(90px, 13vh, 220px);
  z-index: 2;
  pointer-events: none;
}

/* ====================================
    RD Partner Section 
   ==================================== */

.rd-partner-section {
  position: relative;
  padding: clamp(88px, 12vw, 275px) 0 clamp(96px, 14vw, 210px);
  background: #111623;
  color: #f2f5ff;
  overflow: hidden;
}

.rd-partner-section .container {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(40px, 7vw, 120px);
}

.rd-partner-inner {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  width: 100%;
  max-width: none;
}

.rd-partner-image {
  margin: 0;
  position: relative;
  border-radius: 5px;
  overflow: visible;
  max-width: clamp(420px, 36vw, 520px);
}

.rd-partner-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.rd-partner-caption {
  margin-top: 18px;
  text-align: center;
  color: #dde1e7;
  font-size: 22px;
  line-height: 1.4;
}

.rd-partner-badge {
  position: absolute;
  top: clamp(34px, 4vw, 62px);
  left: clamp(-116px, -8vw, -68px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.rd-partner-badge img {
  display: block;
  height: clamp(48px, 8vw, 82px);
  width: auto;
}

.rd-partner-info {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
}

.rd-partner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: clamp(10px, 2.2vw, 13px) clamp(20px, 4.2vw, 28px);
  margin-top: clamp(8px, 2vw, 16px);
  border-radius: 999px;
  background: #4ec1b6;
  color: #063544;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  transition: background-color 0.2s ease;
  font-size: 20px;
}

.rd-partner-cta:hover,
[data-whatintent="mouse"] .rd-partner-cta:focus-visible {
  background: #45e7c6;
  box-shadow: none;
}

.rd-partner-cta:focus-visible {
  outline: 3px solid rgba(69, 231, 198, 0.6);
  outline-offset: 4px;
}

.rd-partner-logos {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.rd-partner-logo {
  display: block;
  height: clamp(22px, 4.2vw, 36px);
  width: auto;
  object-fit: contain;
}

.rd-partner-logo-rd {
  height: clamp(22px, 4.6vw, 38px);
}

.rd-partner-logo-147 {
  height: clamp(28px, 5vw, 42px);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%);
}

.rd-partner-plus {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #7a8fff;
}

.rd-partner-title {
  font-size: clamp(28px, 6vw, 52px);
  text-transform: uppercase;
  color: #45e1ff;
  margin: 0;
  line-height: 1.1;
}

.rd-partner-info p {
  margin: 0;
  font-size: clamp(22px, 3vw, 24px);
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  color: #ffffff;
}

.rd-partner-accent {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.rd-partner-accent-top {
  top: clamp(-38px, -5vw, -16px);
  right: clamp(-59px, 7vw, -35px);
  width: clamp(260px, 32vw, 368px);
  height: clamp(96px, 12vw, 120px);
  border-radius: clamp(48px, 10vw, 72px);
  background: linear-gradient(90deg, #9c35ff 0%, #4f93fe 45%, #26f0ff 100%);
  filter: blur(0.3px);
}

.rd-partner-accent-bottom {
  bottom: clamp(-52px, -5vw, -18px);
  left: clamp(-72px, -6vw, -35px);
  width: clamp(148px, 20vw, 188px);
  height: clamp(148px, 20vw, 188px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 32%,
    #9a2cf6 0%,
    #01e7fc 52%,
    rgba(13, 33, 42, 0) 100%
  );
  filter: blur(0.45px);
}

@media (max-width: 960px) {
  .rd-partner-inner {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .rd-partner-image {
    max-width: 520px;
    margin: 0 auto;
  }

  .rd-partner-info {
    text-align: center;
    align-items: center;
  }

  .rd-partner-logos {
    justify-content: center;
  }

  .rd-partner-badge {
    top: clamp(24px, 7vw, 48px);
    left: clamp(20px, 10vw, 48px);
  }

  .rd-partner-accent-bottom {
    left: clamp(-12px, 8vw, 40px);
  }
}

@media (max-width: 560px) {
  .rd-partner-section {
    padding: clamp(56px, 14vw, 80px) 0;
  }

  .rd-partner-image {
    border-radius: 20px;
  }

  .rd-partner-badge {
    top: clamp(14px, 6vw, 24px);
    left: clamp(14px, 8vw, 28px);
    border-radius: clamp(12px, 6vw, 18px);
  }

  .rd-partner-badge {
    left: clamp(
      -48px,
      -16vw,
      -28px
    ); /* valor mais negativo para ficar mais à esquerda */
  }
  .rd-partner-badge img {
    height: clamp(
      36px,
      12vw,
      54px
    ); /* reduzido proporcionalmente para manter qualidade */
  }

  .rd-partner-accent-top {
    right: clamp(-16px, 6vw, 80px);
  }
  .rd-partner-info p {
    text-align: center;
  }
  .rd-partner-cta {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ====================================
   RD Station Form - Retro-Futurista
   ==================================== */

/* Variáveis CSS para o formulário */
:root {
  /* Cores principais */
  --rd-yellow-neon: #fee644;
  --rd-teal: #0cb3ac;
  --rd-red: #dc473b;
  --rd-cream: #f5edcd;
  --rd-blue-dark: #111623;
  --rd-text-primary: #1f2732;
  --rd-text-secondary: #2e3845;

  /* Espaçamentos e raios */
  --rd-radius-sm: 4px;
  --rd-radius-md: 8px;
  --rd-radius-lg: 12px;

  /* Sombras */
  --rd-shadow-sm: 0 2px 8px rgba(31, 39, 50, 0.08);
  --rd-shadow-md: 0 4px 16px rgba(31, 39, 50, 0.12);
  --rd-shadow-lg: 0 8px 32px rgba(31, 39, 50, 0.16);
  --rd-shadow-glow: 0 0 20px rgba(254, 230, 68, 0.4);
  --rd-shadow-glow-teal: 0 0 24px rgba(12, 179, 172, 0.5);

  /* Transições */
  --rd-transition-fast: 120ms ease;
  --rd-transition-normal: 180ms ease;
}

/* Container do formulário */
.rd-form-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
}

/* Reset de estilos inline do RD Station */
.rd-form-wrapper #drip-cafe-f09e30b248bc50db3389 {
  font-family: "Titillium Web", sans-serif !important;
}

/* Seção principal do formulário */
.rd-form-wrapper .bricks--section {
  background: var(--rd-cream) !important;
  border: 1px solid rgba(31, 39, 50, 0.08) !important;
  border-radius: var(--rd-radius-lg) !important;
  box-shadow: var(--rd-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  overflow: hidden;
  position: relative;
}

/* Textura sutil/ruído de fundo */
.rd-form-wrapper .bricks--section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(31, 39, 50, 0.02) 2px,
      rgba(31, 39, 50, 0.02) 4px
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(254, 230, 68, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

/* Scanline sutil na borda inferior - REMOVIDA */
/* .rd-form-wrapper .bricks--section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--rd-yellow-neon) 25%,
    var(--rd-teal) 50%,
    var(--rd-red) 75%,
    transparent 100%
  );
  opacity: 0.3;
  pointer-events: none;
  z-index: 2;
} */

/* Colunas do formulário */
.rd-form-wrapper .bricks--column > div {
  background-color: transparent !important;
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 30px) clamp(20px, 3vw, 30px) !important;
}

/* Títulos do formulário */
.rd-form-wrapper .bricks--component-text h1 {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(24px, 4.5vw, 32px) !important;
  line-height: 1.2 !important;
  color: var(--rd-text-primary) !important;
  margin-bottom: 12px !important;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.rd-form-wrapper .bricks--component-text h1 strong {
  color: var(--rd-text-primary) !important;
}

/* Subtítulo */
.rd-form-wrapper .bricks--component-text h2 {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(16px, 3vw, 20px) !important;
  line-height: 1.4 !important;
  color: var(--rd-text-secondary) !important;
  margin-bottom: 0 !important;
}

.rd-form-wrapper .bricks--component-text h2 span {
  color: var(--rd-text-secondary) !important;
}

/* Container do formulário */
.rd-form-wrapper .bricks-form {
  position: relative;
  z-index: 2;
}

/* Labels */
.rd-form-wrapper .bricks-form__label {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  color: var(--rd-text-primary) !important;
  margin-bottom: 6px !important;
  display: block !important;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* Campos de input */
.rd-form-wrapper .bricks-form__input {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--rd-text-primary) !important;
  background-color: #ffffff !important;
  border: 2px solid rgba(31, 39, 50, 0.12) !important;
  border-radius: var(--rd-radius-sm) !important;
  padding: 12px 16px !important;
  height: auto !important;
  min-height: 48px !important;
  width: 100% !important;
  transition: border-color var(--rd-transition-normal),
    box-shadow var(--rd-transition-normal),
    background-color var(--rd-transition-normal) !important;
  box-shadow: var(--rd-shadow-sm), inset 0 1px 2px rgba(31, 39, 50, 0.04) !important;
}

/* Placeholder */
.rd-form-wrapper .bricks-form__input::placeholder {
  color: rgba(31, 39, 50, 0.5) !important;
  opacity: 0.7 !important;
  font-style: italic;
}

/* Estados de foco */
.rd-form-wrapper .bricks-form__input:focus {
  outline: none !important;
  border-color: var(--rd-yellow-neon) !important;
  box-shadow: 0 0 0 3px rgba(254, 230, 68, 0.2), var(--rd-shadow-glow),
    inset 0 1px 2px rgba(31, 39, 50, 0.04) !important;
  background-color: #ffffff !important;
}

/* Hover */
.rd-form-wrapper .bricks-form__input:hover:not(:focus) {
  border-color: rgba(31, 39, 50, 0.2) !important;
}

/* Select2 - campo de telefone com bandeira */
.rd-form-wrapper .select2-container .select2-choice {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: var(--rd-text-primary) !important;
  background: #ffffff !important;
  border: 2px solid rgba(31, 39, 50, 0.12) !important;
  border-radius: var(--rd-radius-sm) 0 0 var(--rd-radius-sm) !important;
  height: 48px !important;
  line-height: 44px !important;
  padding: 0 8px !important;
  box-shadow: var(--rd-shadow-sm), inset 0 1px 2px rgba(31, 39, 50, 0.04) !important;
  transition: border-color var(--rd-transition-normal) !important;
}

.rd-form-wrapper .select2-container .select2-choice:hover {
  border-color: rgba(31, 39, 50, 0.2) !important;
}

/* Input de telefone */
.rd-form-wrapper .with-select-flags .phone-input-group .phone {
  border-radius: 0 var(--rd-radius-sm) var(--rd-radius-sm) 0 !important;
  border-left: none !important;
}

/* Checkbox e radio */
.rd-form-wrapper .bricks-form__field__option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
}

.rd-form-wrapper .bricks-form__field__option__input[type="checkbox"],
.rd-form-wrapper .bricks-form__field__option__input[type="radio"] {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  margin: 2px 0 0 0 !important;
  border: 2px solid rgba(31, 39, 50, 0.3) !important;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  transition: all var(--rd-transition-normal);
  appearance: none;
  -webkit-appearance: none;
  position: relative;
}

.rd-form-wrapper .bricks-form__field__option__input[type="checkbox"]:checked {
  background: var(--rd-teal) !important;
  border-color: var(--rd-teal) !important;
}

.rd-form-wrapper
  .bricks-form__field__option__input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.rd-form-wrapper .bricks-form__field__option__input:focus {
  outline: none;
  border-color: var(--rd-yellow-neon) !important;
  box-shadow: 0 0 0 3px rgba(254, 230, 68, 0.2);
}

.rd-form-wrapper .bricks-form__field__option .bricks-form__label {
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  cursor: pointer;
  flex: 1;
}

/* Texto estático (privacidade) */
.rd-form-wrapper .bricks-form__static {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--rd-text-secondary) !important;
  opacity: 0.8;
}

.rd-form-wrapper .bricks-form__static a {
  color: var(--rd-teal) !important;
  text-decoration: underline;
  transition: color var(--rd-transition-fast);
}

.rd-form-wrapper .bricks-form__static a:hover {
  color: var(--rd-red) !important;
}

/* Mensagens de erro */
.rd-form-wrapper label.error {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: var(--rd-red) !important;
  margin-top: 4px !important;
  padding: 2px 4px !important;
  display: inline-block;
  border-radius: 3px;
  background: rgba(220, 71, 59, 0.08);
}

.rd-form-wrapper .bricks-form__input.error {
  border-color: var(--rd-red) !important;
  box-shadow: 0 0 0 3px rgba(220, 71, 59, 0.15), var(--rd-shadow-sm) !important;
}

/* Botão de submit */
.rd-form-wrapper .bricks--component-button,
.rd-form-wrapper button[type="submit"],
.rd-form-wrapper .rd-button {
  font-family: "Titillium Web", sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(18px, 3vw, 20px) !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;

  background: linear-gradient(
    135deg,
    var(--rd-red) 0%,
    #b83a2f 100%
  ) !important;

  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: var(--rd-radius-md) !important;

  padding: 16px 32px !important;
  min-height: 56px !important;
  height: auto !important;
  width: 100% !important;
  max-width: 100% !important;

  cursor: pointer;
  position: relative;
  overflow: hidden;

  box-shadow: 0 4px 16px rgba(220, 71, 59, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;

  transition: transform var(--rd-transition-normal),
    box-shadow var(--rd-transition-normal),
    background var(--rd-transition-normal) !important;
}

/* Efeito de brilho no botão */
.rd-form-wrapper .bricks--component-button::before,
.rd-form-wrapper button[type="submit"]::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(254, 230, 68, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.rd-form-wrapper .bricks--component-button:hover::before,
.rd-form-wrapper button[type="submit"]:hover::before {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Hover do botão */
.rd-form-wrapper .bricks--component-button:hover,
.rd-form-wrapper button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(
    135deg,
    #e85447 0%,
    var(--rd-red) 100%
  ) !important;
  box-shadow: 0 6px 24px rgba(220, 71, 59, 0.4),
    0 0 20px rgba(254, 230, 68, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

/* Foco do botão */
.rd-form-wrapper .bricks--component-button:focus-visible,
.rd-form-wrapper button[type="submit"]:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(254, 230, 68, 0.4),
    0 6px 24px rgba(220, 71, 59, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}

/* Botão desabilitado */
.rd-form-wrapper .bricks--component-button:disabled,
.rd-form-wrapper button[type="submit"]:disabled {
  background: linear-gradient(
    135deg,
    rgba(220, 71, 59, 0.5) 0%,
    rgba(184, 58, 47, 0.5) 100%
  ) !important;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none !important;
  box-shadow: var(--rd-shadow-sm) !important;
}

/* Espaçamento entre campos */
.rd-form-wrapper .bricks-form__field {
  margin-bottom: 16px !important;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  .rd-form-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .rd-form-wrapper .bricks--column > div {
    padding: 20px 16px !important;
  }

  .rd-form-wrapper .bricks-form__input {
    font-size: 16px !important; /* Previne zoom no iOS */
  }
}

/* Dark mode (opcional) */
@media (prefers-color-scheme: dark) {
  :root {
    --rd-cream: #1f2732;
    --rd-text-primary: #f2f5ff;
    --rd-text-secondary: #c5cad5;
  }

  .rd-form-wrapper .bricks--section {
    background: var(--rd-blue-dark) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }

  .rd-form-wrapper .bricks--section::before {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.02) 2px,
        rgba(255, 255, 255, 0.02) 4px
      ),
      radial-gradient(
        circle at 50% 50%,
        rgba(254, 230, 68, 0.05) 0%,
        transparent 50%
      );
  }

  .rd-form-wrapper .bricks-form__input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--rd-text-primary) !important;
    box-shadow: var(--rd-shadow-sm), inset 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  }

  .rd-form-wrapper .bricks-form__input:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
  }

  .rd-form-wrapper .select2-container .select2-choice {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--rd-text-primary) !important;
  }

  .rd-form-wrapper .bricks-form__field__option__input[type="checkbox"],
  .rd-form-wrapper .bricks-form__field__option__input[type="radio"] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
}

/* Animação de entrada do formulário */
@keyframes rd-form-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rd-form-wrapper {
  animation: rd-form-fade-in 0.6s ease-out;
}

/* Mensagem de sucesso (após submit) */
.rd-form-wrapper .bricks-form__success {
  padding: 24px;
  background: rgba(12, 179, 172, 0.1);
  border: 2px solid var(--rd-teal);
  border-radius: var(--rd-radius-md);
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--rd-shadow-glow-teal);
}

.rd-form-wrapper .bricks-form__success::before {
  content: "✓";
  display: block;
  font-size: 48px;
  color: var(--rd-teal);
  margin-bottom: 12px;
}

/* ====================================
   Override Compacto - Acima da Dobra
   ==================================== */

#rd-section-mh6mmsv3 {
  z-index: 30;
}

/* Reduz padding geral do container */
.rd-form-wrapper .bricks--column > div {
  padding: clamp(16px, 2.5vw, 20px) clamp(16px, 2.5vw, 24px) !important;
}

/* Compacta títulos */
.rd-form-wrapper .bricks--component-text h1 {
  font-size: clamp(20px, 3.8vw, 26px) !important;
  margin-bottom: 6px !important;
  line-height: 1.15 !important;
}

.rd-form-wrapper .bricks--component-text h2 {
  font-size: clamp(14px, 2.5vw, 16px) !important;
  line-height: 1.3 !important;
  margin-bottom: 0 !important;
}

/* Reduz margem entre título e primeiro campo */
.rd-form-wrapper #rd-text-mh6mmsv7 {
  margin-bottom: 16px !important;
}

/* Compacta campos de input */
.rd-form-wrapper .bricks-form__input {
  padding: 10px 14px !important;
  min-height: 42px !important;
  font-size: 15px !important;
}

/* Compacta labels */
.rd-form-wrapper .bricks-form__label {
  font-size: 14px !important;
  margin-bottom: 4px !important;
}

/* Reduz espaçamento entre campos */
.rd-form-wrapper .bricks-form__field {
  margin-bottom: 12px !important;
}

/* Compacta select2 de telefone */
.rd-form-wrapper .select2-container .select2-choice {
  height: 42px !important;
  line-height: 38px !important;
  font-size: 15px !important;
}

/* Compacta checkbox/privacy */
.rd-form-wrapper .bricks-form__field__option {
  margin: 8px 0 !important;
}

.rd-form-wrapper .bricks-form__field__option .bricks-form__label {
  font-size: 13px !important;
}

.rd-form-wrapper .bricks-form__field__option__input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
}

/* Compacta texto de privacidade */
.rd-form-wrapper .bricks-form__static {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

/* Reduz margem do botão */
.rd-form-wrapper .bricks--component-button,
.rd-form-wrapper button[type="submit"] {
  padding: 12px 28px !important;
  min-height: 48px !important;
  font-size: clamp(16px, 2.5vw, 18px) !important;
  margin-top: 12px !important;
}

/* Compacta texto final */
.rd-form-wrapper #rd-text-mh6mmsve {
  margin-top: 6px !important;
  margin-bottom: 12px !important;
}

.rd-form-wrapper #rd-text-mh6mmsve p {
  font-size: 11px !important;
}

/* Ajuste mobile para manter compacto */
@media (max-width: 768px) {
  .rd-form-wrapper .bricks--column > div {
    padding: 14px 12px !important;
  }

  .rd-form-wrapper .bricks--component-text h1 {
    font-size: clamp(18px, 4.5vw, 22px) !important;
  }

  .rd-form-wrapper .bricks--component-text h2 {
    font-size: clamp(13px, 3vw, 15px) !important;
  }

  .rd-form-wrapper .bricks-form__field {
    margin-bottom: 10px !important;
  }
}

/* ====================================
   Override de Especificidade Alta - Select2
   ==================================== */

/* Força altura do select2 de telefone com ID específico do RD Station */
.rd-form-wrapper #rd-form-mh6mmsva .select2-container .select2-choice,
.rd-form-wrapper .phone-input-group #s2id_autogen1 .select2-choice,
#rd-form-mh6mmsva .select2-container .select2-choice {
  height: 42px !important;
  line-height: 38px !important;
  min-height: 42px !important;
}

/* Garantir que a bandeira fique centralizada verticalmente */
.rd-form-wrapper
  #rd-form-mh6mmsva
  .select2-container
  .select2-choice
  .select2-chosen,
.rd-form-wrapper
  .phone-input-group
  #s2id_autogen1
  .select2-choice
  .select2-chosen {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

/* Ajustar seta do select para ficar centralizada */
.rd-form-wrapper
  #rd-form-mh6mmsva
  .select2-container
  .select2-choice
  .select2-arrow,
.rd-form-wrapper
  .phone-input-group
  #s2id_autogen1
  .select2-choice
  .select2-arrow {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

/* Garantir que o input de telefone tenha a mesma altura */
.rd-form-wrapper
  #rd-form-mh6mmsva
  .with-select-flags
  .phone-input-group
  .phone {
  min-height: 42px !important;
  height: 42px !important;
}
