/* Import das fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* CSS Variables baseadas no Tailwind */
:root {
  /* Cores HSL exatas do projeto */
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(220, 9%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 9%, 20%);
  --primary: hsl(142, 70%, 45%);
  --primary-foreground: hsl(0, 0%, 98%);
  --secondary: hsl(38, 92%, 50%);
  --secondary-foreground: hsl(220, 9%, 20%);
  --muted: hsl(48, 100%, 96%);
  --muted-foreground: hsl(220, 9%, 46%);
  --accent: hsl(142, 30%, 92%);
  --accent-foreground: hsl(142, 70%, 25%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(220, 13%, 91%);
  --radius: 0.75rem;
  
  /* Fontes */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

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

/* Typography */
.font-heading {
  font-family: var(--font-heading);
}

.font-script {
  font-family: var(--font-script);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

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

/* Text contrast for better visibility */
.text-contrast {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Background Section */
.hero-bg-section {
  background-image: url('https://i.ibb.co/pF0z2Q1/Design-sem-nome-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 640px) {
  .hero-bg-section {
    background-position: top;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(142, 70%, 45%, 0.1);
  color: hsl(var(--primary));
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .social-proof-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}

.hero-title {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero-title {
    margin-bottom: 2rem;
  }
}

.title-line {
  display: block;
  font-size: 1.5rem;
  color: #111827;
}

.title-primary {
  display: block;
  font-size: 1.5rem;
  color: hsl(var(--primary));
}

.title-script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: hsl(var(--secondary));
}

@media (min-width: 640px) {
  .title-line,
  .title-primary,
  .title-script {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .title-line,
  .title-primary,
  .title-script {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .title-line,
  .title-primary,
  .title-script {
    font-size: 3.75rem;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #1f2937;
}

@media (min-width: 640px) {
  .hero-features {
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
}

.feature-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .feature-item {
    gap: 0.5rem;
  }
}

.feature-item .check-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .feature-item .check-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.feature-item span:last-child {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .feature-item span:last-child {
    font-size: 1.125rem;
  }
}

.hero-description {
  font-size: 0.875rem;
  color: #1f2937;
  max-width: 32rem;
  margin: 0 auto 2rem;
  padding: 0 0.5rem;
  line-height: 1.625;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

/* Highlight CTA Section */
.highlight-cta-section {
  padding-bottom: 1.5rem;
  position: relative;
  background: transparent;
}

@media (min-width: 640px) {
  .highlight-cta-section {
    padding-bottom: 2rem;
  }
}

.highlight-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.spacer {
  height: 2.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .spacer {
    height: 3rem;
    margin-bottom: 1rem;
  }
}

.cta-button-container {
  display: flex;
  justify-content: center;
}

.cta-button {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px -3px hsla(142, 70%, 45%, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 640px) {
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px hsla(142, 70%, 45%, 0.5);
  background-color: hsl(142, 70%, 40%);
}

.cta-button:active {
  transform: translateY(0);
}

.rocket-icon {
  font-size: 1rem;
}

/* Highlight Box */
.highlight-box {
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
  max-width: 20rem;
  width: calc(100% - 2rem);
  z-index: 20;
}

@media (min-width: 640px) {
  .highlight-box {
    bottom: -1.5rem;
    padding: 1rem 1.5rem;
    max-width: 24rem;
  }
}

.highlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .highlight-content {
    gap: 0.5rem;
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .highlight-item {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

.check-small {
  color: hsl(var(--primary));
  font-size: 0.75rem;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: white;
}

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

.benefits-box {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .benefits-box {
    padding: 3rem;
  }
}

.benefits-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

@media (min-width: 640px) {
  .benefits-header {
    margin-bottom: 2.5rem;
  }
}

.benefits-image {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .benefits-image {
    width: 5rem;
    height: 5rem;
  }
}

.benefits-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: hsl(var(--foreground));
  margin: 0;
}

@media (min-width: 640px) {
  .benefits-title {
    font-size: 1.875rem;
  }
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .benefit-item {
    font-size: 1rem;
    gap: 1rem;
  }
}

.benefit-item .check-icon {
  color: hsl(var(--primary));
  font-size: 1rem;
  margin-top: 0.125rem;
}

/* Recipe Gallery Section */
.recipe-gallery-section {
  padding: 4rem 0;
  background-color: hsl(var(--muted));
}

@media (min-width: 640px) {
  .recipe-gallery-section {
    padding: 5rem 0;
  }
}

.recipes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.recipe-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.recipe-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.recipe-content {
  padding: 1rem;
}

@media (min-width: 640px) {
  .recipe-content {
    padding: 1.5rem;
  }
}

.recipe-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .recipe-title {
    font-size: 1.125rem;
  }
}

.recipe-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* About Creator Section */
.about-creator-section {
  padding: 4rem 0;
  background-color: white;
}

@media (min-width: 640px) {
  .about-creator-section {
    padding: 5rem 0;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.about-text {
  flex: 1;
}

.about-title {
  text-align: left !important;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .about-title {
    text-align: center !important;
  }
}

.about-description {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .about-description {
    font-size: 1.125rem;
  }
}

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

.achievement {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .achievement {
    font-size: 1rem;
  }
}

.achievement-icon {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.about-image {
  flex-shrink: 0;
}

.creator-photo {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .creator-photo {
    width: 18rem;
    height: 18rem;
  }
}

/* Testimonials Intro Section */
.testimonials-intro-section {
  padding: 4rem 0;
  background-color: hsl(var(--muted));
}

@media (min-width: 640px) {
  .testimonials-intro-section {
    padding: 5rem 0;
  }
}

.testimonials-image-container {
  margin: 2rem 0;
  text-align: center;
}

.testimonials-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 640px) {
  .stats-container {
    gap: 2rem;
    margin-top: 3rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .stat-item {
    padding: 1.5rem;
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 2rem;
  }
}

.stat-number.primary {
  color: hsl(var(--primary));
}

.stat-number.secondary {
  color: hsl(var(--secondary));
}

.stat-label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 0.875rem;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background-color: white;
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(0, 84%, 60%, 0.1);
  color: hsl(var(--destructive));
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .urgency-badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.pricing-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.pricing-card.complete {
  border: 2px solid hsl(var(--secondary));
  transform: scale(1.05);
}

.pricing-badge {
  background-color: hsl(var(--primary));
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.pricing-badge.premium {
  background-color: hsl(var(--secondary));
  background: linear-gradient(135deg, hsl(var(--secondary)), hsl(38, 92%, 60%));
}

@media (min-width: 640px) {
  .pricing-badge {
    font-size: 0.875rem;
  }
}

.pricing-content {
  padding: 2rem;
}

@media (min-width: 640px) {
  .pricing-content {
    padding: 2.5rem;
  }
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .package-title {
    font-size: 1.5rem;
  }
}

.package-price-container {
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 0.5rem;
}

.package-price.secondary {
  color: hsl(var(--secondary));
}

@media (min-width: 640px) {
  .package-price {
    font-size: 2.5rem;
  }
}

.package-price-old {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.25rem;
}

.package-payment {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-bottom: 1.5rem;
}

.bonus-badge {
  background-color: hsla(142, 70%, 45%, 0.1);
  color: hsl(var(--primary));
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.package-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .package-features li {
    font-size: 1rem;
  }
}

.package-features .check-icon {
  color: hsl(var(--primary));
  font-size: 1rem;
  margin-top: 0.125rem;
}

.package-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.package-button.primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 15px -3px hsla(142, 70%, 45%, 0.4);
}

.package-button.primary:hover {
  background-color: hsl(142, 70%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px hsla(142, 70%, 45%, 0.5);
}

.package-button.secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  box-shadow: 0 4px 15px -3px hsla(38, 92%, 50%, 0.4);
}

.package-button.secondary:hover {
  background-color: hsl(38, 92%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px hsla(38, 92%, 50%, 0.5);
}

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

@media (min-width: 640px) {
  .guarantee {
    font-size: 1rem;
  }
}

.shield-icon {
  color: hsl(var(--primary));
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background-color: hsl(var(--muted));
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .testimonial-avatar {
    width: 4rem;
    height: 4rem;
  }
}

.testimonial-text {
  flex: 1;
}

.testimonial-quote {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .testimonial-quote {
    font-size: 1rem;
  }
}

.testimonial-stars {
  margin-bottom: 0.5rem;
  color: hsl(var(--secondary));
}

.testimonial-author {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin: 0;
}

@media (min-width: 640px) {
  .testimonial-author {
    font-size: 0.875rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: white;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 64rem;
  }
}

.faq-item {
  background: hsl(var(--muted));
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  .faq-item {
    padding: 2rem;
  }
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .faq-question {
    font-size: 1.125rem;
  }
}

.faq-answer {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .faq-answer {
    font-size: 1rem;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(142, 70%, 50%));
  color: white;
}

@media (min-width: 640px) {
  .final-cta-section {
    padding: 5rem 0;
  }
}

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

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

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

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

.final-cta-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .final-cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.final-cta-button {
  background-color: white;
  color: hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

.final-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  background-color: hsl(var(--muted));
}

.final-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .final-guarantee {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background-color: hsl(220, 9%, 20%);
  color: white;
  padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

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

@media (min-width: 768px) {
  .footer-logo {
    text-align: left;
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 1.5rem;
  }
}

.footer-description {
  font-size: 0.875rem;
  color: hsl(220, 9%, 70%);
  margin: 0.5rem 0 0;
}

@media (min-width: 640px) {
  .footer-description {
    font-size: 1rem;
  }
}

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

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 640px) {
  .footer-section h4 {
    font-size: 1.125rem;
  }
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: hsl(220, 9%, 70%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

@media (min-width: 640px) {
  .footer-section a {
    font-size: 1rem;
  }
}

.footer-section a:hover {
  color: hsl(var(--primary));
}

.footer-bottom {
  border-top: 1px solid hsl(220, 9%, 30%);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(220, 9%, 70%);
}

.footer-disclaimer {
  margin-top: 0.5rem;
}

/* Animations */
.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Button hover scale */
.btn-hover-scale {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Mobile optimizations */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    line-height: 1.2;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .recipes-grid {
    gap: 1rem;
  }
  
  .pricing-grid {
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    gap: 1rem;
  }
  
  .faq-grid {
    gap: 1rem;
  }
  
  .stats-container {
    gap: 0.75rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
button:focus,
a:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .hero-bg-section {
    background: none !important;
  }
  
  .cta-button,
  .package-button,
  .final-cta-button {
    border: 1px solid hsl(var(--primary)) !important;
  }
}