:root {
  /* Core Brand Colors - Baseado na div atenção */
  --primary-green: #b4ff91;
  --primary-pink: #ff8bd9;
  --secondary-pink: #ff69b4;
  --accent-pink: #ff1493;
  --cream: #fff8f0;
  --soft-cream: #fefbf6;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #2d2d2d;
  --text-medium: #555555;
  --text-light: #777777;
  --dark-gray: #2d2d2d;
  --text-gray: #555555;
  --light-pink: #ffb3d6;
  --soft-pink: #ffeef7;
  --shadow-pink: rgba(255, 139, 217, 0.3);
  --rose-gold: #ff8bd9;
  --attention-green: #b4ff91;
  --gradient-primary: linear-gradient(
    135deg,
    var(--secondary-pink),
    var(--accent-pink)
  );
  --gold: #ffd700;
  --success-green: #4caf50;
  --error-red: #f44336;
  --warning-yellow: #ffc107;

  /* Design System - Padrão Consistente */
  --border-standard: 3px solid var(--black);
  --shadow-standard: 8px 8px 0 var(--primary-pink);
  --radius-standard: 25px;
  --radius-large: 30px;
  --radius-small: 20px;

  /* Hover Effects */
  --shadow-hover: 12px 12px 0 var(--primary-pink);
  --shadow-active: 4px 4px 0 var(--primary-pink);

  /* Gradients Modernos para Mulheres */
  --gradient-main: linear-gradient(135deg, var(--cream), var(--soft-cream));
  --gradient-accent: linear-gradient(
    135deg,
    var(--secondary-pink),
    var(--accent-pink)
  );
  --gradient-soft: linear-gradient(135deg, var(--soft-cream), var(--white));
  --gradient-feminine: linear-gradient(135deg, #ffeef7, #fff0f8, #fef7f7);
  --gradient-pink-glow: linear-gradient(
    135deg,
    rgba(255, 139, 217, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  --gradient-green-soft: linear-gradient(
    135deg,
    rgba(180, 255, 145, 0.2),
    rgba(180, 255, 145, 0.1)
  );

  /* Spacing System (8px base) */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 40px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* Type Scale with Clamp (Fluid Typography) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.563rem);
  --text-2xl: clamp(1.563rem, 1.4rem + 0.8vw, 1.953rem);
  --text-3xl: clamp(1.953rem, 1.75rem + 1vw, 2.441rem);
  --text-4xl: clamp(2.441rem, 2.1rem + 1.7vw, 3.052rem);

  /* CTA Button Variants */
  --btn-primary-bg: linear-gradient(
    135deg,
    var(--secondary-pink),
    var(--accent-pink)
  );
  --btn-secondary-bg: transparent;
  --btn-secondary-border: 3px solid var(--accent-pink);
  --btn-tertiary-bg: transparent;

  /* Dark Mode Support */
  --dark-bg: #1a1a1a;
  --dark-text: #f5f5f5;
  --dark-border: #404040;
}

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

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--gradient-feminine);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="hearts-bg" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20,25 C20,20 15,15 10,15 C5,15 0,20 0,25 C0,35 20,50 20,50 C20,50 40,35 40,25 C40,20 35,15 30,15 C25,15 20,20 20,25" fill="%23ff8bd9" opacity="0.02"/></pattern></defs><rect width="200" height="200" fill="url(%23hearts-bg)"/></svg>');
  pointer-events: none;
  z-index: 0;
}

/* Sistema de Design Base */
.card-base {
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-base::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-pink-glow);
  opacity: 0.6;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.card-base:hover::before {
  opacity: 0.8;
}

.card-base > * {
  position: relative;
  z-index: 1;
}

.card-base:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.card-base:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-active);
}

.button-base {
  background: var(--primary-green);
  color: var(--black);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 18px 35px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.button-base:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.05);
}

.button-base:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-active);
}

/* CTA Button Hierarchy System */
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 20px 45px;
  font-size: var(--text-lg);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.1);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-active);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--accent-pink);
  outline-offset: 2px;
}

/* Secondary Button - Outline Style */
.btn-secondary {
  background: var(--white);
  color: var(--accent-pink);
  border: var(--btn-secondary-border);
  border-radius: var(--radius-large);
  box-shadow: 4px 4px 0 rgba(255, 20, 147, 0.15);
  padding: 16px 35px;
  font-size: var(--text-base);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  min-height: 44px;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-secondary:hover {
  background: var(--soft-pink);
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 rgba(255, 20, 147, 0.2);
}

.btn-secondary:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0 rgba(255, 20, 147, 0.15);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--accent-pink);
  outline-offset: 2px;
}

/* Tertiary Button - Text Link Style */
.btn-tertiary {
  background: transparent;
  color: var(--accent-pink);
  border: none;
  padding: 8px 0;
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.btn-tertiary::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-pink);
  transition: width 0.3s ease;
}

.btn-tertiary:hover::after {
  width: 100%;
}

.btn-tertiary:hover {
  color: var(--secondary-pink);
}

.btn-tertiary:focus-visible {
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accessibility: Focus Visible States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.section-base {
  padding: 80px 0;
  position: relative;
  background: var(--gradient-feminine);
  overflow: hidden;
}

.section-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.section-base > * {
  position: relative;
  z-index: 1;
}

.image-frame {
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.image-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-pink-glow);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.image-frame:hover::after {
  opacity: 0.1;
}

.image-frame:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }
}

/* Hero Section - Image Centric Design */
.hero-section-image-centric {
  padding: 60px 0;
  background: var(--gradient-feminine);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section-image-centric::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.hero-section-image-centric::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-rating-top {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.hero-image-centric-layout {
  position: relative;
  display: grid;
  grid-template-areas:
    "content image"
    "content image";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero-central-image {
  grid-area: image;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text-around {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 500px;
}

.hero-title-area {
  text-align: left;
}

.hero-features-around {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-left,
.feature-right {
  flex: 1;
  min-width: 140px;
}

.feature-left .feature-bubble,
.feature-right .feature-bubble {
  width: 100%;
  justify-content: center;
}

.hero-subtitle-area {
  text-align: left;
}

.hero-cta-area {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  padding: 12px 20px;
  box-shadow: var(--shadow-standard);
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
}

.hero-badge .rating-text {
  margin-left: 8px;
  color: #666;
}

/* Hero Text Compact Styles */
.hero-title-compact {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}

.title-line-compact {
  display: block;
  color: #444;
  font-weight: 600;
}

.title-line-highlight {
  display: block;
  margin: 10px 0;
}

.title-highlight-word {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  font-size: 1.1em;
  position: relative;
}

.title-highlight-word::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  border-radius: 2px;
  opacity: 0.6;
}

.feature-bubble {
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.feature-bubble:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 18px;
}

.hero-subtitle-compact {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
}

.hero-subtitle-compact strong {
  color: #ff1493;
  font-weight: 700;
}

.cta-button-compact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-accent);
  color: white !important;
  padding: 18px 35px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.cta-button-compact::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.cta-button-compact:hover::before {
  left: 100%;
}

.cta-button-compact:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white !important;
}

.cta-arrow {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.cta-button-compact:hover .cta-arrow {
  transform: translateX(5px);
  color: white !important;
}

.cta-guarantee-compact {
  font-size: 12px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-guarantee-compact i {
  color: #4caf50;
}

/* Hero Text Masterpiece Design */
.hero-text-masterpiece {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 248, 252, 0.98) 25%,
    rgba(255, 255, 255, 0.95) 75%,
    rgba(248, 250, 255, 0.97) 100%
  );
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard), inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 0 1px rgba(255, 20, 147, 0.1);
  padding: 50px 40px;
  margin-bottom: 35px;
  position: relative;
  overflow: hidden;
}

.text-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 20, 147, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 105, 180, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 20, 147, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.text-decoration-1,
.text-decoration-2 {
  position: absolute;
  font-size: 28px;
  z-index: 1;
  opacity: 0.6;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.text-decoration-1 {
  top: 15px;
  right: 20px;
  animation-delay: 0s;
}

.text-decoration-2 {
  bottom: 20px;
  left: 25px;
  animation-delay: 2s;
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.8;
  }
}

.hero-title-advanced {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.title-section {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 12px;
  position: relative;
}

.title-section-1 {
  margin-left: 0px;
}

.title-section-main {
  margin-left: 25px;
  position: relative;
  justify-content: flex-start;
}

.title-section-3 {
  margin-left: 15px;
}

.title-section-final {
  margin-left: 35px;
}

.title-small {
  color: #999;
  font-weight: 300;
  font-size: 0.7em;
  letter-spacing: 1px;
}

.title-word-flow {
  color: #444;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.title-word-flow:hover {
  color: #ff1493;
  transform: translateY(-2px);
}

.main-words-container {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.main-word {
  font-weight: 900;
  font-size: 1.1em;
  position: relative;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.gradient-word {
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.main-word::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.main-word:hover::after {
  transform: scaleX(1);
}

.words-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: radial-gradient(
    ellipse,
    rgba(255, 20, 147, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.title-word-elegant {
  color: #555;
  font-weight: 500;
  font-style: italic;
  position: relative;
}

.final-emphasis {
  color: #ff1493;
  font-weight: 700;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  padding: 4px 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 20, 147, 0.2);
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  gap: 15px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff1493, transparent);
  border-radius: 1px;
}

.divider-gem {
  font-size: 20px;
  padding: 8px;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  border: var(--border-standard);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-subtitle-advanced {
  position: relative;
  z-index: 2;
}

.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 10px 20px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: badgeFloat 3s ease-in-out infinite;
}

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

.subtitle-text {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.subtitle-intro {
  color: #ff1493;
  font-weight: 700;
  position: relative;
}

.subtitle-emphasis {
  color: #333;
  font-weight: 600;
  font-style: italic;
  position: relative;
}

.subtitle-highlight-box {
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  color: #333;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 20, 147, 0.15);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.subtitle-highlight-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
}

.hero-features {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-small);
  padding: 12px 18px;
  box-shadow: var(--shadow-standard);
  font-weight: 600;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 18px;
}

.hero-cta {
  margin-top: 40px;
}

.cta-button-hero {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient-accent);
  color: white !important;
  padding: 20px 40px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.cta-button-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.cta-button-hero:hover::before {
  left: 100%;
}

.cta-button-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white !important;
}

.cta-arrow {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.cta-button-hero:hover .cta-arrow {
  transform: translateX(5px);
  color: white !important;
}

.cta-guarantee {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-guarantee i {
  color: #4caf50;
}

.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-decorative-container {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.floating-badge {
  position: absolute;
  top: -10px;
  left: -20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 12px 20px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 14px;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatBadge 3s ease-in-out infinite;
}

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

.guarantee-badge {
  position: absolute;
  bottom: -15px;
  right: -25px;
  background: var(--attention-green);
  color: var(--white);
  padding: 15px;
  border: var(--border-standard);
  border-radius: 50%;
  box-shadow: var(--shadow-standard);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.guarantee-badge i {
  font-size: 18px;
  margin-bottom: 2px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-image-card {
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.hero-main-image {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-background-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.08) 0%,
    rgba(255, 105, 180, 0.05) 50%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.image-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  z-index: 1;
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hibis-natural-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: all 0.3s ease;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
  position: relative;
  z-index: 2;
  border-radius: var(--radius-standard);
  overflow: hidden;
}

.hibis-natural-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.decorative-element {
  position: absolute;
  font-size: 24px;
  z-index: 3;
  pointer-events: none;
}

.element-1 {
  top: 15%;
  right: 10%;
  animation: sparkle 3s ease-in-out infinite;
}

.element-2 {
  top: 70%;
  left: 5%;
  animation: sparkle 3s ease-in-out infinite 1s;
}

.element-3 {
  top: 45%;
  right: -5%;
  animation: sparkle 3s ease-in-out infinite 2s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Mobile responsivo para hero image-centric */
@media (max-width: 1024px) {
  .hero-image-centric-layout {
    grid-template-areas:
      "content"
      "image";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    max-width: 500px;
  }

  .hero-text-around {
    max-width: 100%;
  }

  .hero-title-area,
  .hero-subtitle-area,
  .hero-cta-area {
    text-align: center;
  }

  .hero-title-compact {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero-features-around {
    justify-content: center;
    gap: 20px;
  }

  .feature-left,
  .feature-right {
    flex: 0 0 auto;
    min-width: auto;
  }

  .hero-central-image {
    max-width: 350px;
    justify-self: center;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .hero-section-image-centric {
    padding: 40px 0;
    min-height: 80vh;
  }

  .hero-image-centric-layout {
    gap: 20px;
    max-width: 400px;
    padding: 0 15px;
    justify-items: center;
  }

  .hero-central-image {
    max-width: 300px;
    justify-self: center;
    align-self: center;
  }

  .hero-title-compact {
    font-size: 2rem;
  }

  .hero-subtitle-compact {
    font-size: 1.1rem;
  }

  .feature-bubble {
    padding: 12px 16px;
    font-size: 13px;
  }

  .cta-button-compact {
    padding: 16px 30px;
    font-size: 1.1rem;
  }

  .hero-features-around {
    gap: 15px;
  }

  .hibis-natural-image {
    max-width: 300px;
  }

  .hero-image-card {
    padding: 20px;
  }

  .decorative-element {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section-image-centric {
    padding: 30px 0;
    min-height: 75vh;
  }

  .hero-image-centric-layout {
    gap: 15px;
    max-width: 320px;
    padding: 0 10px;
    justify-items: center;
  }

  .hero-central-image {
    max-width: 250px;
    justify-self: center;
    align-self: center;
  }

  .hero-title-compact {
    font-size: 1.7rem;
  }

  .hero-subtitle-compact {
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature-bubble {
    padding: 10px 14px;
    font-size: 12px;
  }

  .cta-button-compact {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .hero-features-around {
    gap: 12px;
    flex-direction: column;
  }

  .hibis-natural-image {
    max-width: 250px;
  }

  .hero-image-card {
    padding: 15px;
  }

  .decorative-element {
    font-size: 16px;
  }

  .cta-guarantee-compact {
    font-size: 11px;
  }
}

.hero-mobile h1,
.hero-mobile .hero-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 10px var(--shadow-pink);
  padding: 0 10px;
}

.hero-mobile .hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-gray);
}

.hero-mobile h2 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.5;
  padding: 0 10px;
}

@media (max-width: 480px) {
  .hero-mobile {
    padding: 15px 0;
  }

  .hero-mobile h1,
  .hero-mobile .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 12px;
    padding: 0 5px;
  }

  .hero-mobile .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 5px;
  }
}

.hero-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 3px 20px rgba(255, 139, 217, 0.3);
  position: relative;
  z-index: 2;
}

.hero-content h2,
.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-medium);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

/* Novos estilos semânticos */
.hero-cta,
.benefits-cta {
  margin-top: 20px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.rating-text {
  font-weight: 600;
  color: var(--dark-gray);
}

hgroup {
  margin-bottom: 20px;
}

/* Ajustes para acessibilidade */
button[aria-label],
a[aria-label] {
  position: relative;
}

/* Melhorias para screen readers */
.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;
}

/* Botões CTA - Sistema Coerente */
.cta-button {
  background: var(--gradient-accent);
  color: white !important;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 20px 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.08);
  color: white !important;
}

.cta-button:active {
  transform: translateY(2px);
  box-shadow: var(--shadow-active);
  color: white !important;
}

.cta-button i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
  color: white !important;
}

.cta-button:hover i {
  transform: translateX(3px);
  color: white !important;
}

/* Banner animado */
.animated-banner {
  width: 100vw;
  overflow: hidden;
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ff1493 100%);
  padding: 20px 0;
  position: relative;
  z-index: 999;
  margin: 40px calc(-50vw + 50%) 40px calc(-50vw + 50%);
  border: none;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  backdrop-filter: blur(10px);
}

.animated-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

.banner-content {
  display: flex;
  width: max-content;
  animation: scrollBanner 25s linear infinite;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: "Poppins", sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  align-items: center;
}

.banner-item {
  padding: 0 60px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.banner-item::after {
  content: "✨";
  font-size: 20px;
  margin-left: 10px;
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    transform: translateX(100vw);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
  }
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Seção de benefícios - Design Moderno */
.benefits-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  position: relative;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefits-content {
  background: var(--gradient-feminine);
  padding: 40px;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefits-content::after {
  content: "🌸";
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.2;
  z-index: 0;
}

.benefits-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefits-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--soft-cream) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 0;
}

.benefits-content > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 40px 0;
  }

  .benefits-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .benefits-list {
    margin-bottom: 25px;
  }

  .benefits-list li {
    font-size: 1rem;
    padding: 8px 0;
    padding-left: 30px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 30px 0;
  }

  .benefits-content h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .benefits-list li {
    font-size: 0.95rem;
    padding: 6px 0;
    padding-left: 25px;
  }

  .benefits-list li .icon {
    font-size: 1rem;
    margin-right: 10px;
  }
}

.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" font-size="12" fill="%23ff8bd9" opacity="0.1">♡</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
  pointer-events: none;
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.benefits-image {
  display: flex;
  justify-content: center;
}

.benefits-image {
  position: relative;
  z-index: 1;
}

.benefits-image img {
  max-width: 100%;
  height: auto;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
}

.benefits-image img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.benefits-content h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px var(--shadow-pink);
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 1.1rem;
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.benefits-list li:hover {
  background: var(--gradient-pink-glow);
  padding-left: 45px;
}

.benefits-list li .icon {
  color: var(--primary-pink);
  font-size: 1.3rem;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.benefits-list li:hover .icon {
  transform: translateY(-50%) scale(1.1);
}

.stars,
.product-rating span[aria-label] {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.product-rating {
  text-align: center;
  justify-content: center;
}

/* Seção de informações - Design Coerente */
.info-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.info-item {
  background: var(--gradient-feminine);
  padding: 40px;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-item::after {
  content: "💫";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.2rem;
  opacity: 0.2;
  z-index: 0;
}

.info-item::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, var(--soft-cream) 0%, transparent 60%);
  opacity: 0.8;
  z-index: 0;
}

.info-item > * {
  position: relative;
  z-index: 1;
}

.info-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.info-item h3 {
  color: var(--accent-pink);
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(255, 20, 147, 0.2);
}

.info-item p {
  line-height: 1.8;
  color: var(--text-medium);
  font-weight: 400;
}

/* Seção de preparação - Design Moderno */
.preparation-section {
  padding: 100px 0;
  background: var(--gradient-feminine);
  position: relative;
  overflow: hidden;
}

.preparation-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.06),
    rgba(255, 105, 180, 0.03)
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.preparation-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -25%;
  width: 350px;
  height: 350px;
  background: linear-gradient(
    135deg,
    rgba(255, 105, 180, 0.05),
    rgba(255, 20, 147, 0.02)
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.preparation-grid {
  position: relative;
  z-index: 2;
}

/* Container dos passos modernos */
.preparation-steps-modern {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cada passo moderno */
.step-modern {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--gradient-feminine);
  padding: 25px;
  border-radius: var(--radius-standard);
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-modern::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-modern:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.step-modern:hover::before {
  opacity: 1;
}

/* Ícone do passo */
.step-icon {
  position: relative;
  flex-shrink: 0;
}

.step-icon img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-small);
  border: var(--border-standard);
  object-fit: contain;
  box-shadow: var(--shadow-standard);
  background: var(--gradient-feminine);
  padding: 15px;
  display: block;
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--attention-green);
  color: var(--black);
  width: 32px;
  height: 32px;
  border: var(--border-standard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--shadow-standard);
  z-index: 2;
}

/* Conteúdo do passo */
.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.step-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.step-content strong {
  color: #ff1493;
  font-weight: 600;
}

/* Ícones emoji para passos */
.step-icon-emoji {
  transition: all 0.3s ease;
}

.step-modern:hover .step-icon-emoji {
  transform: scale(1.05);
}

.preparation-image {
  position: relative;
  z-index: 1;
}

.preparation-image img,
.preparation-content > div > img {
  max-width: 100%;
  height: auto;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: static !important;
  transform: none !important;
  display: block;
}

.preparation-image img:hover,
.preparation-content > div > img:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-hover);
}

.preparation-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.step {
  background: var(--gradient-feminine);
  padding: 30px 20px;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "🌟";
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.9rem;
  opacity: 0.3;
  z-index: 0;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--soft-cream) 0%, transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.step > * {
  position: relative;
  z-index: 1;
}

.step.pink {
  background: var(--gradient-accent);
  color: var(--white);
  border-color: var(--accent-pink);
}

.step img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 8px;
}

/* Seção de depoimentos - Design Coerente */
.testimonials-section {
  padding: 80px 0;
  background: var(--gradient-accent);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--white);
  opacity: 0.1;
  border-radius: 50%;
  border: var(--border-standard);
  animation: float 10s ease-in-out infinite;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  opacity: 0.15;
  border-radius: 50%;
  border: var(--border-standard);
  animation: float 8s ease-in-out infinite reverse;
}

/* Custom Video Player - Wistia Style */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.custom-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  outline: none;
  cursor: pointer;
}

/* Remove todos os controles nativos do vídeo */
.custom-video-player::-webkit-media-controls {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-panel {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-play-button {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-volume-slider {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-timeline {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-current-time-display {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.custom-video-player::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

/* Firefox */
.custom-video-player::-moz-media-controls {
  display: none !important;
}

/* Edge/IE */
.custom-video-player::-ms-media-controls {
  display: none !important;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.video-wrapper:hover .video-overlay {
  opacity: 0.8;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  z-index: 15;
  position: relative;
}

.play-button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
}

.play-button i {
  color: var(--white);
  font-size: 24px;
  margin-left: 3px;
}

.play-button:hover i {
  color: var(--white);
}

/* Estado de reprodução */
.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.video-wrapper.playing .play-button {
  display: none;
}

/* Garantir que o overlay seja visível quando não está reproduzindo */
.video-wrapper:not(.playing) .video-overlay {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s ease;
}

/* Mostrar overlay quando hover durante reprodução para indicar que é clicável */
.video-wrapper.playing:hover .video-overlay {
  opacity: 0.1;
  pointer-events: none;
}

/* Responsividade para mobile - Vídeos */
@media (max-width: 768px) {
  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 20px;
  }

  .video-container {
    margin-bottom: 15px;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .testimonials-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button i {
    font-size: 18px;
  }

  .testimonials-section {
    padding: 30px 0;
  }

  .testimonials-section h2 {
    font-size: 1.7rem;
    padding: 0 5px;
  }

  .testimonials-subtitle {
    font-size: 0.95rem;
    padding: 0 5px;
  }

  .video-container {
    margin-bottom: 12px;
  }
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.testimonials-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.video-container {
  aspect-ratio: 9/16;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white);
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Seção de Benefícios - Design Moderno */
.benefits-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff8fc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section-modern::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.benefits-section-modern::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.benefits-tag {
  margin-bottom: 25px;
}

.benefits-tag .product-rating {
  display: inline-block;
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  padding: 12px 25px;
  box-shadow: var(--shadow-standard);
  font-size: 14px;
  font-weight: 600;
}

.benefits-tag .taste-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff8e53);
  color: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  padding: 12px 25px;
  box-shadow: var(--shadow-standard);
  font-size: 14px;
  font-weight: 700;
  margin-left: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.taste-icon {
  font-size: 16px;
}

.taste-text {
  color: var(--white);
}

.benefits-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.title-highlight {
  color: #666;
  font-weight: 400;
}

.title-main {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.5s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  margin-bottom: 25px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  border: var(--border-standard);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-standard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}

.benefit-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.benefits-demo {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.demo-container {
  position: relative;
  max-width: 400px;
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  padding: 30px;
  overflow: hidden;
}

.demo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 8px 15px;
  border-radius: var(--radius-small);
  font-size: 12px;
  font-weight: 600;
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  z-index: 2;
}

.benefits-gif {
  width: 100%;
  border-radius: var(--radius-small);
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
}

.benefits-cta-modern {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-button-modern {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient-accent);
  color: white !important;
  padding: 20px 40px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.cta-button-modern:hover::before {
  left: 100%;
}

.cta-button-modern:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white !important;
}

.cta-arrow {
  font-size: 1.5rem;
  transition: all 0.3s ease;
  color: white !important;
}

.cta-button-modern:hover .cta-arrow {
  transform: translateX(5px);
  color: white !important;
}

.cta-text {
  color: white !important;
}

.cta-button-modern:hover .cta-text {
  color: white !important;
}

/* Mobile responsivo para benefícios */
@media (max-width: 768px) {
  .benefits-section-modern {
    padding: 60px 0;
  }

  .benefits-header {
    margin-bottom: 50px;
  }

  .benefits-title {
    font-size: 2.2rem;
  }

  .benefits-tag .taste-badge {
    margin-left: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    font-size: 12px;
    padding: 10px 20px;
  }

  .benefits-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .benefits-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  .demo-container {
    padding: 20px;
  }

  .cta-button-modern {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

/* Seção Ritual Diário - Design Moderno */
.daily-ritual-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #fff8fc 30%,
    #ffffff 70%,
    #f8f9fa 100%
  );
  position: relative;
  overflow: hidden;
}

.daily-ritual-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 20, 147, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.daily-ritual-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 105, 180, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.ritual-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.ritual-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 12px 25px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.ritual-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 800;
}

.title-main {
  color: #333;
  font-weight: 800;
}

.title-highlight {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.title-accent {
  color: #666;
  font-weight: 600;
  font-style: italic;
}

.ritual-subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.ritual-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .ritual-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ritual-card {
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ritual-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.6s ease;
}

.ritual-card:hover::before {
  left: 100%;
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  margin-bottom: 25px;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  border: var(--border-standard);
  border-radius: 50%;
  box-shadow: var(--shadow-standard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.ritual-card:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
}

.card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-highlight {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  border: 2px solid rgba(255, 20, 147, 0.2);
  border-radius: var(--radius-small);
  padding: 8px 16px;
}

.highlight-text {
  font-size: 12px;
  font-weight: 700;
  color: #ff1493;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ritual-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ritual-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 22px 45px;
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ritual-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.ritual-cta-button:hover::before {
  left: 100%;
}

.ritual-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.cta-icon {
  font-size: 20px;
}

.cta-arrow {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.ritual-cta-button:hover .cta-arrow {
  transform: translateX(5px);
}

/* Mobile responsivo para ritual diário */
@media (max-width: 768px) {
  .daily-ritual-section {
    padding: 60px 0;
  }

  .ritual-header {
    margin-bottom: 50px;
  }

  .ritual-title {
    font-size: 2.2rem;
  }

  .ritual-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .ritual-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .ritual-card {
    padding: 25px 20px;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .card-content h3 {
    font-size: 1.2rem;
  }

  .ritual-cta-button {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
}

/* Divisor de Seções Simples */
.section-divider {
  padding: 20px 0;
  background: transparent;
}

.divider-line-simple {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff1493 20%,
    #ff69b4 50%,
    #ff1493 80%,
    transparent 100%
  );
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}

.divider-line-simple::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Mobile responsivo para divisor */
@media (max-width: 768px) {
  .section-divider {
    padding: 15px 0;
  }
}

/* Seção de preços - Design Moderno */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f8 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    rgba(255, 20, 147, 0.1),
    rgba(255, 105, 180, 0.05)
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.pricing-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 250px;
  height: 250px;
  background: linear-gradient(
    135deg,
    rgba(255, 105, 180, 0.08),
    rgba(255, 20, 147, 0.03)
  );
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

.pricing-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pricing-container::after {
  content: "💝";
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  opacity: 0.15;
  z-index: 0;
}

.pricing-container::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, var(--soft-cream) 0%, transparent 60%);
  opacity: 0.7;
  z-index: 0;
}

.pricing-container > * {
  position: relative;
  z-index: 1;
}

.pricing-container:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(255, 139, 217, 0.3);
}

.pricing-plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.15);
  border-color: #ff1493;
}

.plan.active {
  border-color: #ff1493;
  background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
  position: relative;
}

.plan.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
}

.plan-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.plan-title {
  font-weight: 700;
  color: #333;
  font-size: 18px;
  margin-bottom: 5px;
}

.plan-badge {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-price {
  text-align: right;
}

.price-badge {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  display: inline-block;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-bottom: 2px;
}

.price-new {
  font-size: 22px;
  font-weight: 800;
  color: #ff1493;
  display: block;
}

.buy-button {
  margin-top: 30px;
  width: 100%;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.buy-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.buy-button:hover::before {
  left: 100%;
}

.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
  filter: brightness(1.1);
}

.buy-button:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

/* Seção de avaliações - Design Coerente */
.reviews-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" font-size="10" fill="%23ffd700" opacity="0.1">⭐</text></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.review-card {
  background: var(--gradient-feminine);
  padding: 30px;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::after {
  content: "💕";
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.2rem;
  opacity: 0.2;
  z-index: 0;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, var(--soft-cream) 0%, transparent 60%);
  opacity: 0.6;
  z-index: 0;
}

.review-card > * {
  position: relative;
  z-index: 1;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: #fbbc04;
  margin-bottom: 15px;
  font-size: 18px;
}

.review-text {
  margin-bottom: 15px;
  line-height: 1.6;
}

.review-author {
  font-weight: 600;
  color: var(--primary-pink);
}

.verified {
  color: #34a853;
  font-size: 14px;
  margin-top: 5px;
}

/* Seção de garantia - Design Coerente */
.guarantee-section {
  padding: 80px 0;
  background: var(--gradient-accent);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: var(--white);
  opacity: 0.05;
  border-radius: 50%;
  border: var(--border-standard);
}

.guarantee-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.guarantee-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* Seção Instagram - Design Moderno e Atrativo */
.instagram-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="insta-hearts" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><text x="15" y="20" text-anchor="middle" font-size="12" fill="%23ff8bd9" opacity="0.05">💕</text></pattern></defs><rect width="100" height="100" fill="url(%23insta-hearts)"/></svg>');
  pointer-events: none;
  z-index: 0;
}

/* Header moderno do Instagram */
.instagram-header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-standard);
  padding: 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.instagram-header-modern:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.instagram-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border: var(--border-standard);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  line-height: 1;
}

.instagram-avatar i {
  line-height: 1;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  position: relative;
  top: -1px;
}

.instagram-avatar:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.instagram-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.instagram-info h2.instagram-username {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

.instagram-subtitle {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.instagram-description-text {
  color: var(--text-light);
  font-size: 0.8rem;
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
}

.instagram-follow-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  padding: 15px 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-standard);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instagram-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.1);
}

.instagram-follow-btn i {
  font-size: 1.2em;
  line-height: 1;
}

/* Grid de posts do Instagram */
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.instagram-post {
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.instagram-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.instagram-post-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.instagram-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.instagram-post:hover .instagram-post-image img {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.instagram-post-content {
  padding: 20px;
  text-align: center;
}

.instagram-post-content p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

/* Post especial CTA */
.instagram-cta-post {
  grid-column: span 1;
  background: var(--gradient-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  text-align: center;
}

.instagram-cta-content {
  padding: 30px;
}

.instagram-cta-content i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  color: var(--white);
}

.instagram-cta-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--white);
}

.instagram-cta-content p {
  margin: 0 0 25px 0;
  opacity: 0.9;
  line-height: 1.5;
}

.instagram-cta-btn {
  background: var(--white);
  color: var(--accent-pink);
  border: 2px solid var(--white);
  border-radius: var(--radius-small);
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  vertical-align: middle;
}

.instagram-cta-btn i {
  color: var(--accent-pink);
  font-size: 0.85rem;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.instagram-cta-btn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.instagram-cta-btn:hover i {
  color: var(--white);
}

/* Botão principal final */
.instagram-main-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.instagram-main-btn {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-large);
  padding: 25px 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-standard);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 280px;
}

.instagram-main-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  filter: brightness(1.1);
}

.instagram-btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.instagram-btn-content i {
  font-size: 1.4em;
  line-height: 1;
}

.instagram-username {
  color: #ffe55c;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsividade Instagram Section */
@media (max-width: 768px) {
  .instagram-header-modern {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .instagram-profile {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .instagram-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .instagram-avatar i {
    top: -0.5px;
  }

  .instagram-info h2.instagram-username {
    font-size: 1.5rem;
    margin: 0 0 8px 0;
  }

  .instagram-subtitle {
    font-size: 0.9rem;
    margin: 0 0 5px 0;
  }

  .instagram-description-text {
    font-size: 0.8rem;
  }

  .instagram-follow-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .instagram-post-image {
    height: 200px;
  }

  .instagram-cta-post {
    grid-column: span 2;
    min-height: 280px;
  }

  .instagram-cta-content {
    padding: 20px;
  }

  .instagram-cta-content i {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .instagram-main-btn {
    padding: 20px 40px;
    font-size: 1.1rem;
    min-width: 250px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .instagram-header-modern {
    padding: 15px;
  }

  .instagram-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .instagram-avatar i {
    top: -0.5px;
  }

  .instagram-info h2.instagram-username {
    font-size: 1.3rem;
    margin: 0 0 6px 0;
  }

  .instagram-subtitle {
    font-size: 0.85rem;
    margin: 0 0 4px 0;
  }

  .instagram-description-text {
    font-size: 0.75rem;
  }

  .instagram-feed-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .instagram-post-image {
    height: 250px;
  }

  .instagram-cta-post {
    grid-column: span 1;
    min-height: 250px;
  }

  .instagram-cta-content {
    padding: 15px;
  }

  .instagram-cta-content h3 {
    font-size: 1.2rem;
  }

  .instagram-main-btn {
    padding: 18px 30px;
    font-size: 1rem;
    min-width: 220px;
    gap: 8px;
  }
}

/* FAQ - Design Coerente */
.faq-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="question" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><text x="12" y="18" text-anchor="middle" font-size="14" fill="%23ff8bd9" opacity="0.08">?</text></pattern></defs><rect width="100" height="100" fill="url(%23question)"/></svg>');
  pointer-events: none;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 50px;
  text-shadow: 0 2px 15px rgba(255, 139, 217, 0.3);
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--gradient-feminine);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-item::after {
  content: "✨";
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.15;
  z-index: 0;
}

.faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.faq-question {
  background: var(--gradient-accent);
  color: var(--white);
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}

.faq-question:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.faq-answer {
  padding: 25px;
  display: none;
  line-height: 1.8;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  color: var(--text-medium);
}

.faq-answer.active {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block !important;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .benefits-container,
  .info-grid,
  .preparation-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .video-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .preparation-steps {
    grid-template-columns: 1fr;
  }

  .animated-banner {
    margin: 20px calc(-50vw + 50%) 20px calc(-50vw + 50%);
  }

  .banner-content {
    font-size: 16px;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
    justify-content: center;
  }

  .pricing-container {
    margin: 0 5px;
    padding: 25px 15px;
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--rose-gold);
  }

  .pricing-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .plan {
    padding: 12px 15px;
    border-radius: 15px;
    margin-bottom: 12px;
  }

  .plan-title {
    font-size: 14px;
  }

  .price-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 15px;
  }

  .price-old {
    font-size: 12px;
  }

  .price-new {
    font-size: 15px;
  }

  .buy-button {
    padding: 15px;
    font-size: 16px;
    border-radius: 25px;
    margin-top: 20px;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }
}

@media (min-width: 769px) {
  .hero-mobile {
    display: none !important;
  }

  .hero-desktop {
    display: grid !important;
  }
}

@media (max-width: 480px) {
  .preparation-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .step {
    padding: 20px 15px;
    font-size: 14px;
    border-radius: 15px;
  }

  .step img {
    width: 50px;
    height: 50px;
  }

  .preparation-section {
    padding: 40px 0;
  }

  .preparation-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
}

/* Breakpoint para telas muito pequenas */
@media (max-width: 360px) {
  .container {
    padding: 0 5px;
  }

  .hero-mobile h1,
  .hero-mobile .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .hero-mobile .hero-subtitle {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
    width: 95%;
    gap: 8px;
  }

  .benefits-content h2 {
    font-size: 1.5rem;
  }

  .benefits-list li {
    font-size: 0.9rem;
    padding-left: 20px;
  }

  .pricing-container {
    margin: 0 2px;
    padding: 20px 10px;
  }

  .plan {
    padding: 10px 12px;
  }

  .buy-button {
    padding: 12px;
    font-size: 15px;
  }

  /* FAQ mobile */
  .faq-section {
    padding: 30px 0;
  }

  .faq-section h2 {
    font-size: 1.7rem;
    padding: 0 5px;
  }

  .faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
  }

  .faq-question {
    padding: 15px;
    border-radius: 15px 15px 0 0;
    font-size: 14px;
  }

  .faq-answer {
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* Reviews mobile */
  .reviews-section {
    padding: 30px 0;
  }

  .review-card {
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-author {
    font-size: 14px;
  }

  .verified {
    font-size: 12px;
  }

  /* Info section mobile */
  .info-section {
    padding: 30px 0;
  }

  .info-item {
    padding: 25px;
    margin-bottom: 20px;
  }

  .info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .info-item p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Animações customizadas adicionais */
.animate__animated {
  --animate-duration: 1s;
  --animate-delay: 0.5s;
}

/* Classe para GIFs seguros */
.gif-container {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.gif-container img {
  width: 100%;
  height: auto;
  display: block;
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
}

.gif-container img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Delays escalonados para elementos */
.info-item:nth-child(1) {
  animation-delay: 0.2s;
}

.info-item:nth-child(2) {
  animation-delay: 0.4s;
}

.benefits-section {
  animation-delay: 0.3s;
}

/* Classes para elementos que devem aparecer apenas no scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de Atenção - Padronizado */
.pulse {
  background: var(--primary-green) !important;
  color: var(--black) !important;
  border: var(--border-standard) !important;
  border-radius: var(--radius-large) !important;
  box-shadow: var(--shadow-standard) !important;
  transition: all 0.3s ease !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pulse:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-hover) !important;
  filter: brightness(1.05) !important;
}

/* Classe especial para botão de atenção com animação */
.attention-button {
  animation: attention-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

@keyframes attention-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

/* Footer Styling */
.site-footer {
  background: var(--gradient-feminine);
  border-top: var(--border-standard);
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--accent-pink);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section h4 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section h5 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-style: italic;
}

.footer-description {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-stars {
  font-size: 1.1rem;
}

.rating-text {
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-pink);
}

.footer-social {
  margin-bottom: 25px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 600;
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.payment-badges {
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-small);
  border: 2px solid var(--text-dark);
}

.footer-bottom {
  border-top: 2px solid var(--text-medium);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: var(--text-light) !important;
  font-style: italic;
  max-width: 400px;
}

.footer-company {
  text-align: right;
}

.footer-company p {
  color: var(--accent-pink);
  font-size: 1rem;
  font-weight: 700;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

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

  .footer-section h3 {
    font-size: 1.8rem;
  }

  .payment-badges {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    gap: 25px;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .social-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .footer-disclaimer {
    max-width: 100%;
  }
}

/* Responsividade mobile para seção de preparação */
@media (max-width: 768px) {
  .preparation-section {
    padding: 60px 15px !important;
  }

  .preparation-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    max-width: 100% !important;
  }

  .preparation-gif-container {
    padding: 20px !important;
  }

  .step-modern {
    padding: 20px !important;
    gap: 15px !important;
  }

  .step-icon img {
    width: 60px !important;
    height: 60px !important;
    padding: 10px !important;
    object-fit: contain !important;
    background: var(--gradient-feminine) !important;
  }

  .step-number {
    width: 28px !important;
    height: 28px !important;
    font-size: 14px !important;
    top: -10px !important;
    right: -10px !important;
  }

  .step-content h3 {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .step-content p {
    font-size: 13px !important;
  }
}

/* Classes utilitárias padronizadas */
.text-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.text-subheading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--primary-pink);
  line-height: 1.3;
}

.text-body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.6;
}

.icon-standard {
  font-size: 1.2rem;
  color: var(--primary-pink);
  margin-right: 12px;
  transition: all 0.3s ease;
}

.list-standard {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-standard li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1.5;
}

.list-standard li::before {
  content: "✨";
  position: absolute;
  left: 0;
  color: var(--primary-pink);
  font-size: 1rem;
}

/* Otimizações mobile globais */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  button,
  .cta-button,
  .buy-button,
  .plan,
  .faq-question {
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
  }

  /* Aumentar área de toque */
  .cta-button,
  .buy-button {
    min-height: 48px;
    min-width: 120px;

    /* Layout responsivo da seção de preços */
    .pricing-section {
      padding: 60px 15px !important;
    }

    /* Mobile: layout em coluna única */
    .pricing-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 20px !important;
      max-width: 100% !important;
      padding: 0 !important;
    }

    .pricing-sidebar {
      position: static !important;
      margin-bottom: 20px !important;
      max-width: 100% !important;
      padding: 20px !important;
    }

    .pricing-plans-container {
      max-width: 100% !important;
      padding: 20px !important;
    }
  }

  /* Media query para tablets */
  @media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
      grid-template-columns: 280px 1fr !important;
      gap: 30px !important;
    }

    .pricing-sidebar {
      padding: 25px !important;
    }

    .pricing-plans-container {
      padding: 30px !important;
    }
  }

  /* Media query específica para mobile - Design melhorado */
  @media (max-width: 768px) {
    .pricing-section {
      padding: 40px 15px !important;
      background: linear-gradient(135deg, #f8f9fa 0%, #fff5f8 100%) !important;
    }

    .pricing-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 25px !important;
      max-width: 100% !important;
      padding: 0 !important;
    }

    /* Sidebar mobile otimizada */
    .pricing-sidebar {
      position: static !important;
      margin-bottom: 0 !important;
      max-width: 100% !important;
      padding: 25px 20px !important;
      border-radius: var(--radius-standard) !important;
      background: var(--gradient-feminine) !important;
      border: var(--border-standard) !important;
      box-shadow: var(--shadow-standard) !important;
    }

    /* Reorganizar elementos da sidebar mobile */
    .pricing-sidebar > div:first-child {
      display: flex !important;
      align-items: center !important;
      gap: 20px !important;
      margin-bottom: 20px !important;
      text-align: left !important;
    }

    .pricing-sidebar img {
      width: 80px !important;
      height: auto !important;
      margin-bottom: 0 !important;
      flex-shrink: 0 !important;
    }

    .pricing-sidebar > div:first-child > div {
      flex: 1 !important;
    }

    /* Container de planos mobile */
    .pricing-plans-container {
      max-width: 100% !important;
      padding: 25px 20px !important;
      border-radius: var(--radius-standard) !important;
      background: var(--gradient-feminine) !important;
      border: var(--border-standard) !important;
      box-shadow: var(--shadow-standard) !important;
    }

    /* Melhorar títulos mobile */
    .pricing-plans-container h3 {
      font-size: 20px !important;
      margin-bottom: 6px !important;
    }

    .pricing-plans-container p {
      font-size: 13px !important;
      margin-bottom: 25px !important;
    }

    /* Planos mobile mais compactos */
    .plan {
      padding: 20px !important;
      border-radius: var(--radius-small) !important;
      margin-bottom: 15px !important;
      border: var(--border-standard) !important;
      box-shadow: var(--shadow-standard) !important;
    }

    .plan.active {
      border: var(--border-standard) !important;
      background: var(--gradient-soft) !important;
      box-shadow: var(--shadow-hover) !important;
    }

    .plan-title {
      font-size: 16px !important;
      margin-bottom: 3px !important;
    }

    .plan-badge {
      font-size: 10px !important;
      padding: 3px 10px !important;
    }

    .price-new {
      font-size: 20px !important;
    }

    .buy-button {
      margin-top: 25px !important;
      padding: 18px !important;
      font-size: 16px !important;
      border-radius: var(--radius-large) !important;
      border: var(--border-standard) !important;
      box-shadow: var(--shadow-standard) !important;
    }

    /* Ícones de pagamento mobile */
    .pricing-sidebar img[alt="Bandeiras de pagamento"] {
      max-width: 250px !important;
      width: 100% !important;
    }

    .pricing-sidebar div[style*="max-width: 180px"] {
      max-width: 100% !important;
    }

    /* Ícones emoji mobile */
    .step-icon-emoji {
      width: 60px !important;
      height: 60px !important;
    }

    /* Ajustar tamanhos específicos mobile */
    .step-icon-emoji[style*="H₂O"] {
      font-size: 18px !important;
      padding: 10px !important;
    }

    .step-icon-emoji[style*="★"] {
      font-size: 24px !important;
      padding: 10px !important;
    }
  }

  /* Reduzir animações para performance */
  .hero-section::before,
  .hero-section::after,
  .benefits-section::before {
    animation-duration: 8s;
  }

  /* Otimizar scroll suave */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* Efeitos padronizados */
.shine {
  position: relative;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineEffect 2s linear infinite;
}

@keyframes shineEffect {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: 200px;
  }
}

.glow-hover {
  transition: all 0.3s ease;
}

.glow-hover:hover {
  filter: drop-shadow(0 0 10px rgba(255, 139, 217, 0.3));
}

.bounce-hover {
  transition: transform 0.3s ease;
}

.bounce-hover:hover {
  transform: translateY(-3px);
}

.scale-hover {
  transition: transform 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.02);
}

/* Estados de interação padronizados */
.interactive {
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.interactive:hover {
  transform: translateY(-2px);
}

.interactive:active {
  transform: translateY(1px);
}
/* ==================== MOBILE NAVIGATION STYLES ==================== */

/* Hamburger Menu Toggle Button */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.hamburger-menu:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.hamburger-menu svg {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--text-dark);
}

.hamburger-menu.active svg {
  animation: rotateMenu 0.3s ease forwards;
}

@keyframes rotateMenu {
  to {
    transform: rotate(90deg);
  }
}

.hamburger-line {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  transform-origin: 12px 6px;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
  transform-origin: 12px 18px;
}

/* Mobile Navigation Menu */
.nav-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: var(--white);
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  animation: slideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: var(--spacing-md) var(--spacing-lg);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-small);
  transition: all 0.3s ease;
  font-size: var(--text-lg);
}

.nav-menu a:hover {
  background-color: var(--soft-pink);
  color: var(--accent-pink);
  transform: translateX(8px);
}

.nav-menu a:active {
  transform: translateX(4px);
}

/* Navigation Container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 30px;
}

nav ul {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
  min-width: 0;
}

nav ul li {
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

nav ul li:last-child {
  flex-shrink: 0;
  margin-left: auto;
}

nav ul li a,
nav ul li a.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 16px;
}

nav ul li a.btn-primary {
  color: var(--white) !important;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 16px;
  right: 16px;
  width: 0;
  height: 2px;
  background: var(--accent-pink);
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-pink);
}

nav ul li a:hover::after {
  width: calc(100% - 32px);
}

/* Desktop Navigation - Override Mobile Defaults */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  nav .nav-menu {
    display: flex !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    gap: var(--spacing-lg) !important;
    padding: 0 !important;
    z-index: auto !important;
    box-shadow: none !important;
    animation: none !important;
    align-items: center;
    flex-shrink: 1;
    overflow: visible;
  }

  nav ul li a {
    padding: 12px 16px !important;
  }
}

/* Large desktop - adjust for more menu items */
@media (min-width: 1200px) and (max-width: 1400px) {
  nav .nav-menu {
    gap: var(--spacing-md) !important;
  }

  nav ul li a {
    font-size: 14px;
    padding: 12px 16px !important;
  }
}

/* Medium desktop - reduce gap for tighter spacing */
@media (min-width: 769px) and (max-width: 1199px) {
  nav .nav-menu {
    gap: var(--spacing-sm) !important;
  }

  nav ul li a {
    font-size: 13px;
    padding: 12px 16px !important;
  }

  nav ul li a.btn-primary {
    padding: 12px 18px !important;
    font-size: 12px !important;
    color: var(--white) !important;
  }
}

/* Smaller desktop - even tighter */
@media (min-width: 769px) and (max-width: 900px) {
  nav .nav-menu {
    gap: 12px !important;
  }

  nav ul li a {
    font-size: 12px;
    padding: 12px 16px !important;
  }

  nav ul li a.btn-primary {
    padding: 10px 16px !important;
    font-size: 11px !important;
  }
}

/* Mobile breakpoint for navigation */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  nav .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
  }

  nav .nav-menu.active {
    display: flex;
  }

  nav .nav-logo a {
    font-size: var(--text-2xl);
  }

  .nav-menu {
    padding: var(--spacing-md);
  }

  .nav-menu a {
    padding: var(--spacing-md);
    font-size: var(--text-base);
  }

  /* Centralizar botão Comprar no menu mobile */
  .nav-menu li:last-child {
    width: 100%;
    margin-left: 0 !important;
  }

  .nav-menu li:last-child a {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: var(--spacing-lg);
  }

  .hamburger-menu svg {
    width: 20px;
    height: 20px;
  }

  .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
    padding: var(--spacing-md);
  }

  .nav-menu a {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--text-sm);
  }
}

/* ==================== STICKY CTA BUTTON FLUTUANTE ==================== */

.sticky-cta {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--btn-primary-bg);
  box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
  text-decoration: none;
  color: var(--white);
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: var(--border-standard);
  animation: float 3s ease-in-out infinite;
}

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

.sticky-cta:hover {
  transform: translateY(-15px) scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.6);
}

.sticky-cta:active {
  transform: translateY(-5px) scale(0.98);
}

.sticky-cta:focus-visible {
  outline: 3px solid var(--accent-pink);
  outline-offset: 2px;
}

.sticky-cta.show {
  display: flex;
}

@media (max-width: 768px) {
  .sticky-cta {
    width: 50px;
    height: 50px;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sticky-cta {
    width: 48px;
    height: 48px;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 18px;
  }
}

/* ==================== BENEFIT CARDS 3D TILT EFFECT ==================== */

.benefit-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.benefit-icon {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotateZ(5deg);
}

.benefit-card:hover h3 {
  color: var(--accent-pink);
}

/* ==================== RIPPLE EFFECT ON BUTTONS ==================== */

.btn-primary,
.btn-secondary,
.cta-button,
.cta-button-compact {
  position: relative;
  overflow: hidden;
}

.btn-primary:active,
.btn-secondary:active {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 currentColor;
  }
  100% {
    box-shadow: 0 0 0 10px rgba(255, 20, 147, 0);
  }
}

/* ==================== CONTRAST FIXES FOR ACCESSIBILITY ==================== */

/* Improved text contrast ratios */
p,
li,
span {
  color: var(--text-dark);
  line-height: 1.6;
}

.text-light {
  color: #555555;
}

.text-medium {
  color: #333333;
}

/* Better color scheme for links */
a {
  color: var(--accent-pink);
  text-decoration: none;
}

a:visited {
  color: #d81b60;
}

a:active {
  color: #ff1493;
}

/* Form elements with better contrast */
input:not([type="radio"]):not([type="checkbox"]),
textarea,
select {
  border: 2px solid var(--text-dark);
  background: var(--white);
  color: var(--text-dark);
  min-height: 44px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent-pink);
  outline: 2px solid var(--accent-pink);
  outline-offset: 2px;
}

/* ==================== PRICING COMPARISON TABLE ==================== */

.pricing-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  border: var(--border-standard);
}

.pricing-comparison thead {
  background: var(--gradient-accent);
  color: var(--white);
}

.pricing-comparison th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: var(--text-lg);
  border: var(--border-standard);
}

.pricing-comparison td {
  padding: 16px 20px;
  border: var(--border-standard);
  font-size: var(--text-base);
}

.pricing-comparison tbody tr:nth-child(odd) {
  background: var(--soft-pink);
}

.pricing-comparison tbody tr:nth-child(even) {
  background: var(--white);
}

.pricing-comparison tbody tr:hover {
  background: var(--gradient-soft);
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.pricing-checkmark {
  color: var(--success-green);
  font-size: 20px;
  font-weight: 700;
}

.pricing-cross {
  color: #999;
  font-size: 16px;
}

@media (max-width: 768px) {
  .pricing-comparison {
    font-size: var(--text-sm);
  }

  .pricing-comparison th,
  .pricing-comparison td {
    padding: 12px 10px;
  }
}

/* ==================== IMPROVED HERO SECTION ANIMATIONS ==================== */

.hero-title-compact {
  animation: slideInDown 0.6s ease-out;
}

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

.hero-subtitle-compact {
  animation: slideInUp 0.7s ease-out 0.2s both;
}

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

.hibis-natural-image {
  animation: zoomIn 0.8s ease-out 0.3s both;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cta-button-compact {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

/* ==================== TESTIMONIAL IMPROVEMENTS ==================== */

.video-container {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  border: var(--border-standard);
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.play-button {
  background: var(--btn-primary-bg);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.video-container:hover .play-button {
  transform: scale(1.2);
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
}

/* ==================== REVIEW CARDS ENHANCEMENTS ==================== */

.review-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-pink-glow);
  transition: left 0.5s ease;
}

.review-card:hover::before {
  left: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.3);
}

.review-stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--accent-pink);
}

.verified {
  font-size: 12px;
  color: var(--success-green);
  font-weight: 600;
  margin-top: 12px;
}

/* ==================== INSTAGRAM SECTION ENHANCEMENTS ==================== */

.instagram-post {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: var(--radius-standard);
  overflow: hidden;
  box-shadow: var(--shadow-standard);
  border: var(--border-standard);
  cursor: pointer;
}

.instagram-post:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

.instagram-post-image {
  overflow: hidden;
  position: relative;
  height: 200px;
}

.instagram-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-post:hover .instagram-post-image img {
  transform: scale(1.1);
}

/* ==================== FAQ IMPROVEMENTS ==================== */

.faq-question {
  cursor: pointer;
  padding: 20px;
  background: var(--white);
  border: var(--border-standard);
  border-radius: var(--radius-standard);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: var(--text-lg);
  min-height: 44px;
}

.faq-question:hover {
  background: var(--soft-pink);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 20, 147, 0.2);
}

.faq-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 20px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  border: none;
  margin-top: 0;
}

.faq-answer.active {
  max-height: 500px;
  padding: 20px;
  border: var(--border-standard);
  border-top: none;
  margin-top: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-standard) var(--radius-standard);
}

.faq-item {
  margin-bottom: 20px;
}

/* ==================== INGREDIENTS SECTION ==================== */

.ingredients-section {
  padding: 80px 0;
  background: var(--gradient-feminine);
  position: relative;
  overflow: hidden;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-standard);
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.ingredient-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card:hover .ingredient-image img {
  transform: scale(1.1);
}

.ingredient-content {
  padding: 30px;
  text-align: center;
}

.ingredient-content h3 {
  font-size: var(--text-2xl);
  color: var(--accent-pink);
  margin-bottom: 15px;
  font-weight: 700;
}

.ingredient-content p {
  font-size: var(--text-base);
  color: var(--text-medium);
  line-height: 1.6;
}

/* ==================== USAGE MOMENTS GALLERY ==================== */

.usage-moments-gallery {
  margin-top: 60px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.moment-card {
  position: relative;
  border-radius: var(--radius-standard);
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.moment-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.moment-card:hover img {
  transform: scale(1.15);
}

.moment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(255, 20, 147, 0.95),
    rgba(255, 105, 180, 0.85),
    transparent
  );
  padding: 30px 20px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.moment-card:hover .moment-overlay {
  transform: translateY(0);
  opacity: 1;
}

.moment-overlay h4 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.moment-overlay p {
  color: var(--white);
  font-size: var(--text-sm);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== LIFESTYLE GALLERY SECTION ==================== */

.lifestyle-gallery-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.lifestyle-card {
  position: relative;
  border-radius: var(--radius-standard);
  border: var(--border-standard);
  box-shadow: var(--shadow-standard);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lifestyle-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.lifestyle-card.tall {
  grid-row: span 2;
}

.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-card:hover img {
  transform: scale(1.1);
}

.lifestyle-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(255, 20, 147, 0.95),
    rgba(255, 105, 180, 0.85),
    transparent
  );
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lifestyle-card:hover .lifestyle-overlay {
  transform: translateY(0);
}

.lifestyle-overlay h3 {
  color: var(--white);
  font-size: var(--text-xl);
  margin-bottom: 8px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.lifestyle-overlay p {
  color: var(--white);
  font-size: var(--text-sm);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ==================== RESPONSIVE - NEW SECTIONS ==================== */

@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .moments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .lifestyle-card.large,
  .lifestyle-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .ingredient-image {
    height: 250px;
  }

  .ingredient-content {
    padding: 20px;
  }

  .moment-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(255, 20, 147, 0.9),
      rgba(255, 105, 180, 0.7),
      transparent
    );
  }

  /* Lifestyle overlays sempre visíveis no mobile */
  .lifestyle-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(255, 20, 147, 0.9),
      rgba(255, 105, 180, 0.7),
      transparent
    );
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-card.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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