

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

section,
header,
footer,
.container,
.row {
  max-width: 100%;
}

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

/* ===== MENU ===== */
nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease;
  padding: 1.8rem 1rem;
}

nav.navbar.scrolled {
  background-color: rgba(128, 98, 43, 0.95) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav.navbar .nav-link {
  color: #fff !important;
  font-weight: 600;
  transition: 0.2s;
}

nav.navbar .nav-link:hover {
  opacity: 0.8;
}

/* Menu Mobile */
.navbar-toggler {
  padding: 0.5rem;
  border: none;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] i {
  transform: rotate(90deg);
}

/* Estilo do menu mobile quando aberto */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 75%;
    height: auto;
    max-height: 80vh;
    background: rgba(128, 98, 43, 0.98);
    padding: 1.5rem;
    padding-top: calc(1.5rem + 15%);
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.15);
    overflow-y: visible;
    transform-origin: right top;
    animation: menuSlideRight 0.3s ease-out;
  }

  @keyframes menuSlideRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .navbar-nav {
    margin: 0;
    padding: 0;
  }

  .navbar-nav .nav-item {
    margin: 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background-color 0.2s ease;
  }

  .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-item:last-child .nav-link {
    margin-bottom: 0;
  }
}

/* ===== HERO ===== */
header.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../../public/images/home.jpg") center/cover no-repeat;
  min-height: 100dvh;
  min-height: unset;
  min-height: 100dvh;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile: usar imagem específica para mobile */
@media (max-width: 768px) {
  header.hero {
    background: url("../../public/images/footer-header-mobile.png") center/cover
      no-repeat;
  }
}

header.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(163, 126, 81, 0.1);
  z-index: 1;
}

header.hero .brand {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 80px);
  max-width: 720px;
}

header.hero .brand img {
  width: clamp(240px, 45vw, 420px);
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

header.hero .brand p {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* ===== SETA ===== */
.scroll-down {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #80622b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  animation: bounce 1.9s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

/* ======================= QUEM SOMOS ======================= */
.quem-somos {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../../public/images/quem-somos.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
}

.quem-somos::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 50%;
  height: 80%;
  max-height: 720px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.quem-somos .overlay-text {
  position: relative;
  z-index: 2;
  max-width: 44%;
  margin-left: 7%;
  color: #333;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
}

.quem-somos .overlay-text h2 {
  letter-spacing: -0.03em;
  font-size: 2rem;
  color: #a37e51;
  font-weight: 700;
  margin-bottom: 22px;
}

.quem-somos .overlay-text p {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.quem-somos .overlay-text .logo {
  width: 280px;
  margin-top: 20px;
  align-self: flex-start;
}

/* ======================= SOBRE MIM (esquerda: foto, direita: texto) ======================= */
.sobre-mim {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #80622b;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.sobre-mim-foto {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  margin: 20px;
}

.sobre-mim-texto {
  padding: 30px;
}

.sobre-mim-texto h2 {
  letter-spacing: -0.03em;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
}

.sobre-mim-texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Mobile: Sobre Mim */
@media (max-width: 768px) {
  .sobre-mim {
    min-height: auto;
    padding: 60px 20px;
  }

  .sobre-mim-foto {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .sobre-mim-texto {
    padding: 0;
    text-align: left;
  }

  .sobre-mim-texto h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .sobre-mim-texto p {
    font-size: 0.95rem;
  }
}

/* ===== O QUE FAZEMOS ===== */
.o-que-fazemos {
  background: #fdfaf6;
  padding: 100px min(6vw, 80px);
  text-align: center;
  border-top: 8px solid #80622b33;
  border-bottom: 8px solid #80622b33;
}

.o-que-fazemos h2 {
  color: #80622b;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  margin-bottom: 50px;
}

.oqf-card {
  background: #fff;
  border-radius: 20px;
  padding: 70px 60px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.oqf-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.highlight {
  color: #80622b;
  font-weight: bold;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: #fff;
  text-align: center;
  padding: 100px min(6vw, 80px);
}

.depoimentos h2 {
  color: #80622b;
  font-weight: 700;
  margin-bottom: 50px;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

.depoimento-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  padding: 40px;
  height: 100%;
}

.depoimento-item:hover {
  transform: translateY(-6px);
}

.depoimento-item p {
  font-style: italic;
  line-height: 1.8;
  color: #555;
}

.depoimento-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.depoimento-footer img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #80622b;
}

.depoimento-footer strong {
  color: #80622b;
  display: block;
}

.depoimento-footer small {
  color: #6c757d;
}

.depoimentos .row {
  align-items: stretch;
  /* todas as colunas com mesma altura */
}

.depoimento-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.depoimento-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.depoimento-footer img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #80622b;
}

.depoimento-footer div {
  text-align: left;
}

.depoimento-footer strong {
  color: #80622b;
  font-weight: 700;
}

.depoimento-footer small {
  color: #6c757d;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
body {
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1;
}

footer {
  background: #80622b;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  font-size: 1rem;
  width: 100%;
  flex-shrink: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-contact i {
  font-size: 1.3rem;
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 1.5s infinite;
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
}

/* ===== BALÃO ===== */
.whatsapp-bubble {
  position: absolute;
  right: 80px;
  bottom: 10px;
  background: #fff;
  color: #222;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 16px;
  padding: 12px 16px;
  width: 240px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
  pointer-events: none;
}

/* ===== PONTINHA ===== */
.whatsapp-bubble::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: -10px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #ffffff;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15));
}

/* ===== MOSTRA AO PASSAR O MOUSE ===== */
.whatsapp-btn:hover .whatsapp-bubble {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMAÇÃO SUAVE ===== */
@keyframes fade {
  0%,
  10% {
    opacity: 0;
    transform: translateY(8px);
  }

  20%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }

  90%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.whatsapp-bubble span {
  display: inline-block;
  animation: fade 5s ease-in-out infinite;
}

/* ===== PULSO DO BOTÃO ===== */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}

.footer-social a {
  color: #fff;
  font-size: 1.6rem;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (max-width: 576px) {
  /* garante que nada passe de 100vw */
  body,
  header,
  main,
  section,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* reduz levemente paddings grandes que estouram em telas pequenas */
  .navbar {
    padding: 1rem !important;
  }

  .quem-somos,
  .sobre-mim,
  .depoimentos,
  .o-que-fazemos {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* evita qualquer deslocamento lateral inesperado */
  .quem-somos .imagem {
    margin: 0;
  }

  .brand img {
    max-width: 85vw;
  }
}

/* ===== SETA: manter centralização sem causar overflow ===== */
.scroll-down {
  left: 50%;
  transform: translateX(-50%);
}

.footer-social {
  gap: 20px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 1.4rem;
}

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

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (max-width: 600px) {
  .whatsapp-bubble {
    right: 75px;
    width: 200px;
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}

/* ===== FIX MOBILE PARA QUEM SOMOS E SOBRE MIM ===== */
@media (max-width: 768px) {
  /* Impede overflow lateral */
  body,
  header,
  main,
  section,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .quem-somos {
    position: relative;
    width: 100%;
    min-height: auto;
    background: url(../../public/images/quem-somos.jpg) center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 60px 16px;
  }

  .quem-somos::before {
    top: 5%;
    bottom: 5%;
    left: 3%;
    width: 94%;
    height: auto;
    max-height: none;
    min-height: 450px;
    border-radius: 15px;
  }

  .quem-somos .overlay-text {
    max-width: 90%;
    margin-left: 3%;
    padding: 25px 20px;
  }

  .quem-somos .overlay-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .quem-somos .overlay-text p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .quem-somos .overlay-text .logo {
    width: 140px;
    margin-top: 15px;
  }

  /* Sobre Mim - uses main .sobre-mim styles above */

  .depoimento-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: none;
    padding-top: 0;
  }

  .depoimento-footer div {
    text-align: center;
  }

  .depoimento-footer img {
    margin-bottom: 10px;
  }
}

@media (min-width: 1200px) {
  .sobre-mim {
    padding: 80px 60px;
  }
}

@media (min-width: 1600px) {
  .sobre-mim {
    margin: 0 auto;
    padding: 100px 80px;
  }
}

/* ==================== RESPONSIVIDADE COMPLETA ==================== */

/* Telas pequenas (celulares) */
@media (max-width: 480px) {
  /* Hero */
  header.hero .brand {
    padding: 30px 20px;
    margin: 0 10px;
  }

  header.hero .brand p {
    font-size: 1rem;
  }

  /* Navbar */
  nav.navbar {
    padding: 0.8rem 0.5rem;
  }

  nav.navbar .navbar-brand img {
    height: 32px !important;
  }

  .navbar-toggler {
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler i {
    font-size: 1.4rem;
  }

  /* Menu mobile */
  .navbar-collapse {
    background: rgba(128, 98, 43, 0.98);
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    margin-top: 0.5rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Quem Somos */
  .quem-somos::before {
    border-radius: 12px;
  }

  .quem-somos .overlay-text {
    padding: 20px 15px;
  }

  .quem-somos .overlay-text h2 {
    font-size: 1.35rem;
  }

  .quem-somos .overlay-text p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .quem-somos .overlay-text .logo {
    width: 120px;
  }

  /* Sobre Mim - uses main .sobre-mim styles above */

  /* O Que Fazemos */
  .o-que-fazemos {
    padding: 60px 16px;
  }

  .o-que-fazemos h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .oqf-card {
    padding: 30px 20px;
    border-radius: 12px;
  }

  .oqf-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 60px 16px;
  }

  .depoimentos h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .depoimento-item {
    padding: 25px 18px;
    border-radius: 12px;
  }

  .depoimento-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .depoimento-footer img {
    width: 55px;
    height: 55px;
  }

  .depoimento-footer strong {
    font-size: 0.95rem;
  }

  .depoimento-footer small {
    font-size: 0.8rem;
  }

  /* Footer */
  footer {
footer {
  min-height: auto;
  padding: 60px 20px;
}
  }

  footer h3 {
    font-size: 1.3rem;
  }

  footer p {
    font-size: 0.9rem;
  }

  .footer-social {
    gap: 16px;
  }

  .footer-social a {
    font-size: 1.3rem;
  }

  /* WhatsApp */
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    font-size: 28px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-bubble {
    right: 62px;
    bottom: 5px;
    width: 180px;
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  /* Scroll down */
  .scroll-down {
    width: 44px;
    height: 44px;
    font-size: 22px;
    bottom: 25px;
  }
}

/* Telas médias (tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  /* Hero */
  header.hero .brand {
    padding: 40px 30px;
  }

  header.hero .brand p {
    font-size: 1.15rem;
  }

  /* Navbar */
  nav.navbar {
    padding: 1rem;
  }

  /* Quem Somos */
  .quem-somos::before {
    border-radius: 15px;
  }

  .quem-somos .overlay-text {
    padding: 25px;
  }

  .quem-somos .overlay-text h2 {
    font-size: 1.6rem;
  }

  .quem-somos .overlay-text p {
    font-size: 0.95rem;
  }

  .quem-somos .overlay-text .logo {
    width: 160px;
  }

  /* Sobre Mim - uses main .sobre-mim styles above */

  /* O Que Fazemos */
  .o-que-fazemos {
    padding: 80px 30px;
  }

  .oqf-card {
    padding: 40px 30px;
  }

  .oqf-card p {
    font-size: 1rem;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 80px 30px;
  }

  .depoimento-item {
    padding: 30px;
  }

  /* Footer */
  footer {
    padding: 50px 20px;
  }

  /* WhatsApp */
  .whatsapp-btn {
    width: 60px;
    height: 60px;
  }

  .whatsapp-bubble {
    right: 68px;
    width: 200px;
  }
}

/* Telas grandes (desktops pequenos) */
@media (min-width: 769px) and (max-width: 991px) {
  /* Navbar */
  nav.navbar {
    padding: 1.2rem 1rem;
  }

  nav.navbar .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem !important;
  }

  /* Quem Somos */
  .quem-somos .overlay-text {
    max-width: 48%;
    margin-left: 5%;
    padding: 30px 35px;
  }

  .quem-somos .overlay-text h2 {
    font-size: 1.8rem;
  }

  .quem-somos .overlay-text p {
    font-size: 0.95rem;
  }

  .quem-somos .overlay-text .logo {
    width: 220px;
  }

  /* Sobre Mim - uses main .sobre-mim styles above */

  /* O Que Fazemos */
  .o-que-fazemos {
    padding: 90px 40px;
  }

  .oqf-card {
    padding: 50px 40px;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 90px 40px;
  }

  .depoimento-item {
    padding: 35px;
  }
}

/* Telas extras (notebooks e desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Ajustes gerais para telas menores que full HD */
  .quem-somos .overlay-text {
    max-width: 46%;
    margin-left: 6%;
    padding: 35px 40px;
  }

  /* Sobre Mim - uses main .sobre-mim styles above */

  .oqf-card {
    padding: 55px 45px;
  }
}

/* Suporte para telas com altura reduzida */
@media (max-height: 600px) and (orientation: landscape) {
  header.hero {
  height: 100dvh;
  min-height: unset;
    padding: 60px 20px;
  }

  header.hero .brand {
    padding: 25px 40px;
  }

  header.hero .brand img {
    width: 200px;
    margin-bottom: 15px;
  }

  .quem-somos,
  .sobre-mim {
    min-height: auto;
    padding: 60px 20px;
  }

  .quem-somos::before {
    max-height: none;
    min-height: auto;
  }
}

/* Suporte para dark mode (opcional, baseado nas preferências do sistema) */
@media (prefers-color-scheme: dark) {
  /* Você pode adicionar estilos dark mode aqui se necessário */
}

/* Suporte para redução de movimento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* Suporte para impressão */
@media print {
  .whatsapp-btn,
  .scroll-down,
  nav.navbar {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  .depoimento-item {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
  }
}

/* =================@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');================= */

/* Garantia final de que não há overflow */
@media (max-width: 100vw) {
  * {
    max-width: 100vw;
  }
}

/* FIX MOBILE SCROLL */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

header.hero {
  height: 100dvh;
  min-height: unset;
  overflow: hidden;
}

footer {
  min-height: auto;
  padding: 60px 20px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    overflow-y: visible;
    max-height: none;
  }
}