/* ═══════════════════════════════════════════════
   AUTO MARKETING — Landing Page Styles
   ═══════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --secondary: #111111;
  --white: #FFFFFF;
  --light-bg: #F9F9F9;
  --text-dark: #1a1a1a;
  --text-muted: #555555;
  --text-light: #cccccc;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

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

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary--large {
  padding: 22px 52px;
  font-size: 1.2rem;
}

.btn-primary--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-primary--white:hover {
  background: #f0f0f0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ── Section Titles ── */
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

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

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-subtitle--white {
  color: var(--text-light);
}

.highlight {
  color: var(--primary);
}

/* ═══════════════════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo-img {
  height: 42px;
  width: auto;
}

.navbar-cta .btn-primary {
  padding: 12px 28px;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   SEÇÃO 1 — HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.90) 0%,
    rgba(17, 17, 17, 0.75) 50%,
    rgba(17, 17, 17, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-content-inner {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 60px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), #FDBA74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subdesc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes btn-pulse-anim {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
}

.hero-cta .btn-primary {
  animation: btn-pulse-anim 4s infinite 2s;
}

.hero-cta .btn-primary:active {
  animation-play-state: paused;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 700;
  margin-left: -10px;
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.hero-trust-text strong {
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 2 — PROBLEMA E OPORTUNIDADE
   ═══════════════════════════════════════════════ */
.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-content .section-title {
  text-align: left;
}

.problem-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.problem-text .highlight {
  font-weight: 700;
}

.problem-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.problem-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.problem-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.problem-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.problem-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.problem-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.problem-image-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.problem-image-badge-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.problem-image-badge-text strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 3 — AUTORIDADE E PROVA SOCIAL
   ═══════════════════════════════════════════════ */
.authority {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.authority::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.authority .section-title {
  color: var(--white);
}

.authority .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px);
}

.benefit-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(249, 115, 22, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials-header {
  margin-bottom: 40px;
}

.testimonials-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  text-align: left;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: rgba(249, 115, 22, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: #FBBF24;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 4 — OFERTA PRINCIPAL
   ═══════════════════════════════════════════════ */
.offer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.offer-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.offer .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.offer-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.offer-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 40px;
}

.offer-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.offer-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.offer-benefit:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(249, 115, 22, 0.2);
}

.offer-benefit-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-sm);
}

.offer-benefit span {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.offer-cta {
  margin-bottom: 16px;
}

.offer-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════
   SEÇÃO 5 — POR QUE ESCOLHER
   ═══════════════════════════════════════════════ */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.why-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

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

/* ═══════════════════════════════════════════════
   SEÇÃO 6 — FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--secondary);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-whatsapp:hover {
  color: var(--primary);
}

.footer-whatsapp svg {
  width: 18px;
  height: 18px;
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Native Scroll reveal */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-anim linear forwards;
    animation-timeline: view();
    animation-range: entry 5% cover 15%;
  }

  @keyframes reveal-anim {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: fadeInUp 1s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* ═══════════════════════════════════════════════
   PARTNER SEAL (inside navbar)
   ═══════════════════════════════════════════════ */
.partner-seal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px 8px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 60px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.partner-seal:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255, 215, 0, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.seal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px; /* Tamanho ajustado para desktop */
  width: auto;
}

.partner-seal-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
  transform: scale(1.2); /* Reduzindo a escala na versão desktop */
  transform-origin: center;
}

.partner-seal-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
}

.seal-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFD700;
  font-weight: 800;
}

.seal-brand {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .navbar-cta {
    display: none;
  }

  .partner-seal-text {
    display: none;
  }

  .partner-seal {
    padding: 2px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .seal-icon-wrapper {
    height: 75px; /* Mantém grande no mobile */
  }

  .partner-seal-logo {
    transform: scale(1.4); /* Mantém grande no mobile */
  }
  
  .partner-seal:hover {
    box-shadow: none;
    background: transparent;
    border-color: transparent;
    transform: none;
  }

  /* Make sure the navbar items are spaced correctly on mobile */
  .navbar .container {
    justify-content: space-between;
  }

  .hero-bg img {
    object-position: 70% center; /* Traz a imagem um pouco mais para a esquerda */
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-image {
    order: -1;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-benefits {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .btn-primary--large {
    padding: 18px 36px;
    font-size: 1.05rem;
  }
}

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

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

  .section-title {
    font-size: 1.7rem;
  }
}
