/* ============================================================
   Ralifla Semijoias — style.css
   Réplica estática do site ralifla.com.br
   ============================================================ */

:root {
  --background: hsl(40, 100%, 97%);
  --foreground: hsl(20, 20%, 15%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(0, 56%, 40%);
  --primary-dark: hsl(0, 56%, 30%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(40, 55%, 58%);
  --secondary-foreground: hsl(20, 20%, 15%);
  --muted: hsl(40, 60%, 94%);
  --muted-foreground: hsl(20, 10%, 45%);
  --accent: hsl(0, 60%, 88%);
  --radius: 0.75rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-gold { color: var(--secondary); }
.font-black { font-weight: 900; }

.italic-heading {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 700;
}

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2); }
.btn--gold { background: var(--secondary); color: var(--foreground); }
.btn--gold:hover { background: hsl(40, 55%, 52%); }
.btn--sm { padding: 0.45rem 1.25rem; font-size: 0.75rem; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-pill--gold {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}
.btn-pill--gold:hover { background: hsl(40, 55%, 52%); }
.btn-pill--outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(4px);
}
.btn-pill--outline:hover { background: var(--secondary); color: var(--primary-foreground); }
.btn-pill--outline-light {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  font-size: 0.8rem;
}
.btn-pill--outline-light:hover { background: var(--secondary); color: var(--primary-foreground); }

/* ============ Nav ============ */
.nav {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 50;
}
.nav-desktop { display: flex; align-items: center; gap: 0.75rem; }
.nav-mobile { display: none; position: relative; }
.nav-mobile-toggle {
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: blur(4px);
  border: 2px solid var(--secondary);
  color: var(--primary);
  padding: 0.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
  cursor: pointer;
  display: flex;
}
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 3rem;
  right: 0;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  padding: 1rem;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 240px;
}
.nav-mobile-menu.open { display: flex; }

.dropdown { position: relative; }
.dropdown-trigger { outline: none; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.25);
}
.dropdown-menu.open { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
}
.dropdown-menu a:hover { background: var(--secondary); color: var(--primary-foreground); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.hero-content { flex: 1; text-align: left; }
.hero-spacer { flex: 1; }
.hero-logo { height: 5rem; object-fit: contain; margin-bottom: 1.5rem; }
.hero-badge {
  display: inline-block;
  background: hsl(40 55% 58% / 0.2);
  color: var(--secondary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--primary-foreground);
  line-height: 1.15;
}
.hero p {
  margin-top: 1.5rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 1.125rem;
  max-width: 36rem;
}
.hero-cta { margin-top: 2rem; }

/* ============ Gold strip ============ */
.strip {
  background: linear-gradient(to right, var(--secondary), hsl(40 55% 58% / 0.8), hsl(40 55% 58% / 0.6));
  padding: 0.75rem 0;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.strip-item { display: flex; align-items: center; gap: 0.5rem; }
.strip-icon { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.strip-item p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-foreground);
  max-width: 120px;
  line-height: 1.25;
  text-align: center;
}

/* ============ Oportunidade ============ */
.opportunity {
  position: relative;
  padding: 5rem 0;
  background:
    radial-gradient(hsl(0 60% 88% / 0.55) 1.5px, transparent 1.5px) 0 0 / 22px 22px,
    var(--background);
  overflow: hidden;
}
.deco-circle {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}
.deco-circle--1 {
  top: 2rem; right: 12%;
  width: 14rem; height: 14rem;
  background: hsl(0 60% 88% / 0.5);
}
.deco-circle--2 {
  bottom: 3rem; right: 25%;
  width: 20rem; height: 20rem;
  border: 1px solid hsl(40 55% 58% / 0.3);
}
.opportunity-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.opportunity-text { flex: 1; }
.opportunity-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.opportunity-sub {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card {
  border-radius: 1rem;
  padding: 1.5rem;
  color: var(--primary-foreground);
  text-align: center;
  background: linear-gradient(135deg, hsl(0 56% 40%), hsl(0 56% 30%));
}
.benefit-icon {
  width: 3.5rem; height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  border: 2px solid rgb(255 255 255 / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 1.75rem; height: 1.75rem; }
.benefit-card h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.75rem; color: rgb(255 255 255 / 0.8); line-height: 1.6; }
.opportunity-img { flex: 1; display: flex; justify-content: flex-end; }
.opportunity-img img {
  width: 100%;
  max-width: 42rem;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

/* ============ Excelência ============ */
.excellence {
  position: relative;
  background: linear-gradient(to right, var(--primary), hsl(0, 56%, 30%));
  overflow-x: clip;
}
.excellence-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
}
.excellence-text {
  width: 45%;
  padding: 5rem 1.25rem 5rem max(2rem, calc((100vw - 1280px) / 2 + 2rem));
}
.excellence-text h2 {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  color: var(--primary-foreground);
  line-height: 1.2;
  max-width: 28rem;
}
.excellence-text p {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 1rem;
  max-width: 36rem;
}
.excellence-cta { margin-top: 1.5rem; }
.excellence-cta .btn { font-size: 0.875rem; }
.excellence-img {
  flex: 1;
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
}
.excellence-img img { width: 100%; object-fit: contain; }

/* ============ Peças únicas ============ */
.pieces {
  position: relative;
  z-index: 20;
  padding: 6rem 0;
  background: var(--card);
}
.pieces-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.pieces-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.piece-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  background: var(--background);
  display: flex;
  flex-direction: column;
}
.piece-card img { width: 100%; height: auto; object-fit: contain; }
.piece-card-body {
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.piece-card h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.piece-card p { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.4; }
.piece-link {
  margin-top: 0.75rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}
.piece-link:hover { text-decoration: underline; }
.pieces-text { flex: 1; text-align: left; }
.pieces-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.pieces-text p {
  color: var(--muted-foreground);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ============ Section header ============ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.section-header-bar {
  width: 4rem;
  height: 0.25rem;
  margin: 1.25rem auto 0;
  border-radius: 9999px;
  background: var(--primary);
}
.section-header-bar--red { background: var(--primary); }

/* ============ Modalidades ============ */
.modalities {
  padding: 6rem 0;
  background: var(--muted);
}
.modalities-grid {
  display: flex;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.modalities-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
}
.modality-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.modality-card img { width: 100%; height: auto; display: block; }
.modality-card--tall { width: 50%; align-self: stretch; }
.modality-card--tall img { height: 100%; object-fit: cover; }
.modality-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 55%;
}
.modality-overlay--center {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  max-width: 100%;
}
.modality-overlay h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}
.modality-overlay p {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.modality-overlay--center p { max-width: 85%; }
.modality-overlay--compact { padding: 1.5rem; }
.modality-overlay--compact h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.modality-overlay--compact p { font-size: 0.75rem; margin-bottom: 0.5rem; }

/* ============ FAQ ============ */
.faq {
  padding: 6rem 0;
  background: var(--card);
}
.faq-container { max-width: 48rem; }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: hsl(0 60% 88% / 0.3);
  border-radius: 0.75rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-radius: 0.75rem;
}
.accordion-item.open .accordion-trigger { border-radius: 0.75rem 0.75rem 0 0; }
.accordion-trigger svg { flex-shrink: 0; transition: transform 0.2s; }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  display: none;
  padding: 1rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: rgb(51 41 36 / 0.8);
  line-height: 1.7;
  white-space: pre-line;
}
.accordion-item.open .accordion-content { display: block; }

/* ============ Footer ============ */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgb(255 255 255 / 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-contact h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}
.footer-contact svg {
  width: 1rem; height: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.footer-actions p { font-size: 0.75rem; color: rgb(255 255 255 / 0.5); }

/* ============ WhatsApp flutuante ============ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 2rem; height: 2rem; }

/* ============ Dialog ============ */
.dialog-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgb(0 0 0 / 0.6);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.dialog-backdrop.open { display: flex; }
.dialog {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 100%;
  max-width: 24rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}
.dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  line-height: 1;
}
.dialog-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.dialog-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.dialog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.dialog-btn:hover { opacity: 0.9; }
.dialog-btn--red { background: var(--primary); color: var(--primary-foreground); }
.dialog-btn--gold { background: var(--secondary); color: var(--secondary-foreground); }

/* ============ Área do Cliente ============ */
.client-hero {
  background: linear-gradient(to right, var(--primary), hsl(0, 56%, 30%));
  padding: 8rem 0 4rem;
  text-align: center;
}
.client-hero-logo { height: 4rem; margin: 0 auto 1.5rem; object-fit: contain; }
.client-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-foreground);
}
.client-hero p {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.85);
  font-size: 1rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.client-form-section { padding: 4rem 0 6rem; background: var(--card); }
.client-form-container { max-width: 44rem; }
.client-form h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--primary-dark);
}
.client-form h2:first-child { margin-top: 0; }
.form-hint { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.8125rem; font-weight: 600; }
.form-field input {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(30, 20%, 85%);
  border-radius: 0.5rem;
  background: var(--background);
  color: var(--foreground);
}
.form-field input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
  border-color: var(--secondary);
}
.pecas-list { display: flex; flex-direction: column; gap: 0.75rem; }
.peca-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
  background: var(--muted);
  border-radius: 0.75rem;
  padding: 1rem;
}
.peca-remove {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem 0.25rem;
}
.btn-add-peca {
  margin-top: 0.75rem;
  background: none;
  border: 2px dashed var(--secondary);
  color: var(--secondary);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-add-peca:hover { background: var(--secondary); color: var(--primary-foreground); border-style: solid; }
.form-actions { margin-top: 2rem; }
.form-actions .btn { width: 100%; }
.form-error { margin-top: 1rem; color: var(--primary); font-size: 0.875rem; font-weight: 600; }

.success-box {
  text-align: center;
  background: var(--muted);
  border-radius: 1rem;
  padding: 3rem 2rem;
}
.success-box .success-icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-box .success-icon svg { width: 2rem; height: 2rem; }
.success-box h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.success-box p { color: var(--muted-foreground); margin-bottom: 0.75rem; }
.success-box .btn { margin-top: 1.25rem; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1024px) {
  .hero-spacer { display: none; }
  .hero-content { text-align: center; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { display: flex; justify-content: center; }

  .opportunity-inner { flex-direction: column; }
  .opportunity-img { justify-content: center; }

  .excellence-inner { flex-direction: column; align-items: stretch; }
  .excellence-text { width: 100%; padding: 3rem 1.25rem; }

  .pieces-inner { flex-direction: column; }
  .pieces-text { text-align: center; }
}

@media (max-width: 768px) {
  .nav { top: 1rem; right: 1rem; }
  .nav-desktop { display: none; }
  .nav-mobile { display: block; }

  .hero { padding-top: 4rem; }
  .hero-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .hero-logo { height: 3rem; }
  .hero p { font-size: 0.875rem; }

  .strip-inner { justify-content: center; }

  .opportunity { padding: 3rem 0; }
  .benefit-cards { gap: 0.75rem; }
  .benefit-card { padding: 0.75rem; border-radius: 0.75rem; }
  .benefit-icon { width: 2.5rem; height: 2.5rem; margin-bottom: 0.5rem; }
  .benefit-icon svg { width: 1.25rem; height: 1.25rem; }
  .benefit-card h3 { font-size: 0.625rem; }
  .benefit-card p { font-size: 0.5625rem; }

  .pieces { padding: 3rem 0; }
  .pieces-cards { gap: 0.75rem; }
  .piece-card-body { padding: 0.5rem; }
  .piece-card h4 { font-size: 0.625rem; }
  .piece-card p { display: none; }
  .piece-link { font-size: 0.5625rem; }

  .modalities { padding: 3rem 0; }
  .modalities-grid { flex-direction: column; }
  .modalities-col { width: 100%; gap: 0.75rem; }
  .modality-card--tall { width: 100%; margin-top: 0.75rem; }
  .modality-overlay { padding: 1rem; max-width: 60%; }
  .modality-overlay p { font-size: 0.625rem; margin-bottom: 0.5rem; }

  .faq { padding: 3rem 0; }
  .accordion-trigger { font-size: 0.75rem; padding: 0.75rem 1rem; }
  .accordion-content { font-size: 0.75rem; }

  .form-grid { grid-template-columns: 1fr; }
  .peca-row { grid-template-columns: 1fr; }
  .peca-remove { justify-self: end; }
  .client-hero { padding: 6rem 0 3rem; }
  .client-form-section { padding: 2.5rem 0 4rem; }

  .footer { padding: 2.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-actions { align-items: flex-start; }

  .whatsapp-float { width: 3.5rem; height: 3.5rem; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

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

/* ============================================================
   Página: Quero ser uma revendedora
   ============================================================ */

.reseller-hero {
  padding: 3rem 0 2.5rem;
  background: var(--background);
}

.reseller-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.reseller-hero-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.reseller-hero-img img {
  width: 100%;
  max-width: 24rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.reseller-hero-text { flex: 1; }

.reseller-hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
}

.reseller-hero-text p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(51, 40, 36, 0.8);
  max-width: 36rem;
  margin-inline: auto;
}

.reseller-steps {
  background: var(--muted);
  padding: 3rem 0;
}

.reseller-steps-inner {
  max-width: 48rem;
  text-align: center;
}

.reseller-steps-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 2rem;
}

.reseller-list {
  list-style: none;
  text-align: left;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: rgba(51, 40, 36, 0.85);
  font-size: 1rem;
}

.reseller-list li { display: flex; gap: 0.5rem; }

.reseller-list span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.38);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .reseller-hero { padding: 5rem 0 4rem; }
  .reseller-hero-inner { flex-direction: row; gap: 4rem; text-align: left; }
  .reseller-hero-img img { max-width: 28rem; }
  .reseller-hero-text p { margin-inline: 0; font-size: 1.125rem; }
  .reseller-steps { padding: 5rem 0; }
}
