/*
Theme Name: Curso Gestante
Theme URI: https://bemstarfisio.com.br
Author: Bem-Starfisio
Description: Landing page de curso para gestantes - Fisioterapia pélvica
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: curso-gestante
*/

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
======================================== */
:root {
  /* Colors - HSL Format */
  --background: 30 50% 98%;
  --foreground: 20 30% 20%;
  --card: 30 40% 96%;
  --card-foreground: 20 30% 20%;
  --popover: 30 50% 98%;
  --popover-foreground: 20 30% 20%;
  --primary: 350 75% 55%;
  --primary-foreground: 0 0% 100%;
  --secondary: 25 60% 92%;
  --secondary-foreground: 20 30% 25%;
  --muted: 30 30% 90%;
  --muted-foreground: 20 15% 45%;
  --accent: 350 70% 50%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 100%;
  --border: 30 30% 85%;
  --input: 30 30% 85%;
  --ring: 350 75% 55%;
  --success: 142 76% 36%;
  --warning: 38 92% 50%;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(350, 75%, 55%) 0%, hsl(25, 80%, 60%) 100%);
  --gradient-cta: linear-gradient(135deg, hsl(350, 80%, 50%) 0%, hsl(350, 90%, 45%) 50%, hsl(25, 85%, 55%) 100%);
  --gradient-warm: linear-gradient(180deg, hsl(30, 50%, 98%) 0%, hsl(25, 60%, 92%) 100%);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(233, 89, 108, 0.3);
  
  /* Border Radius */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

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

/* ========================================
   LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-cta {
  background: var(--gradient-cta);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: pulse-shadow 2s ease-in-out infinite;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(233, 89, 108, 0.4);
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

@keyframes pulse-shadow {
  0%, 100% {
    box-shadow: var(--shadow-lg), 0 0 40px rgba(233, 89, 108, 0.3);
  }
  50% {
    box-shadow: var(--shadow-xl), 0 0 60px rgba(233, 89, 108, 0.5);
  }
}

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

/* ========================================
   URGENCY BANNER
======================================== */
.urgency-banner {
  background: var(--gradient-cta);
  padding: 0.75rem 1rem;
  text-align: center;
  color: hsl(var(--primary-foreground));
}

.urgency-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .urgency-banner__content {
    font-size: 1rem;
  }
}

.urgency-banner__icon {
  width: 1rem;
  height: 1rem;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  background: var(--gradient-warm);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(233, 89, 108, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(38, 92%, 50%) 0%, hsl(32, 95%, 45%) 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  animation: pulse-soft 2s ease-in-out infinite;
}

.hero__title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}

.hero__subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -0.5rem;
  object-fit: cover;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__rating {
  display: flex;
  flex-direction: column;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: hsl(38, 92%, 50%);
}

.hero__star {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero__rating-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero__trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

.hero__trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero__trust-badge-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.hero__trust-badge-text {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.hero__image-container {
  position: relative;
}

.hero__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero__decorative {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
}

.hero__decorative--1 {
  top: -50px;
  right: -50px;
}

.hero__decorative--2 {
  bottom: -50px;
  left: -50px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  padding: 4rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .about {
    padding: 6rem 0;
  }
}

.about__container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about__image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__content {
  text-align: center;
}

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

.about__title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about__title {
    font-size: 2.25rem;
  }
}

.about__text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ========================================
   FOR YOU SECTION
======================================== */
.for-you {
  padding: 4rem 0;
  background: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .for-you {
    padding: 6rem 0;
  }
}

.for-you__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .for-you__title {
    font-size: 2.25rem;
  }
}

.for-you__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.for-you__card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border-left: 4px solid hsl(var(--primary));
}

.for-you__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.for-you__card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

.for-you__card-title {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.for-you__card-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits {
  padding: 4rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .benefits {
    padding: 6rem 0;
  }
}

.benefits__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .benefits__title {
    font-size: 2.25rem;
  }
}

.benefits__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.benefits__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--secondary));
  border-radius: var(--radius);
  transition: all var(--transition-base);
}

.benefits__item:hover {
  background: hsl(var(--card));
  box-shadow: var(--shadow-md);
}

.benefits__item-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.benefits__item-text {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.benefits__cta {
  text-align: center;
  margin-top: 2rem;
}

.benefits__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1.5rem;
}

/* ========================================
   COURSE CONTENT SECTION
======================================== */
.course-content {
  padding: 4rem 0;
  background: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .course-content {
    padding: 6rem 0;
  }
}

.course-content__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .course-content__title {
    font-size: 2.25rem;
  }
}

.course-content__grid {
  display: grid;
  gap: 1.5rem;
}

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

.course-content__card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.course-content__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-content__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.course-content__card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.course-content__card-number {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.course-content__card-title {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.course-content__card-text {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
}

/* ========================================
   VIDEO TESTIMONIALS SECTION
======================================== */
.video-testimonials {
  padding: 4rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .video-testimonials {
    padding: 6rem 0;
  }
}

.video-testimonials__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .video-testimonials__title {
    font-size: 2.25rem;
  }
}

.video-testimonials__subtitle {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
}

.video-testimonials__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.video-testimonials__carousel::-webkit-scrollbar {
  height: 6px;
}

.video-testimonials__carousel::-webkit-scrollbar-track {
  background: hsl(var(--muted));
  border-radius: var(--radius-full);
}

.video-testimonials__carousel::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: var(--radius-full);
}

.video-testimonials__item {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .video-testimonials__item {
    flex: 0 0 350px;
  }
}

.video-testimonials__card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-testimonials__video {
  position: relative;
  aspect-ratio: 9 / 16;
  background: hsl(var(--muted));
}

.video-testimonials__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-testimonials__video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--secondary)) 100%);
  color: hsl(var(--muted-foreground));
  text-align: center;
  padding: 1rem;
}

.video-testimonials__info {
  padding: 1rem;
}

.video-testimonials__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.video-testimonials__result {
  font-size: 0.875rem;
  color: hsl(var(--primary));
}

/* ========================================
   SCREENSHOT GALLERY SECTION
======================================== */
.screenshot-gallery {
  padding: 4rem 0;
  background: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .screenshot-gallery {
    padding: 6rem 0;
  }
}

.screenshot-gallery__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .screenshot-gallery__title {
    font-size: 2.25rem;
  }
}

.screenshot-gallery__subtitle {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
}

.screenshot-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.screenshot-gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.screenshot-gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.screenshot-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--card)) 100%);
  color: hsl(var(--muted-foreground));
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox__image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   TRAINING PREVIEW SECTION
======================================== */
.training-preview {
  padding: 4rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .training-preview {
    padding: 6rem 0;
  }
}

.training-preview__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .training-preview__title {
    font-size: 2.25rem;
  }
}

.training-preview__subtitle {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
}

.training-preview__grid {
  display: grid;
  gap: 2rem;
}

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

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

.training-preview__card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.training-preview__video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: hsl(var(--muted));
}

.training-preview__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.training-preview__video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--muted)) 0%, hsl(var(--secondary)) 100%);
  color: hsl(var(--muted-foreground));
  text-align: center;
  padding: 1rem;
}

.training-preview__info {
  padding: 1.5rem;
}

.training-preview__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsl(var(--secondary));
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.training-preview__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.training-preview__description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
  padding: 4rem 0;
  background: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .testimonials {
    padding: 6rem 0;
  }
}

.testimonials__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .testimonials__title {
    font-size: 2.25rem;
  }
}

.testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.testimonials__card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonials__quote {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.testimonials__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  font-family: var(--font-display);
  color: hsl(var(--primary));
  opacity: 0.3;
  line-height: 1;
}

.testimonials__quote-text {
  font-style: italic;
  color: hsl(var(--foreground));
}

.testimonials__result-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, hsl(142, 76%, 36%) 0%, hsl(142, 70%, 45%) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.testimonials__stars {
  display: flex;
  gap: 0.125rem;
  color: hsl(38, 92%, 50%);
  margin-bottom: 0.75rem;
}

.testimonials__star {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonials__author-name {
  font-weight: 600;
}

.testimonials__verified {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(142, 76%, 36%);
}

.testimonials__verified-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.testimonials__note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ========================================
   BONUS SECTION
======================================== */
.bonus {
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(25, 80%, 55%) 100%);
  color: white;
}

@media (min-width: 768px) {
  .bonus {
    padding: 6rem 0;
  }
}

.bonus__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
  color: white;
}

@media (min-width: 768px) {
  .bonus__title {
    font-size: 2.25rem;
  }
}

.bonus__grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.bonus__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bonus__card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus__card-number {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bonus__card-title {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: white;
}

.bonus__card-text {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.bonus__card-price {
  font-size: 0.875rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.bonus__cta {
  text-align: center;
  margin-top: 3rem;
}

.bonus .btn-cta {
  background: white;
  color: hsl(var(--primary));
}

.bonus .btn-cta:hover {
  background: hsl(var(--secondary));
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing {
  padding: 4rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) {
  .pricing {
    padding: 6rem 0;
  }
}

.pricing__container {
  max-width: 600px;
  margin: 0 auto;
}

.pricing__comparison {
  background: hsl(var(--secondary));
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.pricing__comparison-title {
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.pricing__comparison-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing__comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed hsl(var(--border));
}

.pricing__comparison-item:last-child {
  border-bottom: none;
}

.pricing__comparison-label {
  color: hsl(var(--muted-foreground));
}

.pricing__comparison-value {
  font-weight: 600;
  text-decoration: line-through;
  color: hsl(var(--destructive));
}

.pricing__card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid hsl(var(--primary));
}

.pricing__badge-container {
  background: var(--gradient-cta);
  padding: 0.75rem;
  text-align: center;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.pricing__content {
  padding: 2rem;
  text-align: center;
}

.pricing__original {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.pricing__current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.pricing__amount {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: hsl(var(--primary));
  line-height: 1;
}

.pricing__installments {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.pricing__full {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.pricing__savings {
  display: inline-block;
  background: linear-gradient(135deg, hsl(142, 76%, 36%) 0%, hsl(142, 70%, 45%) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.pricing__cta {
  width: 100%;
  margin-bottom: 1.5rem;
}

.pricing__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.pricing__guarantee-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(142, 76%, 36%);
}

.pricing__seals {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.pricing__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

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

/* ========================================
   FAQ SECTION
======================================== */
.faq {
  padding: 4rem 0;
  background: hsl(var(--secondary));
}

@media (min-width: 768px) {
  .faq {
    padding: 6rem 0;
  }
}

.faq__title {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .faq__title {
    font-size: 2.25rem;
  }
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: hsl(var(--foreground));
  transition: background var(--transition-fast);
}

.faq__question:hover {
  background: hsl(var(--secondary));
}

.faq__question-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-base);
}

.faq__item.active .faq__question-icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-content {
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta {
  padding: 4rem 0;
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--secondary)) 100%);
}

@media (min-width: 768px) {
  .final-cta {
    padding: 6rem 0;
  }
}

.final-cta__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta__title {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .final-cta__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .final-cta__title {
    font-size: 2.75rem;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: hsl(var(--foreground));
  padding: 2rem 0;
}

.footer__content {
  text-align: center;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer__disclaimer {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
}

.floating-whatsapp__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  animation: bounce 2s ease-in-out infinite;
}

.floating-whatsapp__button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.floating-whatsapp__icon {
  width: 1.75rem;
  height: 1.75rem;
}

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

/* ========================================
   STICKY CTA BAR
======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cta__price {
  display: none;
}

@media (min-width: 640px) {
  .sticky-cta__price {
    display: flex;
    flex-direction: column;
  }
}

.sticky-cta__original {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
}

.sticky-cta__current {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.sticky-cta__button {
  flex: 1;
}

@media (min-width: 640px) {
  .sticky-cta__button {
    flex: none;
  }
}

/* ========================================
   UTILITIES
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
