/* ==========================================================================
   DESIGN SYSTEM & GLOBAL STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary-green: #27AE60;
  --primary-green-hover: #219653;
  --primary-orange: #FF6B00;
  --primary-orange-hover: #E66000;
  --bg-white: #FFFFFF;
  --bg-light: #F9F9F9;
  --bg-accent: #FFF9F5;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: #8E8E93;
  --border-color: #EAEAEA;
  --border-light: rgba(255, 255, 255, 0.2);

  /* Gradients */
  --orange-gradient: linear-gradient(135deg, #FF6B00 0%, #FF8C39 100%);
  --green-gradient: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
  --dark-gradient: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  --glass-bg: rgba(255, 255, 255, 0.85);

  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
  --shadow-button: 0 4px 15px rgba(255, 107, 0, 0.3);
  --shadow-button-green: 0 4px 15px rgba(39, 174, 96, 0.3);

  /* Borders & Radius */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-padding {
  padding: 100px 0;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  text-align: center;
}

.btn-primary {
  background: var(--orange-gradient);
  color: var(--bg-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.45);
}

.btn-green {
  background: var(--green-gradient);
  color: var(--bg-white);
  box-shadow: var(--shadow-button-green);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.45);
}

.btn-pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-headings);
  color: var(--text-dark);
}

.logo span {
  color: var(--primary-orange);
}

.logo-icon {
  background: var(--orange-gradient);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

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

.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: var(--bg-white);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content h1 span {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 400;
  max-width: 580px;
}

.hero-cta-wrapper {
  margin-bottom: 40px;
}

.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 500px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-badge-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

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

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  perspective: 1000px;
}

.hero-mockup {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s ease;
  transform: rotateY(-10deg) rotateX(10deg);
}

.hero-mockup-wrapper:hover .hero-mockup {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 15px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.badge-left {
  left: -40px;
  bottom: 60px;
  animation: float-slow 4s ease-in-out infinite;
}

.badge-right {
  right: -30px;
  top: 50px;
  animation: float-slow 4s ease-in-out infinite alternate;
}

.hero-floating-badge svg {
  color: var(--primary-orange);
  background: rgba(255, 107, 0, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.hero-floating-badge div p:first-child {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-floating-badge div p:last-child {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
}

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

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-badges-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-mockup-wrapper {
    max-width: 320px;
  }
  .badge-left { left: 0; }
  .badge-right { right: 0; }
}

/* ==========================================================================
   BENEFÍCIOS (BENEFITS)
   ========================================================================== */

.benefits {
  background-color: var(--bg-light);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon-wrapper {
  background-color: var(--bg-accent);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary-orange);
}

.benefit-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   PROBLEMAS (PROBLEMS)
   ========================================================================== */

.problems {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.problems-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.problems-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.problems-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.problems-content h2 span {
  color: var(--primary-orange);
}

.problems-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.problem-icon {
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--primary-orange);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-text h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.problem-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .problems-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   SOLUÇÃO (SOLUTION)
   ========================================================================== */

.solution {
  background: var(--dark-gradient);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-content .badge-text {
  color: var(--primary-green);
}

.solution-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--bg-white);
}

.solution-content h2 span {
  color: var(--primary-green);
}

.solution-desc {
  font-size: 1.1rem;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.sol-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.sol-feature-item svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

.solution-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}

.sol-img-wrapper {
  position: relative;
  max-width: 320px;
}

.sol-img-wrapper img {
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sol-overlay-card {
  position: absolute;
  bottom: -30px;
  right: -40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  color: white;
  width: 240px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.sol-overlay-card p {
  font-size: 0.85rem;
  color: #DDD;
  margin-bottom: 5px;
}

.sol-overlay-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
}

@media (max-width: 991px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sol-overlay-card {
    right: 0;
    bottom: -20px;
  }
}

/* ==========================================================================
   O QUE VOCÊ RECEBE (WHAT YOU GET)
   ========================================================================== */

.ebook-contents {
  background-color: var(--bg-light);
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.content-item-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 25px;
  transition: var(--transition-smooth);
}

.content-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.content-category-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.cat-icon-1 { background-color: #FFF2E6; color: #FF9F43; }
.cat-icon-2 { background-color: #E8F5E9; color: #2E7D32; }
.cat-icon-3 { background-color: #E3F2FD; color: #1565C0; }
.cat-icon-4 { background-color: #ECEFF1; color: #37474F; }
.cat-icon-5 { background-color: #FCE4EC; color: #C2185B; }

.content-item-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.content-item-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.content-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-orange);
  background-color: var(--bg-accent);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ==========================================================================
   RECEITAS EM DESTAQUE (FEATURED RECIPES)
   ========================================================================== */

.recipes {
  background-color: var(--bg-white);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.recipe-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.recipe-img-box {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.recipe-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img-box img {
  transform: scale(1.08);
}

.recipe-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
}

.recipe-info {
  padding: 25px;
}

.recipe-info h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.recipe-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.recipe-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.recipe-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   COMO FUNCIONA (HOW IT WORKS)
   ========================================================================== */

.how-it-works {
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--orange-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.step-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   DEPOIMENTOS (TESTIMONIALS)
   ========================================================================== */

.testimonials {
  background-color: var(--bg-white);
}

.testimonials-disclaimer {
  max-width: 600px;
  margin: -40px auto 40px auto;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 10px 15px;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-rating {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #DDD;
}

.user-info h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ==========================================================================
   GARANTIA (GUARANTEE)
   ========================================================================== */

.guarantee {
  background-color: var(--bg-light);
}

.guarantee-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}

.guarantee-seal-wrapper {
  flex-shrink: 0;
  text-align: center;
}

.guarantee-seal {
  width: 130px;
  height: 130px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-headings);
  box-shadow: var(--shadow-button);
}

.guarantee-seal span:first-child {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.guarantee-seal span:nth-child(2) {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee-seal span:last-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
}

.guarantee-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.guarantee-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 25px;
}

.guarantee-trust-badges {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-badge svg {
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .guarantee-box {
    padding: 35px 25px;
  }
  .guarantee-flex {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .guarantee-trust-badges {
    justify-content: center;
    gap: 15px;
  }
}

/* ==========================================================================
   OFERTA (OFFER & TIMER)
   ========================================================================== */

.offer-section {
  background: var(--dark-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.offer-decor-bg {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.offer-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.offer-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.timer-box {
  margin-bottom: 40px;
}

.timer-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-orange);
  font-weight: 700;
  margin-bottom: 15px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.timer-segment {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 15px;
  min-width: 90px;
}

.timer-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  color: #B0B0B0;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.price-box {
  margin-bottom: 35px;
}

.price-original {
  font-size: 1.2rem;
  color: #8E8E93;
  text-decoration: line-through;
  margin-bottom: 5px;
}

.price-current {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1.1;
}

.price-installment {
  font-size: 1.1rem;
  color: #DDD;
  margin-top: 5px;
}

.offer-card .btn {
  width: 100%;
  max-width: 450px;
  padding: 22px 30px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.offer-guarantees {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #B0B0B0;
}

.offer-guarantees span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-guarantees svg {
  color: var(--primary-green);
}

@media (max-width: 576px) {
  .offer-card {
    padding: 30px 20px;
  }
  .countdown {
    gap: 10px;
  }
  .timer-segment {
    min-width: 75px;
    padding: 10px;
  }
  .timer-number {
    font-size: 2rem;
  }
  .price-current {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq {
  background-color: var(--bg-white);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.faq-trigger {
  padding: 22px 30px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-icon-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

/* Open State */
.faq-item.active {
  background-color: var(--bg-white);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  color: var(--primary-orange);
}

.faq-item.active .faq-content {
  padding-bottom: 22px;
  border-color: var(--border-color);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */

.final-cta {
  background: var(--orange-gradient);
  color: white;
  text-align: center;
  position: relative;
}

.final-cta-content {
  max-width: 750px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-cta p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta .btn {
  background: var(--bg-white);
  color: var(--primary-orange);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.final-cta .btn:hover {
  background: #FFF0E5;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */

.footer {
  background-color: #111;
  color: #8E8E93;
  padding: 60px 0 30px 0;
  font-size: 0.85rem;
  border-top: 1px solid #222;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #222;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  color: white;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-logo span {
  color: var(--primary-orange);
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: white;
  transition: color 0.2s ease;
}

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

.footer-disclaimer {
  max-width: 800px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #555;
}

/* ==========================================================================
   FLOATING CTA BUTTON
   ========================================================================== */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  pointer-events: none;
}

.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.floating-cta .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.4);
}

@media (max-width: 768px) {
  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .floating-cta .btn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS (SCROLL REVEAL)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================================================
   SMARTPHONE RESPONSIVE OVERRIDES (max-width: 576px)
   ========================================================================== */
@media (max-width: 576px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 45px 0;
  }

  /* Typography size optimization */
  .section-header h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Navbar adjustments */
  .navbar {
    height: 70px;
  }
  
  .navbar .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Hero Section mobile optimization */
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.1rem !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .hero-badges-grid {
    grid-template-columns: 1fr; /* Stack badges vertically to save horizontal space */
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-badge-item {
    font-size: 0.9rem;
  }

  .hero-media {
    margin-top: 30px;
  }

  .hero-mockup-wrapper {
    max-width: 250px; /* Resize 3D cover on mobile so it fits nicely */
  }

  .hero-floating-badge {
    display: none !important; /* Hide floating badges on mobile to prevent horizontal viewport overflow */
  }

  /* Card padding reduction to optimize screen real estate */
  .benefit-card, 
  .testimonial-card, 
  .step-card, 
  .content-item-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  .benefit-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

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

  /* Problems Section stacking */
  .problem-item {
    align-items: flex-start;
  }

  .problem-text h4 {
    font-size: 1.05rem;
  }

  /* Solution Section pricing text overlay */
  .sol-img-wrapper {
    max-width: 260px;
    margin: 0 auto;
  }

  .sol-overlay-card {
    right: 0;
    bottom: -15px;
    width: 180px;
    padding: 12px;
  }

  .sol-overlay-card h4 {
    font-size: 1rem;
  }

  /* Testimonials disclaimer margin */
  .testimonials-disclaimer {
    margin-top: -20px;
    margin-bottom: 25px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  /* Guarantee Seal adjustment */
  .guarantee-box {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .guarantee-seal {
    width: 100px;
    height: 100px;
  }

  .guarantee-seal span:first-child {
    font-size: 1.8rem;
  }

  .guarantee-seal span:nth-child(2) {
    font-size: 0.7rem;
  }

  .guarantee-seal span:last-child {
    font-size: 0.55rem;
  }

  .guarantee-content h2 {
    font-size: 1.6rem;
  }

  .guarantee-trust-badges {
    justify-content: center;
    gap: 10px;
  }

  /* Offer Section mobile updates */
  .offer-card {
    padding: 30px 16px;
    border-radius: var(--radius-md);
  }

  .timer-segment {
    min-width: 70px;
    padding: 10px 5px;
  }

  .timer-number {
    font-size: 1.8rem;
  }

  .timer-label {
    font-size: 0.65rem;
  }

  .price-original {
    font-size: 1.1rem;
  }

  .price-current {
    font-size: 3rem;
  }

  .price-installment {
    font-size: 0.95rem;
  }

  .offer-card .btn {
    padding: 18px 24px;
    font-size: 1.1rem;
  }

  /* FAQ Padding adjustments */
  .faq-trigger {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-content {
    padding: 0 20px;
  }

  .faq-item.active .faq-content {
    padding-bottom: 18px;
  }

  /* Final CTA button margin */
  .final-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Floating CTA bottom spacing */
  .floating-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .floating-cta .btn {
    padding: 15px;
    font-size: 1rem;
    border-radius: 12px;
  }
}
