/* ==============================
   Domaine Sans — Text
   ============================== */

/* Light */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Regular */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Regular Italic */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Semibold */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: "Domaine Sans";
  src: url("../fonts/domaine-sans-text-bold-italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* =======================
   RESET BÁSICO PARA VIEWPORT
======================= */
html,
body {
  height: 100%;
  margin: 0;
}

/* =======================
   TIPOGRAFIA BASE
======================= */
body {
  font-family: "Domaine Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  color: #cee2b8;
}

/* =======================
   BANNER FULLSCREEN
======================= */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #000;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}

@supports (height: 100svh) {
  .banner {
    height: 100svh;
  }
}

.banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; 
  display: block;
}

.banner-desktop {
  display: block;
}

.banner-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .banner-img {
    object-position: center 0%; /* topo absoluto */
  }
}

@media (max-width: 1100px) {
  .banner-desktop {
    display: none;
  }

  .banner-mobile {
    display: block;
  }
}

/* =======================
   BACKGROUNDS
======================= */
.bg-parede {
  background-image: url("../image/fundo-portas-desktop.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 1100px) {
  .bg-parede {
    background-image: url("../image/fundo-portas-mobile.jpg");
    background-position: center top;
  }
}

.bg-listras {
  background-image: url("../image/fundo-listras-desktop.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Mobile */
@media (max-width: 1100px) {
  .bg-listras {
    background-image: url("../image/fundo-listras-mobile.jpg");
  }
}

.footer {
  background-image: url("../image/tarja-abacate.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =======================
   IMAGENS / GALERIA
======================= */
.gallery-card .card-img-top {
  object-fit: cover;
}

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

.text-center img {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 576px) {
  .text-center img {
    max-width: 80%;
  }

  .text-center img.small-img {
    max-width: 14%;
  }
}

/* =======================
   MODAL DE IMAGEM
======================= */
#imageModalImg {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

#imageModal .modal-dialog {
  max-width: 95vw;
  margin: auto;
}

/* =======================
   TIPOGRAFIA / TÍTULOS
======================= */
h1,
h2,
h4,
h5,
h6,
.section-title,
.btn {
  font-family: "Domaine Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 35px !important;
}

h3 {
  font-size: 25px !important;
}

@media (max-width: 576px) {
  h1,
  h2,
  h4,
  h5,
  h6,
  .section-title,
  .btn {
    font-size: 25px !important;
  }

  h3 {
    font-size: 18px !important;
  }
}

/* =======================
   TEXTOS / UTILITÁRIOS
======================= */
.italico { font-style: italic; }
.fw-600 { font-weight: 600 !important; }
.fw-300 { font-weight: 300; }
.sublinhado { text-decoration: underline; }
.fs-15r { font-size: 20px; }

@media (max-width: 576px) {
  .fs-15r { font-size: 15px; }
}

.plr-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pt-20 { padding-top: 20px; }
.pt-50 { padding-top: 50px; }
.pt-150 { padding-top: 150px; }
.pb-70 { padding-bottom: 70px; }
.pb-150 { padding-bottom: 150px; }
.mb-0 { margin-bottom: 0 !important; }

.blue-color { color: #384986; }

b { font-weight: 900; }

/* =======================
   QUEBRA DE LINHA CONTROLADA
======================= */
br { display: inline; }

@media (max-width: 576px) {
  br { display: none; }
}


/* =======================
   FOOTER
======================= */
footer {
  text-align: center;
  font-weight: bold;
  padding: 30px 0 10px;
  color: #2f514b;
}

.logo-header,
.logo-footer {
  max-width: 200px;
  height: auto;
}

.logo-header { margin-top: 10px; }
.logo-footer { margin-bottom: 10px; }

footer .assinatura {
  font-size: 0.75rem;
  font-weight: 300;
}

@media (max-width: 576px) {
  footer { font-size: 0.6rem; }
  footer .assinatura { font-size: 0.5rem; }
}
