/* ==========================================================================
   RESCORP TERCEIRIZAÇÃO & SERVIÇOS LTDA - DESIGN SYSTEM & ESTILOS
   Paleta: Midnight Navy (#021324), Ouro Nobre (#D4AF37), Cromo Platinado (#E2E8F0)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Cores Base */
  --bg-deep: #020f1d;
  --bg-main: #03162b;
  --bg-surface: #061f3b;
  --bg-card: rgba(6, 28, 54, 0.72);
  --bg-card-hover: rgba(9, 39, 74, 0.88);
  --bg-glass: rgba(4, 23, 44, 0.82);

  /* Paleta Ouro (Logo "RES") */
  --gold-pure: #d4af37;
  --gold-light: #fed668;
  --gold-bright: #ffe68d;
  --gold-dark: #8b631b;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #fff2a8 0%, #fed668 25%, #d4af37 60%, #8b631b 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(254, 214, 104, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

  /* Paleta Cromo / Platina (Logo "CORP") */
  --silver-pure: #e2e8f0;
  --silver-light: #ffffff;
  --silver-muted: #94a3b8;
  --silver-dark: #475569;
  --silver-glow: rgba(226, 232, 240, 0.2);
  --silver-gradient: linear-gradient(135deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 100%);

  /* Acentos de Apoio (Rodovia / Tráfego) */
  --teal-accent: #0284c7;
  --teal-glow: rgba(14, 165, 233, 0.3);
  --success: #10b981;
  --whatsapp: #25d366;

  /* Bordas e Sombras */
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-bright: rgba(254, 214, 104, 0.45);
  --border-silver: rgba(226, 232, 240, 0.15);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 12px 35px rgba(212, 175, 55, 0.25);

  /* Tipografia */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições & Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--silver-pure);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 75%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
}

/* Tipografia Utilitária */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

p {
  color: var(--silver-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Efeitos Metálicos para Textos */
.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.text-silver {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.brand-rescorp-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 1px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  z-index: 1200;
  transition: var(--transition);
  background: rgba(2, 14, 28, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header.scrolled {
  height: 68px;
  background: rgba(1, 10, 20, 0.98);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.12);
  border-bottom-color: rgba(254, 214, 104, 0.35);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--gold-pure);
  box-shadow: 0 0 12px var(--gold-glow);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-main-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  display: flex;
  align-items: center;
}

.logo-sub-text {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
  position: relative;
  padding: 0.4rem 0.1rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Drawer & Overlay Mobile Base */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  display: none;
}



/* Botões Customizados */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b1523;
  font-weight: 700;
  box-shadow: 0 4px 18px var(--gold-glow);
  position: relative;
  overflow: hidden;
}

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

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

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

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold-light);
  border: 1px solid var(--gold-pure);
  backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #0b1523;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--silver-pure);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.3rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
  background: 
    radial-gradient(circle at 75% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 65%, rgba(2, 132, 199, 0.12) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-light);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.15;
  margin-bottom: 1.3rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--silver-pure);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 2.8rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  padding-top: 1.8rem;
}

.hero-pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--silver-muted);
}

.hero-pill-item svg {
  color: var(--gold-pure);
  flex-shrink: 0;
}

/* Card Visual 3D Hero */
.hero-visual-card {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(2, 132, 199, 0.1) 45%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-logo-frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, rgba(6, 28, 54, 0.9) 0%, rgba(3, 20, 39, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(254, 214, 104, 0.25);
  backdrop-filter: blur(14px);
  text-align: center;
  transition: var(--transition);
}

.hero-logo-frame:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 35px var(--gold-glow);
}

.hero-logo-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-card-motto {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
  padding: 0 1.5rem;
}

.hero-card-motto::before, .hero-card-motto::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25px;
  height: 1px;
  background: var(--gold-gradient);
}
.hero-card-motto::before { left: -10px; }
.hero-card-motto::after { right: -10px; }

/* ==========================================================================
   METRICS BAR (NÚMEROS QUE IMPRESSIONAM)
   ========================================================================== */
.metrics-section {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  padding-bottom: 3.5rem;
}

.metrics-wrapper {
  background: linear-gradient(135deg, rgba(6, 28, 54, 0.95) 0%, rgba(3, 19, 37, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.metric-item {
  text-align: center;
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -1rem;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.metric-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.metric-number span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-pure);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-sub {
  font-size: 0.75rem;
  color: var(--silver-muted);
}

/* ==========================================================================
   SEÇÕES GERAIS (TÍTULOS E ESTRUTURA)
   ========================================================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-pure);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--silver-muted);
  line-height: 1.7;
}

/* ==========================================================================
   OS 6 PILARES OPERACIONAIS (SERVIÇOS OFICIAIS DO LOGO)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--gold-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #041427;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: scale(1.05);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: #ffffff;
}

.service-card-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--silver-muted);
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.6rem;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  padding-top: 1.1rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--silver-pure);
  margin-bottom: 0.5rem;
}

.service-feature-item svg {
  color: var(--gold-pure);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-card-details {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: auto;
  transition: var(--transition);
}

.btn-card-details:hover {
  color: #ffffff;
  gap: 0.75rem;
}

/* ==========================================================================
   SOBRE NÓS & "JUNTOS FAZEMOS MAIS"
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-badge {
  color: var(--gold-pure);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.about-title {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1.4rem;
}

.about-text {
  font-size: 1.02rem;
  color: var(--silver-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-point-card {
  background: rgba(6, 28, 54, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  transition: var(--transition);
}

.about-point-card:hover {
  border-color: var(--gold-pure);
  background: rgba(8, 36, 68, 0.7);
}

.about-point-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-point-title svg {
  color: var(--gold-light);
}

.about-point-desc {
  font-size: 0.85rem;
  color: var(--silver-muted);
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-lg), 0 0 35px var(--gold-glow);
}

.about-image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-floating-stamp {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #072342 0%, #031427 100%);
  border: 2px solid var(--gold-pure);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-md), 0 0 25px var(--gold-glow);
  text-align: center;
}

.stamp-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stamp-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver-pure);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   DIFERENCIAIS COMPETITIVOS
   ========================================================================== */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-pure);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--gold-light);
}

.diff-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.diff-desc {
  font-size: 0.88rem;
  color: var(--silver-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SIMULADOR DE COTAÇÃO INTELIGENTE
   ========================================================================== */
.simulator-section {
  background: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.simulator-box {
  background: linear-gradient(145deg, rgba(6, 28, 54, 0.95) 0%, rgba(3, 19, 37, 0.98) 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg), 0 0 40px var(--gold-glow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.sim-group {
  margin-bottom: 1.8rem;
}

.sim-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver-pure);
  margin-bottom: 0.75rem;
}

.sim-service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.sim-service-pill {
  position: relative;
}

.sim-service-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.sim-pill-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  background: rgba(3, 22, 43, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver-muted);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
}

.sim-pill-label svg {
  width: 22px;
  height: 22px;
  color: var(--silver-muted);
  transition: var(--transition);
}

.sim-service-pill input[type="radio"]:checked + .sim-pill-label {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-pure);
  color: var(--gold-light);
  box-shadow: 0 0 14px var(--gold-glow);
}

.sim-service-pill input[type="radio"]:checked + .sim-pill-label svg {
  color: var(--gold-light);
  transform: scale(1.1);
}

/* Slider de Pessoas */
.slider-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.range-slider {
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  background: rgba(226, 232, 240, 0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-glow);
  border: 2px solid #ffffff;
}

.range-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 10px var(--gold-glow);
  border: 2px solid #ffffff;
}

.slider-value-box {
  min-width: 60px;
  padding: 0.4rem 0.8rem;
  background: var(--gold-gradient);
  color: #041427;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  text-align: center;
}

.sim-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(3, 22, 43, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}

.sim-select:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* Card de Resultado do Simulador */
.sim-result-card {
  background: linear-gradient(160deg, rgba(8, 36, 68, 0.8) 0%, rgba(4, 21, 41, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-result-header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.1);
  padding-bottom: 1.2rem;
  margin-bottom: 1.5rem;
}

.sim-result-badge {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.sim-result-title {
  font-size: 1.3rem;
  color: #ffffff;
}

.sim-specs-list {
  margin-bottom: 1.8rem;
}

.sim-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(226, 232, 240, 0.08);
  font-size: 0.88rem;
}

.sim-spec-label {
  color: var(--silver-muted);
}

.sim-spec-val {
  font-weight: 600;
  color: var(--silver-pure);
}

.sim-spec-val.highlight {
  color: var(--gold-light);
  font-weight: 700;
}

.sim-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   DEPOIMENTOS & CASOS DE SUCESSO
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-quote-icon {
  color: var(--gold-pure);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-quote-icon svg {
  width: 38px;
  height: 38px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--silver-pure);
  font-style: italic;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  padding-top: 1.2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--gold-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--silver-muted);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-pure);
  background: rgba(6, 28, 54, 0.85);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: var(--gold-pure);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.6rem;
  color: var(--silver-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.3rem;
}

/* ==========================================================================
   CONTATO & FORMULÁRIO DE PROPOSTA
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header {
  margin-bottom: 2rem;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.channel-icon svg {
  width: 22px;
  height: 22px;
}

.channel-content-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--silver-muted);
}

.channel-content-val {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.channel-content-val a:hover {
  color: var(--gold-light);
}

.contact-form-wrapper {
  background: linear-gradient(145deg, rgba(6, 28, 54, 0.95) 0%, rgba(3, 20, 39, 0.98) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--silver-pure);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(2, 18, 36, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 12px var(--gold-glow);
  background: rgba(3, 24, 48, 0.9);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #010a14;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--silver-muted);
  line-height: 1.7;
  margin: 1.2rem 0;
  max-width: 330px;
}

.footer-motto-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--silver-muted);
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--silver-muted);
}

/* ==========================================================================
   MODAL DE SERVIÇOS & TRABALHE CONOSCO
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 10, 20, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: linear-gradient(150deg, #072342 0%, #031427 100%);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px var(--gold-glow);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(226, 232, 240, 0.1);
  border: none;
  color: var(--silver-pure);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--gold-pure);
  color: #031427;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & TOAST NOTIFICATION
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-ping {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  background-color: #ff3b30;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #072545;
  border: 1px solid var(--gold-pure);
  color: #ffffff;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), 0 0 25px var(--gold-glow);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.toast-notice.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (TABLET & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group, .hero-pills {
    justify-content: center;
  }

  .metrics-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .metric-item:nth-child(2)::after {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .simulator-box {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 2.2rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

/* ==========================================================================
   BREAKPOINT TABLET & MOBILE (<= 860px)
   ========================================================================== */
@media (max-width: 860px) {
  /* Header & Navegação */
  .header {
    height: 70px;
  }

  .header.scrolled {
    height: 64px;
  }

  .nav-menu, .nav-actions .btn-quote-desktop {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-subtle);
    color: var(--gold-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-toggle:hover {
    background: var(--gold-gradient);
    color: #031427;
  }

  /* Drawer Mobile */
  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 330px;
    height: 100vh;
    height: 100dvh;
    background: #031427;
    border-left: 1px solid var(--border-bright);
    padding: 1.4rem 1.6rem 2rem;
    z-index: 2500;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9);
    overflow-y: auto;
  }

  .mobile-nav-drawer.open {
    right: 0;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
    padding-bottom: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(226, 232, 240, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .mobile-nav-close:hover {
    background: var(--gold-pure);
    color: #031427;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-grow: 1;
  }

  .mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--silver-pure);
    padding: 0.8rem 0.5rem;
    border-radius: var(--radius-sm);
    display: block;
    border-bottom: 1px solid rgba(226, 232, 240, 0.05);
    min-height: 44px;
  }

  .mobile-nav-link:hover, .mobile-nav-link:active {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
  }

  .mobile-drawer-footer {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 6.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* Serviços & Sobre */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-card img {
    height: 320px;
  }

  .about-points {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   BREAKPOINT SMARTPHONES (<= 576px)
   ========================================================================== */
@media (max-width: 576px) {
  /* Container e Espaçamentos Globais */
  .container {
    padding: 0 1.1rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .section-header {
    margin-bottom: 2.4rem;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .section-description {
    font-size: 0.92rem;
  }

  /* Header Compacto */
  .header {
    height: 64px;
  }

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

  .logo-main-text {
    font-size: 1.15rem;
  }

  .logo-sub-text {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  /* Hero Mobile */
  .hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.1rem;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
    margin-bottom: 2rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.92rem;
    padding: 0.8rem 1rem;
  }

  .hero-pills {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.4rem;
  }

  .hero-pill-item {
    font-size: 0.82rem;
  }

  .hero-visual-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-logo-frame {
    padding: 1.4rem 1rem;
  }

  .hero-logo-img {
    max-width: 220px;
  }

  .hero-card-motto {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    padding: 0 0.8rem;
  }

  /* Barra de Métricas */
  .metrics-section {
    margin-top: -1rem;
    padding-bottom: 2rem;
  }

  .metrics-wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 1.4rem 1rem;
    gap: 1.2rem;
  }

  .metric-number {
    font-size: 1.9rem;
  }

  .metric-label {
    font-size: 0.72rem;
  }

  .metric-sub {
    display: none;
  }

  /* Sobre Nós */
  .about-title {
    font-size: 1.85rem;
  }

  .about-text {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-image-card img {
    height: 240px;
  }

  .about-floating-stamp {
    right: 8px;
    bottom: 8px;
    padding: 0.8rem 1rem;
  }

  .stamp-value {
    font-size: 1.7rem;
  }

  .stamp-text {
    font-size: 0.7rem;
  }

  /* 6 Serviços */
  .service-card {
    padding: 1.6rem 1.3rem;
  }

  .service-icon-box {
    width: 52px;
    height: 52px;
    margin-bottom: 1.1rem;
  }

  .service-icon-box svg {
    width: 26px;
    height: 26px;
  }

  .service-card-title {
    font-size: 1.25rem;
  }

  .service-card-desc {
    font-size: 0.88rem;
  }

  /* Diferenciais */
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .diff-card {
    padding: 1.5rem 1.2rem;
  }

  /* Simulador de Cotação */
  .simulator-box {
    padding: 1.4rem 1.1rem;
    border-radius: var(--radius-md);
  }

  .sim-service-options {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .sim-pill-label {
    padding: 0.75rem 0.3rem;
    font-size: 0.72rem;
  }

  .sim-pill-label svg {
    width: 20px;
    height: 20px;
  }

  .sim-select {
    font-size: 16px; /* Evita zoom automático no Safari iOS */
    min-height: 48px;
    padding: 0.75rem;
  }

  .range-slider {
    height: 10px;
  }

  .range-slider::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }

  .slider-value-box {
    min-width: 50px;
    font-size: 1rem;
    padding: 0.35rem 0.6rem;
  }

  .sim-result-card {
    padding: 1.4rem 1.1rem;
  }

  .sim-result-title {
    font-size: 1.2rem;
  }

  .sim-spec-row {
    font-size: 0.82rem;
    padding: 0.55rem 0;
  }

  .sim-actions .btn {
    min-height: 48px;
    font-size: 0.92rem;
  }

  /* Depoimentos */
  .testimonial-card {
    padding: 1.6rem 1.3rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  /* FAQ */
  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
    font-size: 0.86rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.1rem;
  }

  /* Contato e Formulário */
  .contact-info-card, .contact-form-wrapper {
    padding: 1.6rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .contact-info-title {
    font-size: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-input, .form-textarea {
    font-size: 16px; /* Evita zoom no iPhone */
    min-height: 48px;
    padding: 0.75rem 0.85rem;
  }

  .contact-form-wrapper .btn {
    min-height: 50px;
    font-size: 1rem;
  }

  /* Modais Responsivos */
  .modal-overlay {
    padding: 0.8rem;
  }

  .modal-card {
    padding: 1.6rem 1.2rem;
    border-radius: var(--radius-md);
    max-height: 90vh;
    max-height: 90dvh;
  }

  .modal-card h3 {
    font-size: 1.4rem;
  }

  /* Rodapé */
  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  /* Botão WhatsApp Flutuante */
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

