/* ============================================
   PROJETOTECA DOS PERGOLADOS - SALES PAGE CSS
   ============================================ */

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

/* CSS Variables */
:root {
  --bg-primary: #091208;
  --bg-secondary: #0d1a0f;
  --bg-card: #111f14;
  --bg-card-hover: #162618;
  --bg-accent: #0f2413;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #b8860b;
  --orange: #e87a1e;
  --orange-hover: #f59030;
  --orange-dark: #c46510;
  --green-accent: #2d6b3f;
  --green-light: #3a8a50;
  --text-primary: #ffffff;
  --text-secondary: #c5d0c8;
  --text-muted: #8a9b8e;
  --border-color: rgba(212, 160, 23, 0.15);
  --border-gold: rgba(212, 160, 23, 0.35);
  --shadow-gold: rgba(212, 160, 23, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--gold);
}

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

/* ============================================
   TOP BANNER
   ============================================ */
.top-banner {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  padding: 10px 0;
  text-align: center;
}

.top-banner .banner-track {
  display: block;
  text-align: center;
}

.top-banner .banner-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 40px;
}

.top-banner .banner-text:not(:first-child) {
  display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 48px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero .pretitle {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero .subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-mockup {
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

/* Mockup Area */
.mockup-area {
  margin: 40px auto 0;
  max-width: 600px;
  position: relative;
}

.mockup-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-accent));
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.mockup-description {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232, 122, 30, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
}

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

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(232, 122, 30, 0.45);
}

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

.cta-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta-subtext span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-subtext .icon {
  color: var(--green-light);
  font-size: 1rem;
}

/* ============================================
   PRODUCT SECTION
   ============================================ */
.product-section {
  padding: 48px 0 24px;
  background: var(--bg-secondary);
  position: relative;
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.product-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.product-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-content .emphasis {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================
   MODELS SECTION
   ============================================ */
.models-section {
  padding: 24px 0 48px;
  background: var(--bg-primary);
}

.models-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 48px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.model-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  cursor: default;
}

.model-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

.model-card-img {
  width: 100%;
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, var(--bg-accent), #1a3320);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.model-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card-body {
  padding: 20px;
}

.model-card-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.model-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 48px 0;
  background: var(--bg-secondary);
  position: relative;
}

.testimonials-section::before,
.testimonials-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.testimonials-section::before {
  top: 0;
}

.testimonials-section::after {
  bottom: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.testimonial-card:hover {
  border-color: var(--border-gold);
}

.testimonial-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 400px;
  background: linear-gradient(135deg, var(--bg-accent), #1a3320);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  overflow: hidden;
}

.testimonial-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
  padding: 48px 0;
  background: var(--bg-primary);
}

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.bonus-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.bonus-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bg-primary);
}

.bonus-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.bonus-icon-area {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--bg-accent), #1a3320);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.65rem;
  border: 1px dashed var(--border-gold);
  overflow: hidden;
}

.bonus-icon-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: 48px 0;
  background: var(--bg-secondary);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.pricing-card {
  max-width: 650px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-card-header {
  background: linear-gradient(135deg, #162618, #0f2413);
  padding: 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
}

.pricing-card-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.pricing-card-body {
  padding: 32px;
}

.pricing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 4px 0;
}

.pricing-list li .check {
  color: var(--green-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
  margin: 24px 0;
}

.pricing-price-area {
  text-align: center;
  padding: 20px 0;
}

.pricing-old-price {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-new-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-new-price small {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-cta-area {
  text-align: center;
}

.pricing-access-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.payment-methods span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   VALUE SECTION
   ============================================ */
.value-section {
  padding: 48px 0;
  background: var(--bg-primary);
  text-align: center;
}

.value-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.value-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  margin: 24px 0;
}

.value-price small {
  font-size: 1.3rem;
  vertical-align: super;
}

.value-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.value-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
  padding: 48px 0;
  background: var(--bg-secondary);
  position: relative;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.guarantee-card {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.guarantee-badge {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--bg-accent), #1a3320);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-gold);
  color: var(--text-muted);
  font-size: 0.7rem;
  text-align: center;
  overflow: hidden;
}

.guarantee-badge img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.guarantee-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 16px;
}

.guarantee-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.guarantee-text .emphasis {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-question .faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: var(--transition);
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: 48px 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.05), transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* ============================================
   ANIMATIONS (removed fade-in scroll animations)
   ============================================ */

/* Pulse animation for CTA */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(232, 122, 30, 0.3);
  }

  50% {
    box-shadow: 0 4px 35px rgba(232, 122, 30, 0.5);
  }
}

.cta-btn {
  animation: pulse 2.5s ease-in-out infinite;
}

.cta-btn:hover {
  animation: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .top-banner .banner-text {
    display: inline-block;
    white-space: normal;
    line-height: 1.5;
    padding: 0 16px;
  }

  .hero {
    min-height: 80vh;
    padding: 60px 20px 40px;
  }

  .models-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .bonus-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .bonus-item .bonus-icon-area {
    display: none;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .cta-subtext {
    flex-direction: column;
    gap: 8px;
  }

  .payment-methods {
    flex-direction: column;
    gap: 6px;
  }
}

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

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .pricing-new-price {
    font-size: 2.8rem;
  }

  .value-price {
    font-size: 2.5rem;
  }
}

/* ============================================
   PLACEHOLDER GENERIC STYLE
   ============================================ */
.placeholder-img {
  background: linear-gradient(135deg, var(--bg-accent), #1a3320);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}