/* ============================================
   MÉTODO MESTRE - DESIGN SYSTEM
   ============================================ */

/* CSS Variables */
:root {
  /* Colors */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(222, 47%, 11%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 11%);
  --primary: hsl(222, 47%, 11%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 20%, 96%);
  --secondary-foreground: hsl(222, 47%, 11%);
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(215, 16%, 47%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(214, 32%, 91%);
  
  /* Custom tokens */
  --navy: hsl(222, 47%, 11%);
  --navy-light: hsl(222, 47%, 20%);
  --gold: hsl(45, 93%, 47%);
  --gold-light: hsl(45, 93%, 58%);
  --gold-dark: hsl(45, 93%, 38%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45, 93%, 47%) 0%, hsl(35, 91%, 55%) 100%);
  --gradient-navy: linear-gradient(180deg, hsl(222, 47%, 11%) 0%, hsl(222, 47%, 18%) 100%);
  --gradient-hero: linear-gradient(180deg, hsl(222, 47%, 8%) 0%, hsl(222, 47%, 14%) 50%, hsl(222, 47%, 11%) 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 hsla(222, 47%, 11%, 0.05);
  --shadow-md: 0 4px 6px -1px hsla(222, 47%, 11%, 0.1), 0 2px 4px -1px hsla(222, 47%, 11%, 0.06);
  --shadow-lg: 0 10px 15px -3px hsla(222, 47%, 11%, 0.1), 0 4px 6px -2px hsla(222, 47%, 11%, 0.05);
  --shadow-xl: 0 20px 25px -5px hsla(222, 47%, 11%, 0.1), 0 10px 10px -5px hsla(222, 47%, 11%, 0.04);
  --shadow-gold: 0 4px 14px 0 hsla(45, 93%, 47%, 0.35);
  
  /* Radius */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

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

/* ============================================
   UTILITIES
   ============================================ */

.min-h-screen {
  min-height: 100vh;
}

.section-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-container {
    padding: 0 2rem;
  }
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: white;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.hidden-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hidden-mobile {
    display: block;
  }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 1.85rem;      /* Tamanho para celular */
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

/* Isso aumenta o título apenas em telas maiores */
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;       /* Tamanho para Tablet/PC */
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.875rem;   /* Tamanho para Monitores grandes */
  }
}

.section-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-hero {
  background: var(--gradient-gold);
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 hsla(45, 93%, 47%, 0.45);
}

.btn-outline {
  background: transparent;
  color: #f0a41a;
  border: 2px solid #f0a41a;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-full {
  width: 100%;
}

/* ============================================
   ICONS
   ============================================ */

.icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.icon-zap {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.animate-on-scroll.animated[data-animation="fade-up"] {
  animation-name: fadeUp;
}

.animate-on-scroll.animated[data-animation="slide-left"] {
  animation-name: slideLeft;
}

.animate-on-scroll.animated[data-animation="slide-right"] {
  animation-name: slideRight;
}

.animate-on-scroll.animated[data-animation="scale-up"] {
  animation-name: scaleUp;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.hero-bg-circle-1 {
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(45, 93%, 47%, 0.05);
}

.hero-bg-circle-2 {
  bottom: 25%;
  right: 25%;
  width: 20rem;
  height: 20rem;
  background: hsla(45, 93%, 47%, 0.03);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}

.hero-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(45, 93%, 47%, 0.1);
  border: 1px solid hsla(45, 93%, 47%, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.hero-badge span {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-headline {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
  line-height: 1.0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.1rem;
}

@media (min-width: 640px) {
  .hero-headline {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.5rem;
  }
}

.hero-subheadline {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .hero-subheadline {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 0.6s ease-out 1s forwards;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  animation: bounce 1.5s infinite;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
  padding: 6rem 0;
  background: var(--background);
}

.problems-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s ease;
}

.problem-card:hover {
  border-color: hsla(45, 93%, 47%, 0.3);
}

.problem-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.problem-icon-red {
  background: hsla(0, 84%, 60%, 0.1);
}

.problem-icon-red svg {
  color: var(--destructive);
}

.problem-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.problem-content p {
  color: var(--muted-foreground);
}

.problem-quote {
  margin-top: 4rem;
  text-align: center;
}

.problem-quote > div,
.problem-quote > p {
  display: inline-block;
  background: hsla(222, 47%, 11%, 0.05);
  border: 1px solid hsla(222, 47%, 11%, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 42rem;
}

.problem-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-section {
  padding: 6rem 0;
  background: var(--gradient-navy);
  color: var(--primary-foreground);
}

.pillars-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pillar-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.7);
}

.solution-quote {
  text-align: center;
}

.solution-quote > div,
.solution-quote > p {
  display: inline-block;
  border: 2px solid hsla(45, 93%, 47%, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  background: hsla(45, 93%, 47%, 0.05);
}

.solution-quote p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
  padding: 6rem 0;
  background: var(--background);
}

.benefits-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: hsla(45, 93%, 47%, 0.3);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.benefit-content {
  flex: 1;
}

.benefit-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.benefit-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.benefit-check {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   WHAT YOU GET SECTION
   ============================================ */

.whatyouget-section {
  padding: 6rem 0;
  background: var(--secondary);
}

.whatyouget-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .whatyouget-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .whatyouget-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.whatyouget-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.whatyouget-card:hover {
  box-shadow: var(--shadow-lg);
}

.whatyouget-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: hsla(222, 47%, 11%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.whatyouget-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.whatyouget-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.whatyouget-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   FOR WHO SECTION
   ============================================ */

.forwho-section {
  padding: 6rem 0;
  background: var(--background);
}

.forwho-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .forwho-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.forwho-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.forwho-card-yes {
  border: 2px solid hsla(45, 93%, 47%, 0.3);
}

.forwho-card-no {
  border: 1px solid var(--border);
}

.forwho-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.forwho-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.forwho-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.forwho-icon-gold {
  background: var(--gradient-gold);
}

.forwho-icon-gold svg {
  color: var(--primary);
}

.forwho-icon-gray {
  background: var(--muted);
}

.forwho-icon-gray svg {
  color: var(--muted-foreground);
}

.forwho-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.forwho-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.forwho-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.forwho-list li svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.forwho-list li span {
  color: var(--foreground);
}

.forwho-list-gray li svg {
  color: var(--muted-foreground);
}

.forwho-list-gray li span {
  color: var(--muted-foreground);
}

/* ============================================
   AUTHORITY SECTION
   ============================================ */

.authority-section {
  padding: 6rem 0;
  background: var(--secondary);
}

.authority-card {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .authority-card {
    flex-direction: row;
    padding: 3rem;
  }
}

.authority-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.authority-image-glow {
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl);
  filter: blur(20px);
  opacity: 0.3;
}

.authority-image {
  position: relative;
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

@media (min-width: 1024px) {
  .authority-image {
    width: 18rem;
    height: 18rem;
  }
}

.authority-content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .authority-content {
    text-align: left;
  }
}

.authority-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .authority-content h3 {
    font-size: 1.875rem;
  }
}

.authority-role {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* --- AJUSTE DAS CREDENCIAIS DO PROFESSOR (ESTILO LOVABLE) --- */
.authority-credentials {
  display: flex;
  flex-wrap: wrap;        /* Permite que os itens quebrem linha */
  justify-content: center; /* Centraliza no mobile */
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.credential {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  flex: 1 1 auto;         /* Faz os itens crescerem se houver espaço */
  min-width: fit-content;
  white-space: nowrap;    /* Impede que o texto interno quebre linha */
}

@media (min-width: 1024px) {
  .authority-credentials {
    justify-content: flex-start; /* Alinha à esquerda no desktop */
  }
  .credential {
    flex: 0 1 auto;
  }
}

.credential svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.credential span {
  font-size: 0.875rem;
  color: var(--foreground);
}

.authority-bio {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   OFFER SECTION
   ============================================ */

.offer-section {
  padding: 6rem 0;
  background: var(--gradient-navy);
  color: var(--primary-foreground);
}

.offer-card {
  max-width: 28rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid hsla(45, 93%, 47%, 0.3);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .offer-card {
    padding: 2.5rem;
  }
}

.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-gold);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  border-bottom-left-radius: var(--radius-xl);
}

.offer-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.offer-price-old {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

/* --- AJUSTE DO PREÇO PARA NÃO QUEBRAR --- */
.offer-price-current {
  flex-direction: column;      /* Empilha o R$ em cima do valor no mobile */
  gap: 0;
  line-height: 1;
}

.offer-amount {
  font-size: 3.5rem;           /* Tamanho ajustado para não vazar */
  letter-spacing: -2px;
}

/* --- ACESSO IMEDIATO SEM QUEBRAR --- */
.offer-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gradient-gold);
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;      /* Impede que o texto quebre em 2 linhas */
  
  /* Mobile */
  font-size: 0.7rem;
  padding: 0.3rem 0.8rem;
  border-bottom-left-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .offer-badge {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: var(--radius-xl);
  }
}

/* --- COMPRA SEGURA EM UMA LINHA --- */
.offer-trust {
  display: flex;
  flex-direction: row;      /* Força lado a lado */
  flex-wrap: nowrap;        /* Proíbe quebra de linha */
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  
  /* Mobile: Espaço reduzido para caber */
  gap: 0.75rem; 
  font-size: 0.7rem;
}

.offer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;      /* Mantém ícone e texto juntos */
}

@media (min-width: 768px) {
  .offer-trust {
    gap: 1.5rem;
    font-size: 0.875rem;
  }
}
  
  .offer-price-current {
    flex-direction: row;       /* No mobile, mantém R$ e Valor na mesma linha se couber */
    align-items: baseline;
    justify-content: center;
  }
}

/* No desktop volta ao tamanho original */
@media (min-width: 1024px) {
  .offer-price-current {
    flex-direction: row;
  }
  .offer-amount {
    font-size: 4.5rem;
  }
}

.offer-price-installments {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offer-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.offer-list li span {
  color: var(--primary-foreground);
}

.offer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.offer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-trust-item svg {
  width: 1rem;
  height: 1rem;
}

.offer-guarantee {
  display: flex;                /* Mudou de inline-flex para flex */
  align-items: center;          /* Alinhamento vertical (ícone vs texto) */
  justify-content: center;      /* Alinhamento horizontal (centraliza o conteúdo) */
  gap: 0.75rem;
  
  /* Centralização da barra na página */
  width: fit-content;           /* A barra terá o tamanho do conteúdo */
  margin: 2rem auto;            /* O 'auto' centraliza a barra inteira no meio da página */
  
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;        /* Garante o formato de pílula */
  padding: 0.75rem 1.5rem;
}

.offer-guarantee span {
  color: var(--primary-foreground);
  line-height: 1;               /* Remove sobras da fonte Poppins */
  display: flex;
  align-items: center;
}

.offer-guarantee svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;               /* Impede que o ícone amasse */
  transform: translateY(-1px);  /* Ajuste fino visual para a Poppins */
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 6rem 0;
  background: var(--background);
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 3rem;
  }
}

.cta-content p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 2rem 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.875rem;
}
