/* ============================================================
   CLÉOART CAMISARIA — Stylesheet
   Estilo: Clássico / Elegante
   Cores: Turquesa (#1D7A6F) + Laranja (#C96E2E) + Creme + Dourado
   ============================================================ */

/* Desativa hifenização automática do browser */
* { hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; }

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

:root {
  --teal:            #17C4BD;
  --teal-dark:       #0FA8A3;
  --teal-mid:        #13B8B1;
  --teal-light:      #2EDBD4;
  --teal-glow:       rgba(23, 196, 189, 0.22);
  --teal-border:     rgba(23, 196, 189, 0.32);
  --teal-gradient:   radial-gradient(circle at 30% 40%, #2EDBD4, #0FA8A3);

  --orange:          #C96E2E;
  --orange-light:    #D9844A;
  --orange-dark:     #A8561F;
  --orange-glow:     rgba(201, 110, 46, 0.2);

  --gold:            #B8962E;
  --gold-light:      #D4AE4A;

  --cream:           #FAF6F0;
  --cream-dark:      #F0EAE0;
  --pink-light:      #FBF0E8;

  --white:           #FFFFFF;
  --gray-50:         #F9FAFB;
  --gray-100:        #F3F4F6;
  --gray-200:        #E5E7EB;
  --gray-300:        #D1D5DB;
  --gray-500:        #2D3748;
  --gray-600:        #1A202C;
  --gray-700:        #374151;
  --gray-900:        #111827;

  --dark:            #0A1A18;
  --dark-mid:        #112420;
  --dark-warm:       #1A1208;

  --font:            'Inter', sans-serif;
  --font-display:    'Playfair Display', serif;
  --radius:          6px;
  --radius-sm:       4px;
  --transition:      0.3s ease;
  --shadow:          0 2px 16px rgba(0,0,0,0.08);
  --shadow-teal:     0 4px 20px rgba(29, 122, 111, 0.22);
  --shadow-or:       0 4px 20px rgba(201, 110, 46, 0.22);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--teal-gradient);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: radial-gradient(circle at 60% 60%, #2EDBD4, #0D9A95);
  border-color: var(--teal-dark);
  box-shadow: 0 4px 20px rgba(23, 196, 189, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  font-size: .95rem;
  padding: 1rem 2rem;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

/* ---------- SECTION COMMON ---------- */
.section { padding: 6rem 0; }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Tag elegante com linhas laterais */
.section__tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section__tag::before,
.section__tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: .6;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.section__desc {
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: rgba(10, 26, 24, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar.scrolled {
  padding: .7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.45);
}

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

.navbar__logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition);
}
.navbar__logo-img:hover { opacity: .82; }

/* Desktop: menu fixo alinhado ao topo, mesmo nível do navbar */
.navbar__menu {
  position: fixed;
  top: 0;
  right: 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 2.8rem;
  z-index: 1001;
  background: transparent;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

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

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10,70,67,0.78) 0%, rgba(23,196,189,0.60) 50%, rgba(10,70,67,0.72) 100%),
    url('../images/hero-bg.jpg') center / cover no-repeat;
}

/* Padrão clássico: linhas diagonais sutis */
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.018) 0px,
    rgba(255,255,255,0.018) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(201,110,46,0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* Layout duas colunas do hero */
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 9rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero__content {
  max-width: 640px;
}

/* Logo à direita do hero */
.hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  animation: float-logo 4s ease-in-out infinite;
}

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

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.hero__tag i { font-size: .8rem; }

/* Linha decorativa antes da tag */
.hero__tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
  opacity: .7;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
  word-break: normal;
  overflow-wrap: normal;
}

.hero__title--accent { color: var(--orange-light); }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.90);
  margin-bottom: 2.8rem;
  max-width: 560px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .01em;
}

/* Linha decorativa separando subtítulo dos botões */
.hero__divider {
  width: 48px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 2.2rem;
  opacity: .8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.38);
  font-size: 1rem;
  animation: bounce 2s infinite;
  z-index: 2;
  letter-spacing: .15em;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  background:
    linear-gradient(rgba(23,196,189,0.82), rgba(15,168,163,0.82)),
    url('../images/highlights-bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
  padding: 3.5rem 0;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.highlight-card:last-child { border-right: none; }

/* Linha dourada decorativa em cima */
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.highlight-card__icon {
  font-size: 1.4rem;
  color: var(--orange-light);
  margin-bottom: .4rem;
}

.highlight-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.highlight-card__label {
  font-size: .78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  background:
    linear-gradient(rgba(240,253,252,0.84), rgba(240,253,252,0.84)),
    url('../images/sobre-bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.sobre .section__title { color: var(--gray-900); }
.sobre .section__desc  { color: var(--gray-500); }
.sobre .section__tag   { color: var(--teal); }
.sobre .section__tag::before,
.sobre .section__tag::after { background: var(--teal); }

/* Timeline da história */
.historia__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.historia-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.historia-card:hover {
  box-shadow: var(--shadow-teal);
  border-top-color: var(--orange);
}

.historia-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.historia-card__ano {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: .5rem;
}

.historia-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .7rem;
}

.historia-card__text {
  font-size: .88rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* MVV */
.mvv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
  border-top: 3px solid var(--teal);
}

.mvv-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
}

.mvv-card--full { grid-column: 1 / -1; }

.mvv-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.mvv-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}

.mvv-card__text {
  color: var(--gray-500);
  line-height: 1.75;
  font-size: .95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.value-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}

.value-item > i {
  color: var(--teal);
  font-size: .95rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: .2rem;
  font-size: .88rem;
  letter-spacing: .02em;
}

.value-item p {
  color: var(--gray-500);
  font-size: .84rem;
  line-height: 1.6;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos {
  background:
    linear-gradient(rgba(255,255,255,0.84), rgba(255,255,255,0.84)),
    url('../images/produtos-bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.produtos .section__title { color: var(--gray-900); }
.produtos .section__desc  { color: var(--gray-500); }
.produtos .section__tag   { color: var(--teal); }
.produtos .section__tag::before,
.produtos .section__tag::after { background: var(--teal); }

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.produto-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 3px solid transparent;
}

.produto-card:hover {
  border-top-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.produto-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(23, 196, 189, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 1.2rem;
  transition: background var(--transition), color var(--transition);
}

.produto-card:hover .produto-card__icon {
  background: var(--teal-gradient);
  color: var(--white);
}

.produto-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}

.produto-card__desc {
  color: var(--gray-500);
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.produto-card__list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding-top: .8rem;
  border-top: 1px solid var(--gray-100);
}

.produto-card__list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  color: var(--gray-600);
}

.produto-card__list li i {
  color: var(--teal);
  font-size: .75rem;
  flex-shrink: 0;
}

/* Card CTA */
.produto-card--cta {
  background: var(--dark);
  border: none;
  border-top: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: .5rem;
  color: var(--white);
}

.produto-card--cta:hover {
  box-shadow: var(--shadow-or);
  border-top-color: var(--orange);
}

.produto-card--cta__icon {
  font-size: 1.8rem;
  color: #25D366;
  margin-bottom: .5rem;
}

.produto-card--cta h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.produto-card--cta p {
  color: rgba(255,255,255,0.78);
  font-size: .88rem;
  margin-bottom: .5rem;
  line-height: 1.6;
}

.produto-card--cta .btn--whatsapp { margin-top: auto; border-radius: var(--radius); }

/* ============================================================
   MERCADO
   ============================================================ */
.mercado {
  background:
    linear-gradient(rgba(240,253,252,0.84), rgba(240,253,252,0.84)),
    url('../images/mercado-bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.mercado .section__title  { color: var(--gray-900); }
.mercado .section__tag    { color: var(--teal); }
.mercado .section__tag::before,
.mercado .section__tag::after { background: var(--teal); }
.mercado .mercado__text p { color: var(--gray-600); }

.mercado__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mercado__text .section__title { text-align: left; }
.mercado__text .section__tag   { justify-content: flex-start; }
.mercado__text .section__tag::before { display: none; }

.mercado__text p {
  line-height: 1.85;
  margin-bottom: .8rem;
}

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

.mercado-feat {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--teal);
  transition: box-shadow var(--transition);
}

.mercado-feat:hover {
  box-shadow: var(--shadow-teal);
}

.mercado-feat__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.mercado-feat strong {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .2rem;
  letter-spacing: .01em;
}

.mercado-feat p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background:
    linear-gradient(rgba(255,255,255,0.84), rgba(255,255,255,0.84)),
    url('../images/contato-bg.jpg') center / cover no-repeat;
  background-attachment: fixed, fixed;
}

.contato .section__title { color: var(--gray-900); }
.contato .section__desc  { color: var(--gray-500); }
.contato .section__tag   { color: var(--teal); }
.contato .section__tag::before,
.contato .section__tag::after { background: var(--teal); }

.contato .contact-item strong   { color: var(--gray-900); }
.contato .contact-item p,
.contato .contact-item a        { color: var(--gray-500); }
.contato .contact-item a:hover  { color: var(--teal); }
.contato .contact-item__icon    { background: rgba(23,196,189,0.12); color: var(--teal); }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(29, 122, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .1rem;
}

.contact-item strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .3rem;
}

.contact-item p,
.contact-item a {
  color: var(--gray-500);
  font-size: .92rem;
  line-height: 1.65;
  transition: color var(--transition);
}

.contact-item a:hover { color: var(--teal); }

.contact-social {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
}

.contact-social a i { width: 16px; }

.contato__map {
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.contato__map iframe { height: 100%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #0a4a46 0%, #0d5e59 100%);
  padding: 4.5rem 0 0;
  border-top: 3px solid var(--teal-light);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand { display: flex; flex-direction: column; gap: .4rem; }

.footer__logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  margin-bottom: .4rem;
}

.footer__slogan {
  color: rgba(255,255,255,0.60);
  font-size: .84rem;
  font-style: italic;
  margin-top: .6rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: .95rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--teal-gradient);
  border-color: var(--teal);
  color: var(--white);
}

.footer__links { display: flex; flex-direction: column; gap: .55rem; }

.footer__links h4 {
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .7rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__links a {
  color: rgba(255,255,255,0.60);
  font-size: .86rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--teal-light); }

.footer__bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.2rem 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.42);
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .03em;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  animation: none;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.80); }
}

/* ============================================================
   EFEITOS & ANIMAÇÕES
   ============================================================ */

/* ---------- ENTRADA DO HERO (page load) ---------- */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__tag {
  animation: hero-fade-up .7s ease both;
  animation-delay: .1s;
}

.hero__title {
  animation: hero-fade-up .8s ease both;
  animation-delay: .25s;
}

.hero__subtitle {
  animation: hero-fade-up .8s ease both;
  animation-delay: .4s;
}

.hero__divider {
  animation: hero-fade-up .6s ease both;
  animation-delay: .5s;
}

.hero__actions {
  animation: hero-fade-up .8s ease both;
  animation-delay: .55s;
}

.hero__logo-wrap {
  animation: hero-fade-up 1s ease both;
  animation-delay: .35s;
}

/* ---------- GRADIENTE ANIMADO no acento do título ---------- */
.hero__title--accent {
  background: linear-gradient(90deg, var(--orange-light), var(--gold-light), var(--orange-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---------- BRILHO (SHINE) nos botões ---------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: none;
}

.btn:hover::after {
  animation: btn-shine .55s ease forwards;
}

@keyframes btn-shine {
  to { left: 160%; }
}

/* ---------- LINHA ANIMADA sob o section__title ---------- */
.section__title {
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-dark), var(--gold));
  transition: width .8s ease;
}

.section__title.line-visible::after {
  width: 60px;
}

/* Títulos alinhados à esquerda (mercado) */
.mercado__text .section__title::after {
  left: 0;
  transform: none;
}

/* ---------- REVEAL: fade + slide dos elementos ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.from-left {
  transform: translateX(-30px);
}

.reveal.from-right {
  transform: translateX(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- HIGHLIGHT CARD: pulse no número ---------- */
@keyframes count-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.highlight-card__num.pop {
  animation: count-pop .4s ease;
}

/* ---------- HOVER nos historia-card: borda dourada ---------- */
.historia-card {
  transition: all .35s ease, border-top-color .35s ease;
}

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

/* ---------- HOVER produto-card: ícone animado ---------- */
.produto-card__icon {
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.produto-card:hover .produto-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ---------- MERCADO-FEAT: slide da borda esquerda ---------- */
.mercado-feat {
  border-left: 3px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.mercado-feat:hover {
  border-left-color: var(--teal);
  transform: translateX(4px);
}

/* ---------- FOOTER SOCIAL: rotação suave ---------- */
.footer__social a {
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}

.footer__social a:hover {
  transform: translateY(-3px) rotate(5deg);
}

/* ---------- WHATSAPP: anel de pulso ---------- */
@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
  animation: wa-ring 2s ease infinite;
}

.whatsapp-float:hover {
  animation: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* ---------- NAVBAR LINK: underline colorido animado ---------- */
.nav-link::after {
  background: linear-gradient(90deg, var(--teal-light), var(--gold-light));
  height: 1.5px;
}

/* ============================================================
   PREVENÇÃO GLOBAL DE OVERFLOW
   — NUNCA aplicar overflow-x: hidden em section ou containers
     pois o browser converte overflow-y para auto e cria scrollbar interno
   ============================================================ */

/* Apenas html e body bloqueiam overflow horizontal */
html, body { overflow-x: hidden; }

img, video, iframe, embed, object { max-width: 100%; }

/* ============================================================
   RESPONSIVO — Cobertura completa: 320px → 2560px+
   ============================================================ */

/* ── Garante que todos os elementos respeitem a largura disponível ── */
* { min-width: 0; box-sizing: border-box; }

.hero__title, .section__title, .section__desc,
.mvv-card__text, .produto-card__desc,
.footer__slogan, .footer__links a,
.contact-item p, .contact-item a {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ══════════════════════════════════════════════════════════════
   4K / ULTRA-WIDE  ≥ 2560px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 2560px) {
  .container        { max-width: 2000px; }
  .section          { padding: 10rem 0; }
  .hero__title      { font-size: 6.5rem; }
  .hero__logo       { width: 380px; height: 380px; }
  .navbar__logo-img { height: 72px; }
  .section__title   { font-size: 3.4rem; }
  .section__desc    { font-size: 1.2rem; }
  .highlight-card__num { font-size: 3rem; }
}

/* ══════════════════════════════════════════════════════════════
   FULL HD  ≥ 1920px  (até 2559px)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1920px) and (max-width: 2559px) {
  .container        { max-width: 1560px; }
  .section          { padding: 8.5rem 0; }
  .hero__title      { font-size: 5.4rem; }
  .hero__logo       { width: 310px; height: 310px; }
  .navbar__logo-img { height: 64px; }
  .section__title   { font-size: clamp(2.4rem, 2.5vw, 3rem); }
  .highlight-card__num { font-size: 2.6rem; }
}

/* ══════════════════════════════════════════════════════════════
   WIDE HD  1600 – 1919px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) and (max-width: 1919px) {
  .container        { max-width: 1420px; }
  .section          { padding: 7.5rem 0; }
  .hero__title      { font-size: clamp(3.4rem, 3.2vw, 4.8rem); }
  .hero__logo       { width: 280px; height: 280px; }
  .navbar__logo-img { height: 58px; }
}

/* ══════════════════════════════════════════════════════════════
   HD  1440 – 1599px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) and (max-width: 1599px) {
  .container        { max-width: 1280px; }
  .hero__logo       { width: 270px; height: 270px; }
  .navbar__menu     { gap: 2.4rem; }
}

/* ══════════════════════════════════════════════════════════════
   LAPTOP GRANDE  1280 – 1439px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) and (max-width: 1439px) {
  .container        { max-width: 1140px; }
  .navbar__menu     { gap: 2rem; right: 1.2rem; }
  .nav-link         { font-size: .8rem; }
  .hero__logo       { width: 250px; height: 250px; }
  .mercado__inner   { gap: 3rem; }
  .footer__inner    { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   TABLET LANDSCAPE / LAPTOP PEQUENO  1024 – 1279px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) and (max-width: 1279px) {
  .container        { max-width: 960px; }
  .section          { padding: 5.5rem 0; }
  .navbar__menu     { gap: 1.6rem; right: 1rem; }
  .nav-link         { font-size: .76rem; letter-spacing: .07em; }

  .hero__inner      { gap: 2.5rem; }
  .hero__logo       { width: 220px; height: 220px; }
  .hero__title      { font-size: clamp(2.2rem, 3.5vw, 3.4rem); }

  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-card   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }

  .historia__grid    { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .produtos__grid    { grid-template-columns: repeat(2, 1fr); }
  .mercado__inner    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .mercado__features { grid-template-columns: 1fr; }
  .contato__grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contato__map      { height: 420px; }
  .footer__inner     { grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════════════════════════
   TABLET PORTRAIT / MOBILE LANDSCAPE  ≤ 1023px
   Menu vira hambúrguer (gaveta lateral)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  /* Desativa parallax em touch devices — evita bugs de rendering no iOS/Android */
  .highlights,
  .sobre,
  .produtos,
  .mercado,
  .contato {
    background-attachment: scroll, scroll;
  }
  /* Ativa hambúrguer */
  .navbar__toggle { display: flex; z-index: 1003; }

  /* Menu lateral (gaveta) */
  .navbar__menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(300px, 80vw);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2.5rem;
    gap: 2rem;
    z-index: 1002;
    box-shadow: -4px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .navbar__menu.open { display: flex; }
  .nav-link          { font-size: 1rem; letter-spacing: .1em; }
}

/* ══════════════════════════════════════════════════════════════
   TABLET PORTRAIT  768 – 1023px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1023px) {
  .container        { max-width: 720px; padding: 0 1.5rem; }
  .section          { padding: 5rem 0; }
  .section__header  { margin-bottom: 3rem; }

  .navbar__logo-img { height: 48px; }
  .hero__inner      { padding: 7.5rem 1.5rem 5rem; gap: 2.5rem; grid-template-columns: 1fr auto; }
  .hero__logo       { width: 190px; height: 190px; }
  .hero__title      { font-size: clamp(2rem, 4vw, 2.8rem); }

  .highlights__grid  { grid-template-columns: repeat(2, 1fr); }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }

  .mvv__grid         { grid-template-columns: repeat(2, 1fr); }
  .mvv-card--full    { grid-column: 1 / -1; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: repeat(2, 1fr); }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: repeat(2, 1fr); }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contato__map      { height: 380px; }
  .footer__inner     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__logo-img  { height: 52px; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE GRANDE / PHABLET  600 – 767px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 600px) and (max-width: 767px) {
  .container        { padding: 0 1.25rem; }
  .section          { padding: 4.5rem 0; }
  .section__header  { margin-bottom: 2.5rem; }

  .navbar__logo-img { height: 46px; }
  .hero__inner      { padding: 7rem 1.25rem 5rem; grid-template-columns: 1fr; gap: 2rem; }
  .hero__logo-wrap  { order: -1; }
  .hero__logo       { width: 180px; height: 180px; margin: 0 auto; }
  .hero__title      { font-size: clamp(1.9rem, 5vw, 2.6rem); text-align: center; }
  .hero__subtitle   { text-align: center; }
  .hero__tag        { justify-content: center; }
  .hero__divider    { margin: 1rem auto; }
  .hero__actions    { flex-direction: column; align-items: center; gap: .8rem; width: 100%; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .highlights__grid  { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }

  .mvv__grid         { grid-template-columns: 1fr; }
  .mvv-card--full    { grid-column: auto; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: repeat(2, 1fr); }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: repeat(2, 1fr); }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid     { grid-template-columns: 1fr; }
  .contato__map      { height: 320px; }
  .footer__inner     { grid-template-columns: 1fr; gap: 2rem; }
  .footer__logo-img  { height: 50px; }
  .footer__slogan    { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE MÉDIO  480 – 599px
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 480px) and (max-width: 599px) {
  .container        { padding: 0 1.1rem; }
  .section          { padding: 4rem 0; }
  .section__header  { margin-bottom: 2.5rem; }
  .section__title   { font-size: 1.75rem; }

  .navbar__logo-img { height: 42px; }
  .navbar__menu     { width: min(280px, 86vw); padding: 5rem 1.75rem 2rem; }

  .hero__inner      { padding: 6rem 1.1rem 4.5rem; grid-template-columns: 1fr; gap: 2rem; }
  .hero__logo-wrap  { order: -1; }
  .hero__logo       { width: 160px; height: 160px; margin: 0 auto; }
  .hero__title      { font-size: 1.85rem; text-align: center; }
  .hero__subtitle   { font-size: .96rem; text-align: center; }
  .hero__tag        { justify-content: center; }
  .hero__divider    { margin: 1rem auto; }
  .hero__actions    { flex-direction: column; align-items: center; gap: .75rem; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .highlights__grid  { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 1.1rem; }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }

  .mvv__grid         { grid-template-columns: 1fr; }
  .mvv-card--full    { grid-column: auto; }
  .values-grid       { grid-template-columns: 1fr; }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: 1fr; }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: 1fr; }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid    { grid-template-columns: 1fr; }
  .contato__map     { height: 280px; }
  .footer__inner    { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__logo-img { height: 46px; }
  .footer__slogan   { max-width: 100%; }
  .btn              { padding: .8rem 1.6rem; font-size: .86rem; }
  .whatsapp-float   { width: 50px; height: 50px; font-size: 1.35rem; bottom: 1.2rem; right: 1.2rem; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE PEQUENO  390 – 479px  (iPhone 14, Pixel 7, Galaxy S)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 390px) and (max-width: 479px) {
  .container        { padding: 0 1rem; }
  .section          { padding: 3.5rem 0; }
  .section__header  { margin-bottom: 2rem; }
  .section__title   { font-size: 1.6rem; }
  .section__desc    { font-size: .94rem; }

  .navbar__logo-img { height: 40px; }
  .navbar__menu     { width: min(265px, 88vw); padding: 5rem 1.5rem 2rem; gap: 1.6rem; }

  .hero__inner      { padding: 5.5rem 1rem 4rem; grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__logo-wrap  { order: -1; }
  .hero__logo       { width: 145px; height: 145px; margin: 0 auto; }
  .hero__title      { font-size: 1.7rem; text-align: center; }
  .hero__subtitle   { font-size: .92rem; text-align: center; }
  .hero__tag        { font-size: .66rem; justify-content: center; }
  .hero__divider    { margin: .85rem auto; }
  .hero__actions    { flex-direction: column; align-items: center; gap: .7rem; }
  .hero__actions .btn { width: 100%; max-width: 290px; justify-content: center; }

  .highlights__grid  { grid-template-columns: repeat(2, 1fr); gap: .35rem; }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.3rem .85rem; }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }
  .highlight-card__num { font-size: 1.7rem; }

  .mvv__grid         { grid-template-columns: 1fr; }
  .mvv-card          { padding: 1.4rem; }
  .mvv-card--full    { grid-column: auto; }
  .values-grid       { grid-template-columns: 1fr; }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: 1fr; }
  .produto-card      { padding: 1.4rem; }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: 1fr; }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid    { grid-template-columns: 1fr; }
  .contato__map     { height: 260px; }
  .footer__inner    { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__logo-img { height: 44px; }
  .footer__bottom p { font-size: .74rem; }
  .btn              { padding: .78rem 1.5rem; font-size: .84rem; }
  .whatsapp-float   { width: 48px; height: 48px; font-size: 1.3rem; bottom: 1.1rem; right: 1.1rem; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE MUITO PEQUENO  360 – 389px  (Galaxy A, Moto G)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 360px) and (max-width: 389px) {
  .container        { padding: 0 .9rem; }
  .section          { padding: 3rem 0; }
  .section__header  { margin-bottom: 1.75rem; }
  .section__title   { font-size: 1.5rem; }
  .section__desc    { font-size: .9rem; }

  .navbar__logo-img { height: 38px; }
  .navbar__menu     { width: min(255px, 90vw); padding: 5rem 1.4rem 2rem; gap: 1.5rem; }

  .hero__inner      { padding: 5.5rem .9rem 3.5rem; grid-template-columns: 1fr; gap: 1.6rem; }
  .hero__logo-wrap  { order: -1; }
  .hero__logo       { width: 135px; height: 135px; margin: 0 auto; }
  .hero__title      { font-size: 1.58rem; text-align: center; }
  .hero__subtitle   { font-size: .88rem; text-align: center; }
  .hero__tag        { font-size: .64rem; justify-content: center; }
  .hero__divider    { margin: .8rem auto; }
  .hero__actions    { flex-direction: column; align-items: center; gap: .65rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .highlights__grid  { grid-template-columns: repeat(2, 1fr); gap: .3rem; }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.2rem .75rem; }
  .highlight-card:nth-child(3),
  .highlight-card:nth-child(4) { border-bottom: none; }
  .highlight-card__num { font-size: 1.55rem; }
  .highlight-card__label { font-size: .68rem; }

  .mvv__grid         { grid-template-columns: 1fr; }
  .mvv-card          { padding: 1.25rem; }
  .mvv-card--full    { grid-column: auto; }
  .values-grid       { grid-template-columns: 1fr; }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: 1fr; }
  .produto-card      { padding: 1.25rem; }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: 1fr; }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid    { grid-template-columns: 1fr; }
  .contato__map     { height: 240px; }
  .footer__inner    { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__logo-img { height: 40px; }
  .footer__bottom p { font-size: .72rem; }
  .btn              { padding: .72rem 1.3rem; font-size: .82rem; }
  .whatsapp-float   { width: 46px; height: 46px; font-size: 1.2rem; bottom: 1rem; right: 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE MÍNIMO  ≤ 359px  (iPhone SE 1ª gen, telas antigas)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 359px) {
  .container        { padding: 0 .8rem; }
  .section          { padding: 2.5rem 0; }
  .section__header  { margin-bottom: 1.5rem; }
  .section__title   { font-size: 1.35rem; }
  .section__desc    { font-size: .86rem; }

  .navbar__logo-img { height: 34px; }
  .navbar__menu     { width: 90vw; padding: 5rem 1.2rem 2rem; gap: 1.4rem; }

  .hero__inner      { padding: 5rem .8rem 3rem; grid-template-columns: 1fr; gap: 1.4rem; }
  .hero__logo-wrap  { order: -1; }
  .hero__logo       { width: 120px; height: 120px; margin: 0 auto; }
  .hero__title      { font-size: 1.4rem; text-align: center; }
  .hero__subtitle   { font-size: .84rem; text-align: center; }
  .hero__tag        { font-size: .62rem; justify-content: center; letter-spacing: .1em; }
  .hero__divider    { margin: .7rem auto; }
  .hero__actions    { flex-direction: column; align-items: center; gap: .6rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .highlights__grid  { grid-template-columns: 1fr; gap: .3rem; }
  .highlight-card    { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .highlight-card:last-child { border-bottom: none; }
  .highlight-card__num { font-size: 1.5rem; }

  .mvv__grid         { grid-template-columns: 1fr; }
  .mvv-card          { padding: 1.1rem; }
  .mvv-card--full    { grid-column: auto; }
  .values-grid       { grid-template-columns: 1fr; }
  .historia__grid    { grid-template-columns: 1fr; }
  .produtos__grid    { grid-template-columns: 1fr; }
  .produto-card      { padding: 1.1rem; }
  .mercado__inner    { grid-template-columns: 1fr; }
  .mercado__features { grid-template-columns: 1fr; }
  .mercado__text .section__title { text-align: center; }
  .mercado__text .section__tag   { justify-content: center; }
  .mercado__text > p { text-align: center; }
  .mercado__text .btn { display: flex; margin: 1.5rem auto 0; width: fit-content; }

  .contato__grid    { grid-template-columns: 1fr; }
  .contato__map     { height: 220px; }
  .footer__inner    { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer__logo-img { height: 36px; }
  .footer__bottom p { font-size: .7rem; }
  .btn              { padding: .68rem 1.1rem; font-size: .8rem; }
  .whatsapp-float   { width: 44px; height: 44px; font-size: 1.15rem; bottom: .9rem; right: .9rem; }
}
