body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
  font-weight: 600;
}

.menu a {
  font-weight: 500;
}

.card h4 {
  font-weight: 600;
}

.card p {
  font-weight: 400;
}

/* ================= CONTAINER PADRÃO ================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= HEADER ================= */
.header {
  background: #fff;
  color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 45px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.menu a:hover,
.menu a.active {
  text-decoration: underline;
}

/* ================= BANNER ================= */
.banner-sobre img {
  width: 100%;
  height: auto;
  display: block;
  height: 100vh;
}

/* ================= SOBRE ================= */
.sobre-empresa {
  background: #F9A63A;
  padding: 60px 0;
  color: #fff;
}

.sobre-empresa h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: Inter;
  font-weight: 900;
  font-style: Bold;
  font-size: 45px;
  line-height: 42px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.sobre-empresa p {
  max-width: 900px;
  margin-bottom: 16px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.lista-sobre {
  margin-top: 20px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 42px;
  letter-spacing: 0px;
  vertical-align: middle;
}

.lista-sobre li {
  margin-bottom: 10px;
  font-weight: 500;
}

.container {
  margin: auto;
  width: 65%;
}

/* ================= DIFERENCIAIS ================= */
.diferenciais .container {
  margin: auto;
  width: 100%;
}

.diferenciais {
  background: #fff;
  padding: 60px 0;
}

.diferenciais h3 {
  font-size: 26px;
  margin-bottom: 40px;
  color: #F7941D;
}

.cards-diferenciais {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 100px;
}

.card {
  background: #f6f6f6;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card i {
  font-size: 36px;
  color: #2E8BC6;
  margin-bottom: 15px;
}

.card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ================= FOOTER ================= */
.footer {
  background: #2E8BC6;
  color: #fff;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
}

.copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}



/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }

  .menu {
    margin-top: 10px;
  }

  .menu a {
    margin: 0 10px;
  }

  .sobre-empresa {
    padding: 40px 0;
  }
}

/* ==========================================================================
   FASE 2 — REFINO VISUAL CONSERVADOR (SOBRE)
   ========================================================================== */
:root {
  --p2-bg: #ffffff;
  --p2-soft: #f7f8fa;
  --p2-text: #243042;
  --p2-muted: #5f6b7a;
  --p2-orange: #F7941D;
  --p2-orange-dark: #F9A63A;
  --p2-line: #e7ebf0;
  --p2-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.banner-sobre img {
  height: min(70vh, 560px);
  object-fit: cover;
}

.sobre-empresa {
  background: var(--p2-bg);
  color: var(--p2-text);
  padding: 64px 0;
}

.sobre-empresa h2 {
  color: var(--p2-orange);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 24px;
}

.sobre-empresa p,
.lista-sobre {
  font-size: 1.04rem;
  line-height: 1.8;
  color: var(--p2-text);
}

.lista-sobre {
  padding-left: 20px;
}

.lista-sobre li {
  margin-bottom: 12px;
}

.diferenciais {
  background: var(--p2-soft);
  border-top: 1px solid var(--p2-line);
  border-bottom: 1px solid var(--p2-line);
}

.diferenciais h3 {
  color: var(--p2-orange);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.card {
  background: #fff;
  border: 1px solid var(--p2-line);
  border-radius: 14px;
  box-shadow: var(--p2-shadow);
}

.card i {
  color: var(--p2-orange);
}

.card h4 {
  color: var(--p2-text);
}

.card p {
  color: var(--p2-muted);
  line-height: 1.6;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  font-size: 30px;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .banner-sobre img {
    height: 42vh;
  }

  .sobre-empresa {
    padding: 42px 0;
  }

  .sobre-empresa h2 {
    margin-bottom: 18px;
  }

  .sobre-empresa p,
  .lista-sobre {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .cards-diferenciais {
    margin-bottom: 30px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 27px;
    right: 14px;
    bottom: 14px;
  }
}

/* ==========================================================================
   FASE 2 — AJUSTE FINAL CONSERVADOR
   ========================================================================== */
.sobre-empresa .container,
.diferenciais .container {
  max-width: 1180px;
}

.sobre-empresa strong,
.sobre-empresa b {
  color: #1f2937;
}

.cards-diferenciais {
  gap: 20px;
}

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

  .card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   FASE 3 — POLIMENTO VISUAL FINAL
   ========================================================================== */
.sobre-empresa p,
.lista-sobre li {
  text-wrap: pretty;
}

.sobre-empresa .container {
  border-radius: 14px;
}

.cards-diferenciais .card {
  min-height: 250px;
}

.cards-diferenciais .card h4 {
  min-height: 44px;
}

@media (max-width: 768px) {
  .cards-diferenciais .card {
    min-height: 0;
  }

  .cards-diferenciais .card h4 {
    min-height: 0;
  }
}

/* ==========================================================================
   CARROSSEL — UM POUCO DA NOSSA HISTÓRIA
   ========================================================================== */
.history-carousel-section {
  padding: 10px 0 70px;
  background: #fff;
}

.history-carousel-header {
  text-align: center;
  margin-bottom: 18px;
}

.history-carousel-header h3 {
  color: var(--p2-orange);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 6px;
}

.history-carousel-header p {
  margin: 0;
  color: var(--p2-muted);
}

.history-carousel {
  border: 1px solid var(--p2-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--p2-shadow);
  scrollbar-width: none;
}

.history-carousel::-webkit-scrollbar {
  display: none;
}

.history-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  padding: 14px;
}

.history-card {
  flex: 0 0 clamp(220px, 28vw, 360px);
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 5px 16px rgba(17, 24, 39, 0.14);
  transition: transform 0.25s ease;
  cursor: zoom-in;
}

.history-card:hover {
  transform: translateY(-4px);
}

.history-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.history-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 22, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px 84px;
  z-index: 2500;
}

.history-lightbox.is-open {
  display: flex;
}

.history-lightbox-image-wrap {
  width: min(100%, 1200px);
  display: flex;
  justify-content: center;
}

.history-lightbox img {
  width: min(100%, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
}


.history-lightbox-next {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.history-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  font-size: 1.7rem;
  cursor: pointer;
}

.history-carousel-empty {
  margin: 12px 0 0;
  text-align: center;
  color: var(--p2-muted);
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .history-carousel-section {
    padding-bottom: 42px;
  }

  .history-track {
    gap: 10px;
    padding: 10px;
  }

  .history-card {
    flex-basis: 68vw;
  }

  .history-lightbox {
    padding: 14px 62px 14px 14px;
  }

  .history-lightbox-next {
    right: 12px;
    width: 42px;
    height: 42px;
  }
}
