@import url("https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kapakana:wght@300..400&family=Katibeh&family=Playwrite+AU+SA:wght@100..400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kapakana:wght@300..400&family=Karma:wght@300;400;500;600;700&family=Katibeh&family=Playwrite+AU+SA:wght@100..400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@font-face {
  font-family: "Good Brush";
  src: url("../fonts/Good-Brush.woff2") format("woff2"),
    url("../fonts/Good-Brush.woff") format("woff"),
    url("../fonts/Good-Brush.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Open Sans", sans-serif;
}

html {
  font-size: 50%;
  overflow-x: hidden;
}

body {
  background: #fffaf6;
  overflow-x: hidden;
  color: #2f3559;
}

/*HEADER*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 18%;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffa4;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
  transition: transform 0.3s ease;
}
.logo-text:hover {
  transform: scale(1.05);
}

.logo-title {
  color: #2f3559;
  font-weight: 900;
  font-family: "Chelsea Market", cursive;
  letter-spacing: 1px;
  font-size: 2.9rem;
  text-transform: uppercase;
  border-bottom: 3px solid #2f3559;
  padding-bottom: 3px;
}
.logo-subtitle {
  color: #d47618;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.logo {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}
.img-logo {
  cursor: pointer;
  transition: 0.3s ease;
  width: 80px;
  height: 60px;
}
.img-logo:hover {
  transform: scale(1.1);
}

#menu-toggle {
  font-size: 3rem;
  display: none;
  cursor: pointer;
  background: transparent;
  color: #2f3559;
  line-height: 1;
  padding: 0.2rem 0.4rem;
}

/*NAV BAR*/
.navbar {
  display: flex;
  align-items: center;
  position: relative;
  gap: 5rem;
}

.navbar .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.navbar .nav-list > li {
  position: relative;
}

.navbar a {
  font-family: "Chelsea Market", cursive;
  font-size: 2rem;
  color: #2f3559;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
  padding-bottom: 0.5rem;
}

.navbar a:hover {
  color: #d47618;
}

.navbar a.active {
  color: #d47618;
}

.navbar .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 30 rem;
  background: #0f1a3a;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  padding: 4px 0;
  list-style: none;
  display: none;
  z-index: 10000;
}

.navbar .dropdown li a {
  display: block;
  padding: 6px 12px;
  color: #fff;
  font-family: "Chelsea Market", cursive;
  font-size: 1.8rem;
  white-space: nowrap;
  text-align: left;
}

.navbar .dropdown li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.navbar .has-dropdown:hover > .dropdown {
  display: block;
}
/* Dropdown ENCRUZILHADAS */
.navbar .has-dropdown.encruzilhadas > .dropdown {
  width: 25rem;
  padding: 8px 0;
}

.navbar .has-dropdown.encruzilhadas > .dropdown li a {
  font-size: 1.5rem;
  padding: 8px 16px;
}

/* Mostra o submenu */
.navbar .has-dropdown:hover > .dropdown {
  display: block;
}

.navbar .has-dropdown:has(.dropdown a.active) > a {
  color: #d47618;
}

/*FOOTER */
.footer-bar {
  width: 100%;
  height: 10px;
  background-color: #2f3559;
}

.footer-top {
  background: #fffaf6;
  padding: 60px 18%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-info h2 {
  font: 700 3.2rem/1.2 Poppins, sans-serif;
  color: #2f3559;
  margin-bottom: 16px;
}

.footer-info p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-info a {
  color: #d47618;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Formulário */
.contact-form {
  width: 100%;
}

.form-row {
  display: block;
  margin-bottom: 12px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #cfcbd4;
  border-radius: 6px;
  padding: 12px 14px;
  font: 500 1.4rem/1.4 Poppins, sans-serif;
  color: #2f3559;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b86a1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f3559;
  box-shadow: 0 0 0 3px rgba(47, 53, 89, 0.08);
}

.btn-submit {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 12px 16px;
  background: #d47618;
  color: #fff;
  font: 700 1.5rem/1 Poppins, sans-serif;
  cursor: pointer;
  transition: filter 0.2s, transform 0.02s;
}

.btn-submit:hover {
  filter: brightness(1.02);
}

.btn-submit:active {
  transform: translateY(1px);
}

.footer-bottom {
  background: #2f3559;
  color: #fff;
  text-align: center;
  padding: 22px 12px;
  font-size: 1.4rem;
}

/*---QUEM SOMOS---*/
#quem-somos {
  width: 100%;
  background-color: #fff3ed;
  padding: 80px 0 0;
  overflow: hidden;
}

.quem-somos-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 0 18%;
}

.quem-somos-text h2 {
  font-family: "Katibeh", serif;
  text-transform: uppercase;
  color: #d47618;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}

.quem-somos-text p {
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0%;
  text-align: justify;
  color: #2f3559;
  margin-bottom: 20px;
}

.quem-somos-text p:last-of-type {
  margin-bottom: 32px;
}

.btn-quem-somos {
  display: inline-block;
  background-color: #d47618;
  color: #fff;
  padding: 10px 25px 5px;
  border-radius: 999px;
  font-family: "Karma", serif;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 118, 24, 0.3);
}

.btn-quem-somos:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.quem-somos-image {
  text-align: center;
  height: 100%;
}

.quem-somos-image img {
  display: block;
  width: 100%;
  max-width: clamp(220px, 34vw, 800px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* --- SEÇÃO SOBRE NÓS  --- */
.sobre-nos {
  background: #fffaf6;
  color: #2f3559;
  padding: 80px 0;
  overflow: hidden;
}

.sobre-nos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Símbolos/Logos no topo */
.sobre-nos-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.sobre-nos-symbol img#dossie {
  height: 100px;
  width: auto;
}
.sobre-nos-symbol img {
  height: 80px;
  width: auto;
}

.sobre-nos-title {
  font-family: "Katibeh", serif;
  text-transform: uppercase;
  color: #2f3559;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
  margin: 0 auto 20px auto;
  padding-bottom: 12px;
  position: relative;
}

.sobre-nos-title::after {
  content: "";
  display: block;
  width: 30rem;
  height: 6px;
  background: #2f3559;
  border-radius: 2px;
}

/* Legenda/Citação (Pai Pango) */
.sobre-nos-legend {
  font-style: italic;
  font-size: clamp(1.4rem, 4vw, 20px);
  margin-bottom: 30px;
  font-family: "Karma", serif;
  font-weight: 600;
  text-align: justify;
  margin: 0 auto 20px auto;
  color: #9a9a9a;
  padding: 0 20px;
}

/* Subtítulos (Quem faz parte...) */
.sobre-nos-subtitle {
  font-family: "Katibeh", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #f64007;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

/* Citação abaixo do subtítulo */
.sobre-nos-subtitle-quote {
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 16px);
  color: #9a9a9a;
  margin-bottom: 30px;
  font-family: "Karma", serif;
  font-weight: 600;
  max-width: 950px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

/* Bloco de texto principal */
.sobre-nos-text {
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.8;
  text-align: justify;
  max-width: 950px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
}

.sobre-nos-text p {
  margin-bottom: 20px;
  font-family: "Karma", serif !important;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  text-align: justify;
}

.sobre-nos-text p:last-child {
  margin-bottom: 0;
}

/* Lista numerada */
.sobre-nos-text ol {
  padding-left: clamp(20px, 5vw, 40px);
  list-style-position: outside;
  list-style-type: decimal;
  margin: 20px auto;
  max-width: 950px;
}

.sobre-nos-text ol li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-family: "Karma", serif !important;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
}

/* Caixa "Dossiê Kilombo" */
.dossie-box {
  background: #fffaf6;
  border-radius: 10px;
  padding: 25px;
  max-width: 950px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.dossie-box img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.dossie-text h4 {
  font-family: "Inter", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2.2rem;
  color: #2f3559;
  margin-bottom: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.dossie-text p {
  font-family: "Karma", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #2f3559;
  line-height: 1.7;
  text-align: left;
  text-align: justify;
}

/*---ABRIGOS---*/
#abrigos {
  width: 100%;
  background-color: #fff3ed;
  /* padding: 80px 0 0; */
  overflow: hidden;
}

.abrigos-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 0 18%;
}

.abrigos-text h2 {
  font-family: "Katibeh", serif;
  text-transform: uppercase;
  color: #d47618;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
}

.abrigos-text p {
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0%;
  text-align: justify;
  color: #2f3559;
  margin-bottom: 20px;
}

.abrigos-text p:last-of-type {
  margin-bottom: 32px;
}

.btn-abrigos {
  display: inline-block;
  background-color: #d47618;
  color: #fff;
  padding: 10px 25px 5px;
  border-radius: 999px;
  font-family: "Karma", serif;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 118, 24, 0.3);
}

.btn-abrigos:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.abrigos-image {
  text-align: center;
  height: 100%;
}

.abrigos-image img {
  display: block;
  width: 100%;
  max-width: clamp(220px, 34vw, 800px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* --- SEÇÃO PARCEIROS  --- */
.parceiros {
  background: #fffaf6;
  color: #2f3559;
  padding: 80px 0;
  overflow: hidden;
}

.parceiros-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.parceiros-symbol {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.parceiros-symbol img {
  height: auto;
  width: auto;
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* title and underline */
.parceiros-title {
  font-family: "Katibeh", serif;
  text-transform: uppercase;
  color: #2f3559;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
  margin: 0 auto 20px auto;
  padding-bottom: 12px;
  position: relative;
}

.parceiros-title::after {
  content: "";
  display: block;
  width: 30rem;
  height: 6px;
  background: #2f3559;
  border-radius: 2px;
}

.parceiros-text {
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.8;
  text-align: justify;
  max-width: 950px;
  margin: 0 auto 20px auto;
}

.parceiros-symbol.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px 24px;
  align-items: center;
  justify-items: left;
}

/* --- PÁGINA ABRIGOS  --- */
.abrigos-pag {
  background: #fffaf6;
  color: #2f3559;
  padding: 80px 0;
  overflow: hidden;
}

.abrigos-pag-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.abrigos-pag-title {
  font-family: "Katibeh", serif;
  text-transform: uppercase;
  color: #2f3559;
  font-size: 64px;
  font-weight: 400;
  align-items: center;
  margin-bottom: 24px;
  line-height: 1.2;
  margin: auto;
  padding-bottom: 12px;
  position: relative;
}

.abrigos-pag-title::after {
  content: "";
  display: block;
  width: 65rem;
  height: 6px;
  background: #2f3559;
  border-radius: 2px;
  margin: auto;
}
.abrigos-pag-text {
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  text-align: justify;
  max-width: 950px;
  margin: 0 auto 20px auto;
  align-items: center;
  display: flex;
}
.abrigos-pag-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.abrigos-pag-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  background: #fffaf6;
  border: 1.5px solid #cfcbd4;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.card-content {
  flex: 1;
  min-width: 250px;
  font-family: "Karma", serif;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card-content-text {
  text-align: justify;
  width: 80%;
  font-size: 1.5rem;
  margin: 0 0 0 25%;
}

.card-content h2 {
  font-family: "Inter", serif;
  font-size: 3rem;
  color: #2f3559;
  margin-bottom: 10px;
  font-style: italic;
  text-align: center;
  display: flex;
}

.card-content .oferecido-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 2rem;
}

.card-content ul {
  list-style-position: inside;
  padding-left: 0;
  margin-bottom: 24px;
  display: inline-block;
  text-align: left;
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: 1.7rem;
}

.card-content li {
  margin-bottom: 6px;
  font-family: "Karma", serif;
  font-weight: 600;
  font-size: 1.7rem;
}
.btn-saiba-mais {
  display: inline-block;
  background-color: #2f3559;
  color: #fff;
  padding: 10px 25px 5px;
  border-radius: 999px;
  font-family: "Karma", serif;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 33, 78, 0.678);
}

.btn-saiba-mais:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}

.image-slider-container {
  flex: 1;
  min-width: 250px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.abrigos-pag-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.abrigos-pag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  color: #2f3559;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a1e36;
}

.slider-arrow.left-arrow {
  left: 10px;
}

.slider-arrow.right-arrow {
  right: 10px;
}

.arrow-icon {
  display: block;
}
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #2f3559;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* --- Responsividade Parceiros --- */
@media (max-width: 1100px) {
  .parceiros-container {
    padding: 0 12%;
  }
  .parceiros-symbol img {
    max-height: 72px;
    max-width: 140px;
  }
}

@media (max-width: 900px) {
  .parceiros-container {
    padding: 0 8%;
  }
  .parceiros-title {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    padding-bottom: 12px;
    position: relative;
  }
  .parceiros-title::after {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    line-height: 1.2;
    width: 45%;
    margin: auto;
    height: 3px;
  }
  .parceiros-symbol,
  .parceiros-symbol.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
  }
  .parceiros-symbol img {
    max-height: 64px;
    max-width: 120px;
  }
  .parceiros-text {
    font-size: clamp(1.2rem, 3.6vw, 1.8rem);
    text-align: center;
  }
}

@media (max-width: 640px) {
  .parceiros-container {
    padding: 0 6%;
  }
  .parceiros-title {
    font-size: clamp(2.2rem, 7vw, 3.6rem);
  }
  .parceiros-symbol,
  .parceiros-symbol.grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .parceiros-symbol img {
    max-height: 56px;
    max-width: 100px;
  }
  .parceiros-text {
    font-size: clamp(1rem, 3.6vw, 1.6rem);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .parceiros-container {
    padding: 0 4%;
  }
  .parceiros-symbol,
  .parceiros-symbol.grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .parceiros-symbol img {
    max-height: 48px;
    max-width: 84px;
  }
  .parceiros-title {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    padding-bottom: 12px;
    position: relative;
  }
  .parceiros-title::after {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    line-height: 1.2;
    width: 45%;
    margin: auto;
  }
  .parceiros-text {
    font-size: 1.2rem;
  }
}

/* Responsividade para Seção Abrigos  */
@media (max-width: 1100px) {
  .abrigos-container {
    padding: 0 0 0 12%;
  }
}
@media (max-width: 900px) {
  .abrigos-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 12%;
  }

  .abrigos-image {
    order: -1;
    margin-bottom: 32px;
  }

  .abrigos-image img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .abrigos-text h2 {
    font-size: 3.6rem;
  }
}

@media (max-width: 640px) {
  #abrigos {
    padding: 80px 0;
  }

  .abrigos-container {
    padding: 0 8%;
  }

  .abrigos-image img {
    max-width: 75%;
  }

  .abrigos-text p {
    font-size: 1.8rem;
    text-align: justify;
  }
}

/* --- Responsividade para Seção Sobre Nós --- */
@media (max-width: 768px) {
  .sobre-nos-section {
    padding: 60px 8%;
  }

  .sobre-nos-container {
    padding: 0;
  }

  .sobre-nos-subtitle {
    font-size: 2.8rem;
  }
  .dossie-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .sobre-nos-symbol img {
    height: 80px;
  }

  .sobre-nos-symbol img#dossie {
    height: 100px;
    width: auto;
  }

  .sobre-nos-title {
    font-size: 3.6rem;
  }

  .sobre-nos-text {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .sobre-nos-title {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    padding-bottom: 12px;
    position: relative;
  }
  .sobre-nos-title::after {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    line-height: 1.2;
    width: 45%;
    margin: auto;
    height: 3px;
  }
  .sobre-nos-text {
    text-align: left;
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .sobre-nos-title::after {
    text-align: center;
    font-size: 3.6rem;
    font-family: "Katibeh", serif;
    text-transform: uppercase;
    color: #2f3559;
    font-weight: 400;
    line-height: 1.2;
    width: 45%;
    margin: auto;
  }

  .sobre-nos-text ol {
    padding-left: 20px;
    margin: 15px auto;
  }

  .sobre-nos-text ol li {
    margin-bottom: 8px;
  }

  .sobre-nos-legend,
  .sobre-nos-subtitle-quote {
    text-align: left;
  }
}

/* --- Responsividade para a Seção Quem Somos --- */
@media (max-width: 1100px) {
  .quem-somos-container {
    padding: 0 0 0 12%;
  }
}
@media (max-width: 900px) {
  .quem-somos-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 12%;
  }

  .quem-somos-image {
    order: -1;
    margin-bottom: 32px;
  }

  .quem-somos-image img {
    display: none;
  }

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

@media (max-width: 640px) {
  #quem-somos {
    padding: 80px 0;
  }

  .quem-somos-container {
    padding: 0 8%;
  }

  .quem-somos-image img {
    display: none;
  }

  .quem-somos-text p {
    font-size: 1.8rem;
    text-align: justify;
  }
}
/* Responsividade footer */
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }
}
/*responsividade navbar*/
@media (max-width: 900px) {
  #menu-toggle {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background: #ffffff;
    border-left: 1px solid #e7e4ea;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }

  .navbar.open {
    display: flex;
    transform: translateX(0);
  }
  .navbar .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .navbar .nav-list > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee6dd;
  }

  .navbar .has-dropdown:hover > .dropdown {
    display: none;
  }

  .navbar .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: #0f1a3a;
    border-radius: 6px;
    margin-top: 8px;
    display: none;
  }

  .navbar .has-dropdown.open > .dropdown {
    display: block;
  }

  .navbar .dropdown-toggle .arrow {
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.2s ease;
    cursor: pointer;
  }
  .navbar .has-dropdown.open > a .arrow {
    transform: rotate(180deg);
  }
}
#menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: #2f3559;
  cursor: pointer;
  line-height: 1;
}
/* Esconde o X no desktop */
@media (min-width: 901px) {
  #menu-close {
    display: none;
  }
}
/* Evita que menus diferentes fiquem laranja ao mesmo tempo */
.navbar .has-dropdown.encruzilhadas > a.active {
  color: #2f3559 !important;
}

/* Responsividade do footer  */
@media (max-width: 900px) {
  .footer-top {
    padding: 48px 8%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-info h2 {
    font-size: 2.6rem;
    text-align: center;
  }

  .footer-info p,
  .footer-info a {
    font-size: 1.5rem;
    text-align: center;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.4rem;
    padding: 10px 12px;
  }

  .btn-submit {
    padding: 12px;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .footer-top {
    padding: 36px 6%;
  }

  .footer-info h2 {
    font-size: 2.2rem;
  }

  .footer-info p,
  .footer-info a {
    font-size: 1.4rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.3rem;
    padding: 10px;
  }

  .footer-bottom {
    padding: 16px 10px;
    font-size: 1.2rem;
  }

  .footer-bar {
    height: 6px;
  }
}

@media (max-width: 420px) {
  .footer-top {
    padding: 28px 5%;
  }

  .footer-info h2 {
    font-size: 3.6rem;
  }

  .footer-info p,
  .footer-info a {
    font-size: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1.2rem;
    padding: 8px 10px;
  }

  .form-row {
    margin-bottom: 10px;
  }

  .btn-submit {
    padding: 10px;
    font-size: 1.3rem;
  }
}
