/* ====================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ==================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: min(1220px, 94%);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ====================================
   HEADER - DESKTOP
   ==================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo-img {
  height: 56px;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: #222;
  font-weight: 600;
  font-size: 16px;
}

.nav a:hover {
  color: #ff9f1c;
}

.cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cta {
  background: #ff9f1c;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.cta:hover {
  background: #ffa733;
  transform: translateY(-2px);
}

.portal-cliente {
  background: #111;
  color: #fff;
}

.portal-cliente:hover {
  background: #333;
}

.icon-symbol {
  width: 20px;
  height: 20px;
}

/* Hambúrguer escondido no desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
}

/* ====================================
   HERO
   ==================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("assents/tr31.jpg") center center/cover no-repeat;
  color: #fff;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 640px) 260px;
  gap: 36px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(8,10,12,0.55), rgba(8,10,12,0.35));
  padding: 40px;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.kicker {
  color: #f3cfa5;
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  font-size: .95rem;
}

.hero-title {
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.02;
  font-weight: 700;
  color: #fff;
}

.hero-title .accent {
  color: #ef8b2e;
}

.hero-desc {
  margin: 0 0 1.5rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: #ef8b2e;
  color: #000;
  padding: .75rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(239,139,46,0.18);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(239,139,46,0.24);
}

.btn-ghost {
  display: inline-block;
  padding: .6rem .9rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.95);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
}

.hero-symbol {
  width: 200px;
  height: auto;
}

/* ====================================
   VÍDEO
   ==================================== */
.video-section {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====================================
   DESTAQUE NACIONAL
   ==================================== */
.destaque-nacional {
  background-color: #fffdf9;
  padding: 100px 0;
}

.destaque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.destaque-card {
  background-color: #fff;
  border: 1.5px solid #f28b1a;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.destaque-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

.destaque-card h2 {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #111;
  margin: 0.4rem 0 1rem 0;
}

.destaque-card p {
  font-size: 1.05rem;
  color: #111;
  font-weight: 500;
  margin-top: 0.6rem;
  margin-bottom: 1.2rem;
}

.destaque-icon {
  font-size: 1.8rem;
  color: #f28b1a;
  margin-bottom: 0.8rem;
}

.orange {
  color: #f28b1a;
}

.destaque-principal {
  background-color: #2f2f2f;
  color: #fff;
  border: none;
  text-align: left;
  padding: 3rem 2.5rem;
}

.destaque-principal h2 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.15;
}

.destaque-principal .light {
  color: #f0f0f0;
  font-weight: 400;
}

.btn-chat {
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.btn-chat:hover {
  color: #f28b1a;
}

.saiba-mais {
  color: #f28b1a;
  font-weight: 600;
}

.saiba-mais:hover {
  color: #c96c0f;
}

/* ====================================
   PARCEIROS
   ==================================== */
.parceiros {
  background: url("assents/tr2.jpg") center center/cover no-repeat;
  padding: 100px 0;
}

.container-parceiros {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 40px;
}

.card-texto {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 50px;
  border-radius: 20px;
  color: #fff;
  flex: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.card-texto h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-texto h2 span {
  color: #ff8800;
}

.card-texto p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.botao-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25d366;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.botao-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
}

.imagem-direita {
  flex: 1;
  display: flex;
  justify-content: center;
}

.imagem-direita img {
  width: 420px;
  height: auto;
}

/* ====================================
   FORMULÁRIO
   ==================================== */
.fale-com-entende {
  background: #f8fafc;
  padding: 80px 0;
}

.fale-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.fale-form {
  flex: 1;
  min-width: 280px;
}

.fale-form h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.fale-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  width: 100%;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #444;
}

.fale-img {
  flex: 1;
  text-align: center;
}

.fale-img img {
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
}

/* ====================================
   CARROSSEL
   ==================================== */
.carrossel-container {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}

.carrossel {
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carrossel-track {
  display: flex;
  gap: 50px;
  animation: rolar 15s linear infinite;
  width: max-content;
}

.carrossel-track img {
  width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.carrossel-track img:hover {
  transform: scale(1.05);
}

@keyframes rolar {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====================================
   DÚVIDAS
   ==================================== */
.duvidas {
  padding: 80px 0;
  background: #fff7ed;
}

.duvidas-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.duvidas-texto {
  flex: 1;
  min-width: 300px;
}

.card-duvidas {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  max-width: 600px;
}

.card-duvidas:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.duvidas-texto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.25;
}

.duvidas-lista {
  margin-bottom: 18px;
  color: #444;
}

.duvidas-chamada {
  margin-top: 10px;
  margin-bottom: 20px;
}

.btn-whats-large {
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whats-large:hover {
  background: #1eb75a;
}

.duvidas-img {
  flex: 1;
  text-align: center;
}

.duvidas-img img {
  width: 380px;
  max-width: 100%;
  border-radius: 12px;
  margin: 0 auto;
}

.bold { font-weight: 700; }

/* ====================================
   GRUPO ROCHA (PODCAST)
   ==================================== */
.grupo-rocha {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grupo-rocha-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.grupo-fundo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.grupo-conteudo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  padding: 80px 20px;
}

.grupo-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 40px;
  color: #fff;
  max-width: 600px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.grupo-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.grupo-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-podcast {
  background: #ff0000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-podcast:hover {
  background: #cc0000;
}

.grupo-symbol {
  display: block;
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.grupo-symbol img {
  width: 180px;
  opacity: 0.8;
}

/* ====================================
   MISSÃO, VISÃO E VALORES
   ==================================== */
.mvv {
  background: #f7f7f7;
  padding: 100px 20px;
}

.mvv-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 60px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin: 0 auto;
}

.mvv-card {
  flex: 1;
  text-align: left;
  padding: 0 25px;
}

.mvv-card.middle {
  border-left: 2px solid #f9a13b;
  border-right: 2px solid #f9a13b;
}

.mvv-icon {
  font-size: 24px;
  color: #000;
  margin-bottom: 15px;
}

.mvv-card h3 {
  color: #f9a13b;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.mvv-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
}

/* ====================================
   IMPACTO
   ==================================== */
.impacto {
  background-color: #fff5eb;
  padding: 80px 0;
  text-align: center;
}

.impacto-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.impacto-card {
  background: #ff6600;
  color: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  width: 310px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.impacto-card i {
  font-size: 40px;
  margin-bottom: 20px;
}

.impacto-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.impacto-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.impacto-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ====================================
   SEÇÃO FINAL + MAPA
   ==================================== */
.sessao-final {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 80px 0;
}

.card-preto {
  background-color: #111;
  color: #fff;
  border-radius: 20px;
  padding: 50px 60px;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.card-preto:hover {
  transform: scale(1.02);
}

.titulo-dourado {
  font-size: 2.5em;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37, #f1c27d, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: brilhoSuave 4s linear infinite;
}

@keyframes brilhoSuave {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.sessao-final p {
  margin-top: 15px;
  font-size: 1.2em;
  color: #ddd;
}

.mapa-container {
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.mapa-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.btn-maps {
  text-align: center;
  margin-top: 30px;
}

.map-button {
  display: inline-block;
  background-color: #ff931f;
  color: #fff;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 147, 31, 0.3);
}

.map-button:hover {
  background-color: #e6821c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 147, 31, 0.4);
}

/* ====================================
   RODAPÉ
   ==================================== */
.rodape-final {
  background-color: #f9f9f9;
  text-align: center;
  padding: 60px 20px 40px 20px;
}

.rodape-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 20px;
}

.rodape-logo img {
  width: 160px;
  height: auto;
}

.rodape-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.rodape-menu a {
  color: #222;
  font-weight: 500;
}

.rodape-menu a:hover {
  color: #ff8c00;
}

.voltar-topo a {
  color: #222;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voltar-topo i {
  color: #ff8c00;
  font-size: 22px;
}

.voltar-topo a:hover {
  color: #ff8c00;
}

.linha-divisoria {
  margin: 40px auto;
  width: 90%;
  border: 0;
  border-top: 1px solid #ccc;
}

.reclamacoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.reclamacoes-icone i {
  font-size: 24px;
  background-color: #ff8c00;
  color: white;
  border-radius: 50%;
  padding: 12px;
}

.reclamacoes-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #ff8c00;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 600;
  color: #ff8c00;
}

.reclamacoes-btn:hover {
  background-color: #ff8c00;
  color: white;
}

.empresa-info {
  text-align: center;
  margin-top: 30px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.empresa-info p {
  margin: 4px 0;
}

/* ====================================
   RESPONSIVIDADE - TABLETS
   ==================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-symbol {
    width: 150px;
    margin: 0 auto;
  }

  .destaque-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mvv-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .mvv-card.middle {
    border: none;
    border-top: 2px solid #f9a13b;
    border-bottom: 2px solid #f9a13b;
    padding: 30px 0;
  }

  .container-parceiros {
    flex-direction: column;
    text-align: center;
  }

  .imagem-direita img {
    width: 80%;
  }

  .grupo-symbol {
    display: none;
  }

  .carrossel-track img {
    width: 250px;
    height: 160px;
  }
}

/* ====================================
   RESPONSIVIDADE - MOBILE
   ==================================== */
@media (max-width: 768px) {
  /* HEADER MOBILE */
  .burger {
    display: flex !important;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
  }

  .cta-group {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: 70vh;
    padding-top: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-card {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-symbol {
    display: none;
  }

  /* VIDEO */
  .video-section {
    height: 250px;
  }

  /* DESTAQUE */
  .destaque-nacional {
    padding: 60px 0;
  }

  .destaque-grid {
    grid-template-columns: 1fr;
  }

  .destaque-card {
    padding: 2rem 1.5rem;
  }

  .destaque-principal {
    text-align: center;
    padding: 2rem 1.5rem;
  }

  /* PARCEIROS */
  .parceiros {
    padding: 60px 0;
  }

  .container-parceiros {
    padding: 0 20px;
  }

  .card-texto {
    padding: 30px 20px;
  }

  .imagem-direita img {
    width: 100%;
    max-width: 300px;
  }

  /* FORMULÁRIO */
  .fale-com-entende {
    padding: 60px 0;
  }

  .fale-grid {
    flex-direction: column;
  }

  .fale-img {
    display: none;
  }

  /* CARROSSEL */
  .carrossel-track img {
    width: 200px;
    height: 130px;
  }

  /* DÚVIDAS */
  .duvidas {
    padding: 60px 0;
  }

  .duvidas-grid {
    flex-direction: column;
  }

  .card-duvidas {
    padding: 30px 20px;
  }

  .duvidas-img {
    display: none;
  }

  /* GRUPO ROCHA */
  .grupo-rocha {
    min-height: 60vh;
  }

  .grupo-conteudo {
    padding: 40px 20px;
  }

  .grupo-card {
    padding: 30px 20px;
    max-width: 100%;
  }

  .grupo-card h2 {
    font-size: 1.5rem;
  }

  .grupo-card p {
    font-size: 0.95rem;
  }

  /* MVV */
  .mvv {
    padding: 60px 20px;
  }

  .mvv-container {
    padding: 30px 20px;
  }

  .mvv-card {
    padding: 20px 0;
  }

  .mvv-card h3 {
    font-size: 1.4rem;
  }

  /* IMPACTO */
  .impacto {
    padding: 60px 0;
  }

  .impacto-card {
    width: 100%;
    max-width: 350px;
    padding: 30px 20px;
  }

  /* SEÇÃO FINAL */
  .sessao-final {
    padding: 60px 20px;
  }

  .card-preto {
    padding: 30px 25px;
  }

  .titulo-dourado {
    font-size: 1.8em;
  }

  /* MAPA */
  .mapa-container iframe {
    height: 300px;
  }

  .map-button {
    width: 90%;
    max-width: 320px;
  }

  /* RODAPÉ */
  .rodape-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .rodape-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .voltar-topo {
    margin-top: 15px;
  }
}

/* ====================================
   RESPONSIVIDADE - MOBILE PEQUENO
   ==================================== */
@media (max-width: 480px) {
  .logo-img {
    height: 45px;
  }

  .hero {
    min-height: 65vh;
  }

  .hero-card {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .btn-primary,
  .btn-ghost {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .video-section {
    height: 200px;
  }

  .destaque-card h2 {
    font-size: 1.3rem;
  }

  .destaque-card p {
    font-size: 0.95rem;
  }

  .card-texto h2 {
    font-size: 1.5rem;
  }

  .card-texto p {
    font-size: 0.95rem;
  }

  .botao-whatsapp {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .fale-form h2 {
    font-size: 1.5rem;
  }

  .contact-form input {
    padding: 10px;
    font-size: 0.9rem;
  }

  .carrossel-track img {
    width: 180px;
    height: 110px;
  }

  .card-duvidas h2 {
    font-size: 1.4rem;
  }

  .grupo-card h2 {
    font-size: 1.3rem;
  }

  .mvv-card h3 {
    font-size: 1.2rem;
  }

  .mvv-card p {
    font-size: 0.9rem;
  }

  .titulo-dourado {
    font-size: 1.4em;
  }

  .card-preto p {
    font-size: 1em;
  }

  .impacto-card h3 {
    font-size: 1.3rem;
  }
}

/* ====================================
   UTILITÁRIOS
   ==================================== */
.text-center {
  text-align: center;
}

.hidden-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}
/* ====================================
   MELHORIAS DE RESPONSIVIDADE (ADICIONAIS)
   ==================================== */

/* 1. Remove o botão hambúrguer duplicado no header */
.header-inner .burger:nth-child(2) {
  display: none;
}

/* 2. Garante que o menu mobile não quebre em telas pequenas */
@media (max-width: 768px) {
  .nav.show {
    animation: slideDown 0.3s ease-out forwards;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. Ajusta o hero para evitar overflow em mobile */
.hero {
  background-attachment: scroll !important; /* Evita problemas em iOS */
}

/* 4. Corrige o botão WhatsApp no mobile (centraliza e evita quebra) */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* 5. Ajusta o carrossel para pausar no hover (melhor UX) */
.carrossel-track {
  animation-play-state: running;
}
.carrossel-container:hover .carrossel-track {
  animation-play-state: paused;
}

/* 6. Melhora o formulário em telas pequenas */
@media (max-width: 480px) {
  .contact-form input,
  .contact-form button {
    font-size: 16px !important; /* Evita zoom no iOS */
  }
  .checkbox-row {
    font-size: 0.9rem;
  }
}

/* 7. Ajusta o botão "Reclamações" no rodapé */
@media (max-width: 480px) {
  .reclamacoes {
    gap: 12px;
  }
  .reclamacoes-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* 8. Garante que imagens do carrossel não quebrem layout */
.carrossel-track img {
  flex-shrink: 0;
}

/* 9. Melhora a legibilidade em telas pequenas */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem !important;
  }
  .hero-desc {
    font-size: 0.85rem;
  }
  .destaque-card h2 {
    font-size: 1.2rem;
  }
  .card-texto h2 {
    font-size: 1.4rem;
  }
}

/* 10. Evita zoom indesejado no input em iOS */
input[type="text"],
input[type="tel"],
input[type="email"] {
  font-size: 16px;
}

/* 11. Ajuste fino no padding do header em mobile */
@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
  }
  .logo-img {
    height: 48px;
  }
}

/* 12. Garante que o vídeo não cause overflow */
.video-section video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

/* 13. Melhora o botão "Voltar ao topo" em mobile */
.voltar-topo a {
  font-size: 0.95rem;
}

/* 14. Ajusta o espaçamento do rodapé em mobile */
@media (max-width: 768px) {
  .rodape-container {
    gap: 25px;
  }
  .rodape-menu ul {
    gap: 12px;
  }
}

/* 15. Evita que o mapa quebre em telas muito pequenas */
@media (max-width: 480px) {
  .mapa-container iframe {
    height: 280px;
  }
}
/* ====================================
   VÍDEO RESPONSIVO PERFEITO
   ==================================== */
.video-section {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  overflow: hidden;
  background: #000;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Remove a altura fixa antiga */
.video-section {
  height: auto !important;
}
/* ====================================
   CHECKBOX + TEXTO CENTRALIZADO
   ==================================== */

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-size: 14px;
  color: #555;
}

.checkbox-row input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #f90; /* Cor laranja do seu tema */
}

.checkbox-row label {
  margin: 0;
  cursor: pointer;
  line-height: 1.4;
}
/* ====================================
   TÍTULOS DOS 3 CARDS: FONTE INTER PADRÃO
   ==================================== */

.impacto-card h3 {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 16px 0 12px !important;
  line-height: 1.3 !important;
}

/* Mobile */
@media (max-width: 768px) {
  .impacto-card h3 {
    font-size: 1.25rem !important;
  }
}