/* ========================================
   EUROBRASA - Landing Page Styles
   Cores da marca: Azul #1a3a6b | Verde #2e7d32 | Dourado #e8b500
   ======================================== */

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

/* --- CSS Variables --- */
:root {
  --eurobrasa-blue: #1a3a6b;
  --eurobrasa-blue-dark: #122a50;
  --eurobrasa-green: #2e7d32;
  --eurobrasa-green-dark: #1b5e20;
  --eurobrasa-gold: #e8b500;
  --eurobrasa-gold-light: #fdd835;
  --eurobrasa-dark: #1a1a2e;
  --eurobrasa-light: #f0f4f8;
  --eurobrasa-red: #dc2626;
  --text-primary: #1a1a2e;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --card-bg: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* --- Animations --- */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 181, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(232, 181, 0, 0.15);
  }
}

@keyframes pulseGlowGreen {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(46, 125, 50, 0.15);
  }
}

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

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

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

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

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

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* --- HEADER --- */
.site-header {
  background-color: var(--eurobrasa-blue);
  padding: 12px 0;
}

.site-header img {
  height: 44px;
  width: auto;
}

@media (min-width: 768px) {
  .site-header img {
    height: 52px;
  }
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(135deg, var(--eurobrasa-blue) 0%, var(--eurobrasa-blue-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 70px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eurobrasa-gold);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--eurobrasa-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-block;
  background-color: var(--eurobrasa-gold);
  color: var(--eurobrasa-dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta:hover {
  background-color: var(--eurobrasa-gold-light);
  color: var(--eurobrasa-dark);
  transform: translateY(-2px);
}

.hero-mockup {
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* --- SECTION COMMONS --- */
.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--eurobrasa-gold);
  border-radius: 2px;
  margin: 0 auto 40px;
}

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

/* --- BENEFITS SECTION --- */
.benefits-section {
  background-color: var(--eurobrasa-light);
  padding: 70px 0;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--eurobrasa-green);
  font-size: 1.4rem;
  margin-top: 2px;
}

.benefit-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
}

/* --- FOR WHO SECTION --- */
.forwho-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.profile-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border-color);
  background: rgba(240, 244, 248, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.profile-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.profile-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--eurobrasa-blue);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.3rem;
}

.profile-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.profile-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- ABOUT SECTION --- */
.about-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.about-box {
  background: rgba(240, 244, 248, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}

@media (min-width: 768px) {
  .about-box {
    padding: 48px;
  }
}

.about-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.about-box p:last-child {
  margin-bottom: 0;
}

.about-box strong {
  color: var(--eurobrasa-blue);
}

.credential-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.credential-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
}

.credential-circle.blue {
  background-color: var(--eurobrasa-blue);
}

.credential-circle.green {
  background-color: var(--eurobrasa-green);
}

.credential-circle.gold {
  background-color: var(--eurobrasa-gold);
  color: var(--eurobrasa-dark);
}

.credential-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
  background-color: var(--eurobrasa-light);
  padding: 70px 0;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-stars {
  color: var(--eurobrasa-gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.8);
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--eurobrasa-blue);
}

/* --- PRICING SECTION --- */
.pricing-section {
  background: linear-gradient(135deg, var(--eurobrasa-blue) 0%, var(--eurobrasa-blue-dark) 100%);
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 160px;
  height: 160px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pricing-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 240px;
  height: 240px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Countdown Bar */
.countdown-bar {
  background-color: var(--eurobrasa-red);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto 40px;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-digits {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-num {
  background: #ffffff;
  color: var(--eurobrasa-red);
  font-size: 1.4rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  min-width: 48px;
  text-align: center;
}

.countdown-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

/* Pricing Card */
.pricing-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-badge {
  background-color: var(--eurobrasa-gold);
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--eurobrasa-dark);
}

.pricing-body {
  padding: 36px 32px;
  text-align: center;
}

.pricing-mockup {
  width: 130px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.pricing-product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

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

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

.price-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--eurobrasa-green);
  margin-bottom: 2px;
}

.price-new {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--eurobrasa-green);
  line-height: 1;
  margin-bottom: 4px;
}

.price-new .cents {
  font-size: 1.5rem;
}

.price-installments {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.btn-buy {
  display: block;
  width: 100%;
  background-color: var(--eurobrasa-green);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-align: center;
}

.btn-buy:hover {
  background-color: var(--eurobrasa-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.security-badges i {
  margin-right: 4px;
}

/* Guarantee */
.guarantee-box {
  max-width: 480px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.guarantee-icon {
  font-size: 2.2rem;
  color: var(--eurobrasa-gold);
  margin-bottom: 10px;
}

.guarantee-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.guarantee-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* --- FAQ SECTION --- */
.faq-section {
  background-color: #ffffff;
  padding: 70px 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(240, 244, 248, 0.5);
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  background: var(--eurobrasa-light);
}

.faq-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-chevron {
  font-size: 1rem;
  color: var(--eurobrasa-blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

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

.faq-answer-text {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.8);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--eurobrasa-dark);
  padding: 36px 0;
}

.site-footer img {
  height: 36px;
  width: auto;
  filter: brightness(2);
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 500px;
  margin: 0 auto;
}

/* --- STICKY CTA BAR --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(232, 181, 0, 0.2);
  padding: 12px 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.sticky-price-old {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.sticky-price-new {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--eurobrasa-gold);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--eurobrasa-green);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sticky-btn:hover {
  background-color: var(--eurobrasa-green-dark);
  color: #ffffff;
}

/* --- UTILITIES --- */
.text-eurobrasa-blue { color: var(--eurobrasa-blue); }
.text-eurobrasa-green { color: var(--eurobrasa-green); }
.text-eurobrasa-gold { color: var(--eurobrasa-gold); }
.bg-eurobrasa-blue { background-color: var(--eurobrasa-blue); }
.bg-eurobrasa-green { background-color: var(--eurobrasa-green); }
.bg-eurobrasa-gold { background-color: var(--eurobrasa-gold); }
