/* Font Faces */
@font-face {
  font-family: 'Grotesk Collective';
  src: url('./grotesk-collective.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Phonk';
  src: url('./Phonk Regular DEMO.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Phonk Contrast';
  src: url('./Phonk Contrast DEMO.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --color-bg: #11120e;
  --color-lime: #adff00;
  --color-pink: #f202ff;
  --color-yellow: #fff601;
  --color-green: #54fe06;
  --color-blue: #0049ff;
  --color-dark: #1f1f1f;
  --color-white: #ffffff;
  --color-text-dark: #223a22;
  
  --font-grotesk-collective: 'Grotesk Collective', sans-serif;
  --font-space-grotesk: 'Space Grotesk', sans-serif;
  --font-phonk: 'Phonk', sans-serif;
  --font-phonk-contrast: 'Phonk Contrast', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-inter: 'Inter', sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-grotesk);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utility Classes */
.section-title {
  font-family: var(--font-grotesk-collective);
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}

.title-highlight {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 31.5px;
}

.title-highlight.pink {
  background-color: var(--color-pink);
  color: var(--color-dark);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 8px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #537901;
}

.btn-primary {
  background-color: var(--color-lime);
  color: var(--color-dark);
  box-shadow: 4px 4px 0px 0px var(--color-dark);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px var(--color-dark);
}

/* Tags */
.tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 83px;
  font-family: var(--font-inter);
  font-size: 20px;
  transform: rotate(var(--rotation, 0deg));
}

.tag-yellow {
  background-color: var(--color-yellow);
  color: #000;
  --rotation: 8deg;
}

.tag-green {
  background-color: var(--color-green);
  color: #000;
  --rotation: -14deg;
}

.tag-pink {
  background-color: var(--color-pink);
  color: #000;
  --rotation: -5deg;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 20px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Hero Background Elements */
.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-morph {
  position: absolute;
  top: -40px;
  left: 5%;
  width: 228px;
  height: 240px;
  transform: rotate(205deg) scaleY(-1);
  opacity: 0.9;
}

.hero-bg-v-left {
  position: absolute;
  top: 280px;
  left: -133px;
  width: 213px;
  height: 235px;
  transform: rotate(-28deg);
}

.hero-bg-c-right {
  position: absolute;
  top: 117px;
  right: -20px;
  width: 218px;
  height: 195px;
  transform: rotate(-22deg);
}

.hero-bg-v-right {
  position: absolute;
  top: 516px;
  right: -50px;
  width: 321px;
  height: 354px;
  transform: rotate(-28deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 704px;
  text-align: center;
}

/* Hero Decorations - now relative to hero-headline-block */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco-smiley {
  top: -40px;
  left: 104px;
  width: 78px;
  height: 76px;
  transform: rotate(15deg);
}

.hero-deco-arrows {
  top: 65px;
  right: -12px;
  width: 82px;
  height: 103px;

}

.hero-deco-star {
  bottom: 20px;
  left: 158px;
  width: 62px;
  height: 66px;
  transform: rotate(-18deg);
  z-index: 3;
}

.hero-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.logo {
  width: 160px;
  height: auto;
}

.logo-small {
  width: 178px;
}

/* Hero Headline Block */
.hero-headline-block {
  position: relative;
  width: 704px;
  padding: 24px 0;
}

.hero-main-text {
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.headline-line {
  font-family: var(--font-grotesk-collective);
  font-size: 60px;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 0;
}

.headline-big {
  font-family: var(--font-grotesk-collective);
  font-size: 128px;
  line-height: normal;
  margin: 0;
}

/* Tags positioning - relative to hero-headline-block */
.tag-insights {
  position: absolute;
  top: -7px;
  right: 64px;
  transform: rotate(7.9deg);
  z-index: 1;
}

.tag-checklist {
  position: absolute;
  top: 130px;
  left: 19px;
  transform: rotate(-14.3deg);
  z-index: 1;
}

.tag-seguidores {
  position: absolute;
  bottom: 21px;
  right: 0px;
  transform: rotate(-5.2deg);
  z-index: 3;
}

.hero-description {
  font-family: var(--font-space-grotesk);
  font-size: 16px;
  line-height: 24px;
  max-width: 529px;
  color: var(--color-white);
}

.highlight-badge {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
}

/* Section Background Elements */
.section-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-bg-elements img {
  position: absolute;
  opacity: 0.5;
}

.section-title,
.cards-container,
.results-grid,
.benefits-grid {
  position: relative;
  z-index: 1;
}

.bg-shape-1 {
  top: 10%;
  left: -5%;
  width: 180px;
  height: 200px;
}

.bg-shape-2 {
  top: 60%;
  right: -5%;
  width: 200px;
  height: 180px;
}

.bg-shape-3 {
  bottom: 10%;
  left: 10%;
  width: 150px;
  height: 165px;
}

.bg-shape-4 {
  top: 20%;
  right: 10%;
  width: 160px;
  height: 175px;
}

/* Audience Section */
.audience {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: var(--color-lime);
  border: 1px solid #191a23;
  border-radius: 45px;
  padding: 35px 40px 40px;
  width: 356px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0px 5px 0px var(--color-pink);
  position: relative;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-number {
  font-family: var(--font-phonk-contrast);
  font-size: 28px;
  color: var(--color-bg);
  line-height: 1;
}

.card-line {
  flex: 1;
  height: 2px;
  background-color: var(--color-bg);
  opacity: 0.3;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.card-title {
  font-family: var(--font-space-grotesk);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-bg);
  margin-bottom: 8px;
}

.card-text {
  font-family: var(--font-space-grotesk);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-bg);
  line-height: 1.5;
  opacity: 0.8;
}

/* Results Section */
.results {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.results-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 220px;
  height: 220px;
  position: relative;
}

/* Retângulo inclinado atrás da imagem */
.result-item::before {
  content: '';
  position: absolute;
  width: 192.24px;
  height: 130.27px;
  border-radius: 14px;
  top: 10px;
  left: 50%;
  margin-left: -96px;
  z-index: 0;
}

/* Alternância de rotação: ímpar para esquerda, par para direita */
.result-item:nth-child(odd)::before {
  transform: matrix(0.97, -0.26, 0.26, 0.96, 0, 0);
}

.result-item:nth-child(even)::before {
  transform: matrix(0.97, 0.26, -0.26, 0.96, 0, 0);
}

.result-item.green::before {
  background-color: var(--color-lime);
}

.result-item.pink::before {
  background-color: var(--color-pink);
}

.result-item.yellow::before {
  background-color: var(--color-yellow);
}

.result-image {
  position: absolute;
  width: 203.53px;
  height: 136.63px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.result-image.green {
  border-color: var(--color-lime);
}

.result-image.pink {
  border-color: var(--color-pink);
}

.result-image.yellow {
  border-color: var(--color-yellow);
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-text {
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  font-family: var(--font-space-grotesk);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 220px;
}

/* Benefits Section */
.benefits {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1257px;
  margin: 0 auto;
}

.benefit-tag {
  background-color: var(--color-white);
  border-radius: 30px;
  padding: 12px 24px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-space-grotesk);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-text-dark);
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--color-pink);
  box-shadow: 0px 3px 0px var(--color-pink);
}

.benefit-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 0px var(--color-pink);
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--color-text-dark);
}

.benefit-tag strong {
  font-weight: 700;
}

.benefit-tag-bonus {
  background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-yellow) 50%, var(--color-lime) 100%);
  background-size: 200% 200%;
  border: 2px solid var(--color-blue);
  font-weight: 700;
  animation: gradientRotate 6s ease-in-out infinite;
  box-shadow: 0px 5px 0px var(--color-blue);
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.benefit-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-badge.badge-lime {
  background-color: var(--color-lime);
  color: var(--color-dark);
}

.benefit-badge.badge-yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

.benefit-badge.badge-green {
  background-color: var(--color-green);
  color: var(--color-dark);
}

.benefit-badge.badge-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.benefit-badge.badge-pink {
  background-color: var(--color-pink);
  color: var(--color-white);
}

.benefit-badge.badge-bonus-exclusive {
  top: -15px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-size: 14px;
  padding: 6px 16px;
  background-color: var(--color-pink);
  color: var(--color-white);
}

/* CTA Section */
.cta {
  padding: 80px 20px;
  position: relative;
}

.cta-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 300px;
}

.cta-decoration-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.cta-decoration-left {
  left: 0;
  bottom: 0;
}

.cta-box {
  position: relative;
  max-width: 1149px;
  margin: 0 auto;
  border: 1px solid var(--color-pink);
  border-radius: 57px;
  padding: 60px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.cta-badge {
  position: absolute;
  top: -53px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-bg);
  padding: 0 20px;
}

.cta-content {
  text-align: center;
}

.cta-subtitle {
  font-family: var(--font-phonk);
  font-size: 48px;
 
}

.cta-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.cta-viralizar {
  background-color: var(--color-lime);
  color: #000;
  padding: 10px 40px;
  border-radius: 30px;
  font-family: var(--font-grotesk-collective);
  font-size: 85px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.cta-seu {
  font-family: var(--font-phonk);
  font-size: 80px;
}

.cta-headline-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.cta-perfil {
  font-family: var(--font-phonk);
  font-size: 80px;
  color: var(--color-pink);
}

.cta-hoje {
  font-family: var(--font-phonk);
  font-size: 80px;
}

.cta-question {
  font-family: var(--font-montserrat);
  font-size: 80px;
  font-weight: 600;
}

/* Footer */
.footer {
  padding: 55px 60px 50px;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  margin: 0 100px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-top.small {
  font-size: 12px;
  padding: 2px 10px;
}

.badge-bottom.small {
  font-size: 20px;
  padding: 4px 16px;
}

.footer-nav {
  display: flex;
  gap: 40px;
}

.footer-nav a {
  font-family: var(--font-grotesk-collective);
  font-size: 18px;
  text-decoration: none;
  color: var(--color-white);
}

.footer-nav a:hover {
  color: var(--color-lime);
}

.footer-copyright {
  font-family: var(--font-grotesk-collective);
  font-size: 18px;
  text-decoration: none;
  color: var(--color-white);
}

/* Motion Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(var(--rotation, 0deg));
  }
  70% {
    transform: scale(1.1) rotate(var(--rotation, 0deg));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(var(--rotation, 0deg));
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-10px) rotate(15deg);
  }
}

@keyframes floatDelayed {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes rotate {
  0%, 100% {
    transform: rotate(-18deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

/* Scroll Motion - elementos invisíveis até entrarem na viewport */
.scroll-motion {
  opacity: 0;
}

/* Motion Classes */
.motion-fade-down {
  animation: fadeDown 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.motion-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.motion-slide-up {
  animation: slideUp 0.7s ease-out forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.motion-scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.motion-pop {
  animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

.motion-float {
  animation: float 3s ease-in-out infinite;
}

.motion-float-delayed {
  animation: floatDelayed 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.motion-rotate {
  animation: rotate 4s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 2px rgba(0, 73, 255, 0.3), 0 0 4px rgba(0, 73, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 6px rgba(0, 73, 255, 0.4), 0 0 10px rgba(0, 73, 255, 0.3);
  }
}

.motion-glow {
  animation: glow 2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* Button Arrow Animation */
.btn-arrow {
  animation: arrowBounce 1s ease-in-out infinite;
}

/* Responsive Design */
/* Large Screens - 1400px+ */
@media (min-width: 1400px) {
  .hero-bg-morph {
    width: 280px;
    height: 295px;
    top: -50px;
  }
  
  .hero-bg-v-left {
    width: 260px;
    height: 290px;
    left: -100px;
  }
  
  .hero-bg-c-right {
    width: 260px;
    height: 235px;
    right: 20px;
  }
  
  .hero-bg-v-right {
    width: 380px;
    height: 420px;
    right: -20px;
  }
  
  .hero {
    padding: 40px 40px 120px;
  }
  
  .hero-content {
    max-width: 900px;
    gap: 30px;
  }
  
  .hero-headline-block {
    width: 900px;
    padding: 32px 0;
  }
  
  .headline-line {
    font-size: 76px;
  }
  
  .headline-big {
    font-size: 164px;
  }
  
  .logo {
    width: 200px;
  }
  
  .logo-small {
    width: 220px;
  }
  
  .hero-description {
    font-size: 20px;
    line-height: 30px;
    max-width: 680px;
  }
  
  .tag {
    font-size: 24px;
    padding: 10px 24px;
  }
  
  .tag-insights {
    top: -10px;
    right: 80px;
  }
  
  .tag-checklist {
    top: 165px;
    left: 24px;
  }
  
  .tag-seguidores {
    bottom: 28px;
    right: 0;
  }
  
  .hero-deco-smiley {
    top: -50px;
    left: 130px;
    width: 100px;
    height: 98px;
  }
  
  .hero-deco-arrows {
    top: 80px;
    right: -20px;
    width: 105px;
    height: 132px;
  }
  
  .hero-deco-star {
    bottom: 25px;
    left: 200px;
    width: 80px;
    height: 85px;
  }
  
  .btn {
    font-size: 28px;
    padding: 20px 32px;
    gap: 14px;
  }
}

/* Extra Large Screens - 1920px+ */
@media (min-width: 1920px) {
  .hero {
    padding: 60px 60px 160px;
  }
  
  .hero-content {
    max-width: 1100px;
    gap: 40px;
  }
  
  .hero-headline-block {
    width: 1100px;
    padding: 40px 0;
  }
  
  .headline-line {
    font-size: 94px;
  }
  
  .headline-big {
    font-size: 200px;
  }
  
  .logo {
    width: 240px;
  }
  
  .logo-small {
    width: 260px;
  }
  
  .hero-description {
    font-size: 24px;
    line-height: 36px;
    max-width: 800px;
  }
  
  .tag {
    font-size: 28px;
    padding: 12px 28px;
  }
  
  .tag-insights {
    top: -12px;
    right: 100px;
  }
  
  .tag-checklist {
    top: 200px;
    left: 30px;
  }
  
  .tag-seguidores {
    bottom: 35px;
    right: 0;
  }
  
  .hero-deco-smiley {
    top: -60px;
    left: 160px;
    width: 120px;
    height: 118px;
  }
  
  .hero-deco-arrows {
    top: 100px;
    right: -30px;
    width: 130px;
    height: 163px;
  }
  
  .hero-deco-star {
    bottom: 30px;
    left: 250px;
    width: 100px;
    height: 106px;
  }
  
  .btn {
    font-size: 32px;
    padding: 24px 40px;
    gap: 16px;
  }
}

/* Ultra Wide Screens - 2560px+ */
@media (min-width: 2560px) {
  .hero {
    padding: 80px 80px 200px;
  }
  
  .hero-content {
    max-width: 1400px;
    gap: 50px;
  }
  
  .hero-headline-block {
    width: 1400px;
    padding: 50px 0;
  }
  
  .headline-line {
    font-size: 120px;
  }
  
  .headline-big {
    font-size: 256px;
  }
  
  .logo {
    width: 300px;
  }
  
  .logo-small {
    width: 320px;
  }
  
  .hero-description {
    font-size: 28px;
    line-height: 42px;
    max-width: 1000px;
  }
  
  .tag {
    font-size: 34px;
    padding: 14px 34px;
  }
  
  .tag-insights {
    top: -15px;
    right: 130px;
  }
  
  .tag-checklist {
    top: 260px;
    left: 40px;
  }
  
  .tag-seguidores {
    bottom: 45px;
    right: 0;
  }
  
  .hero-deco-smiley {
    top: -80px;
    left: 200px;
    width: 150px;
    height: 147px;
  }
  
  .hero-deco-arrows {
    top: 130px;
    right: -40px;
    width: 160px;
    height: 200px;
  }
  
  .hero-deco-star {
    bottom: 40px;
    left: 320px;
    width: 124px;
    height: 132px;
  }
  
  .btn {
    font-size: 38px;
    padding: 28px 48px;
    gap: 18px;
  }
}

@media (max-width: 1200px) {
  .headline-row {
    font-size: 40px;
  }
  
  .headline-big > span:first-child {
    font-size: 80px;
  }
  
  .cta-viralizar {
    font-size: 60px;
  }
  
  .cta-seu,
  .cta-perfil,
  .cta-hoje {
    font-size: 60px;
  }
}

/* Tablet - 768px to 1024px */
@media (max-width: 1024px) {
  .hero-headline-block {
    width: 100%;
    max-width: 600px;
  }
  
  .headline-line {
    font-size: 48px;
  }
  
  .headline-big {
    font-size: 100px;
  }
  
  .tag-insights {
    top: -5px;
    right: 40px;
  }
  
  .tag-checklist {
    top: 105px;
    left: 10px;
  }
  
  .tag-seguidores {
    bottom: 15px;
    right: -10px;
  }
  
  .hero-deco-smiley {
    top: -30px;
    left: 80px;
    width: 60px;
    height: 58px;
  }
  
  .hero-deco-arrows {
    top: 50px;
    right: -5px;
    width: 65px;
    height: 82px;
  }
  
  .hero-deco-star {
    bottom: 15px;
    left: 120px;
    width: 50px;
    height: 53px;
  }
  
  .cta-viralizar {
    font-size: 55px;
    padding: 8px 25px;
  }
  
  .cta-seu,
  .cta-perfil,
  .cta-hoje,
  .cta-question {
    font-size: 55px;
  }
  
  .cta-subtitle {
    font-size: 36px;
  }
}

/* Mobile - até 768px */
@media (max-width: 768px) {
  /* Hero Background */
  .hero-bg-morph {
    width: 120px;
    height: 130px;
    top: -10px;
    left: -40px;
  }
  
  .hero-bg-v-left {
    width: 100px;
    height: 110px;
    left: -60px;
    top: 180px;
  }
  
  .hero-bg-c-right {
    width: 100px;
    height: 90px;
    right: -30px;
    top: 60px;
  }
  
  .hero-bg-v-right {
    width: 150px;
    height: 165px;
    right: -50px;
    top: 350px;
  }

  /* Hero Section */
  .hero {
    padding: 20px 16px 60px;
    min-height: auto;
  }
  
  .hero-content {
    gap: 16px;
  }
  
  .logo {
    width: 120px;
  }
  
  .logo-small {
    width: 140px;
  }
  
  /* Hero Headline Block */
  .hero-headline-block {
    width: 100%;
    padding: 20px 0;
  }
  
  .hero-main-text {
    white-space: normal;
  }
  
  .headline-line {
    font-size: 28px;
  }
  
  .headline-big {
    font-size: 52px;
  }
  
  /* Tags repositioning for mobile */
  .tag {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .tag-insights {
    top: -10px;
    right: 10px;
  }
  
  .tag-checklist {
    top: 60px;
    left: 0;
  }
  
  .tag-seguidores {
    bottom: 5px;
    right: -5px;
  }
  
  /* Hero Decorations */
  .hero-deco-smiley {
    top: -25px;
    left: 40px;
    width: 40px;
    height: 39px;
  }
  
  .hero-deco-arrows {
    top: 30px;
    right: 0;
    width: 45px;
    height: 57px;
  }
  
  .hero-deco-star {
    bottom: 5px;
    left: 60px;
    width: 35px;
    height: 37px;
  }
  
  .hero-description {
    font-size: 14px;
    line-height: 20px;
    padding: 0 10px;
  }
  
  .highlight-badge {
    white-space: normal;
    display: inline;
  }

  /* Section Titles */
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .title-highlight {
    padding: 6px 16px;
    font-size: 24px;
  }
  
  /* Buttons */
  .btn {
    font-size: 16px;
    padding: 12px 20px;
    gap: 8px;
    width: 100%;
    max-width: 300px;
  }
  
  .btn-arrow {
    width: 20px;
    height: 20px;
  }
  
  /* Audience Section */
  .audience {
    padding: 60px 16px;
  }
  
  .cards-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .card {
    width: 100%;
    max-width: 100%;
    padding: 25px 24px 30px;
    border-radius: 30px;
    min-height: auto;
  }
  
  .card-number {
    font-size: 24px;
  }
  
  .card-title {
    font-size: 18px;
  }
  
  .card-text {
    font-size: 14px;
  }
  
  /* Results Section */
  .results {
    padding: 60px 16px;
  }
  
  .results-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .result-item {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 220px;
  }
  
  .result-item::before {
    width: 240px;
    height: 160px;
    margin-left: -120px;
  }
  
  .result-image {
    width: 250px;
    height: 168px;
  }
  
  .result-text {
    top: 180px;
    font-size: 13px;
    max-width: 280px;
    padding: 0 10px;
  }
  
  /* Benefits Section */
  .benefits {
    padding: 60px 16px;
  }
  
  .benefits-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .benefit-tag {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
    min-height: auto;
    gap: 8px;
  }
  
  .benefit-icon {
    width: 20px;
    height: 20px;
  }
  
  .benefit-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 8px;
  }
  
  .benefit-badge.badge-bonus-exclusive {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 8px;
  }
  
  /* CTA Section */
  .cta {
    padding: 60px 16px;
  }
  
  .cta-decoration {
    max-width: 150px;
    opacity: 0.5;
  }
  
  .cta-decoration-right {
    right: -30px;
  }
  
  .cta-decoration-left {
    left: -30px;
  }
  
  .cta-box {
    padding: 50px 20px 40px;
    border-radius: 30px;
  }
  
  .cta-badge {
    top: -40px;
  }
  
  .cta-badge .logo {
    width: 100px;
  }
  
  .cta-subtitle {
    font-size: 24px;
  }
  
  .cta-headline,
  .cta-headline-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .cta-viralizar {
    font-size: 28px;
    padding: 6px 16px;
    border-radius: 16px;
    transform: rotate(-2deg);
  }
  
  .cta-seu,
  .cta-perfil,
  .cta-hoje {
    font-size: 28px;
  }
  
  .cta-question {
    font-size: 28px;
  }
  
  /* Footer */
  .footer {
    margin: 0;
    padding: 30px 16px;
    border-radius: 0;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .footer-logo {
    display: flex;
    order: -2;
  }
  
  .footer-copyright {
    font-size: 14px;
    text-align: center;
    order: -1;
  }
  
  .footer-nav {
    flex-direction: row;
    gap: 8px;
    align-items: center;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-nav a:first-child::after {
    content: "|";
    margin-left: 8px;
    color: var(--color-white);
  }
  
  /* Background shapes */
  .bg-shape-1,
  .bg-shape-2,
  .bg-shape-3,
  .bg-shape-4 {
    width: 100px;
    height: 110px;
    opacity: 0.3;
  }
}

/* Small Mobile - até 480px */
@media (max-width: 480px) {
  .hero {
    padding: 16px 12px 50px;
  }
  
  .logo {
    width: 100px;
  }
  
  .headline-line {
    font-size: 22px;
  }
  
  .headline-big {
    font-size: 42px;
  }
  
  .tag {
    font-size: 10px;
    padding: 5px 10px;
  }
  
  .tag-insights {
    top: -8px;
    right: 5px;
  }
  
  .tag-checklist {
    top: 50px;
    left: -5px;
  }
  
  .tag-seguidores {
    bottom: 0;
    right: -10px;
  }
  
  .hero-deco-smiley {
    top: -20px;
    left: 25px;
    width: 32px;
    height: 31px;
  }
  
  .hero-deco-arrows {
    top: 25px;
    right: -5px;
    width: 38px;
    height: 48px;
  }
  
  .hero-deco-star {
    bottom: 0;
    left: 45px;
    width: 28px;
    height: 30px;
  }
  
  .hero-description {
    font-size: 13px;
    line-height: 18px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .title-highlight {
    font-size: 20px;
    padding: 5px 14px;
  }
  
  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  
  .card {
    padding: 20px 18px 25px;
  }
  
  .card-number {
    font-size: 20px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  .card-text {
    font-size: 13px;
  }
  
  .result-item {
    max-width: 260px;
  }
  
  .result-item::before {
    width: 220px;
    height: 148px;
    margin-left: -110px;
  }
  
  .result-image {
    width: 230px;
    height: 155px;
  }
  
  .result-text {
    top: 170px;
    font-size: 12px;
    max-width: 260px;
  }
  
  .benefit-tag {
    font-size: 13px;
    padding: 14px 16px;
  }
  
  .cta-box {
    padding: 45px 16px 35px;
  }
  
  .cta-subtitle {
    font-size: 18px;
  }
  
  .cta-headline,
  .cta-headline-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .cta-viralizar {
    font-size: 22px;
    padding: 5px 12px;
    border-radius: 14px;
  }
  
  .cta-seu,
  .cta-perfil,
  .cta-hoje {
    font-size: 22px;
  }
  
  .cta-question {
    font-size: 22px;
  }
  
  .footer-nav a {
    font-size: 14px;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
}
