* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.organize-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

p {
  text-align: justify !important;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: #f5f4ef;
  color: #3c3c3c;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.light {
  font-weight: 400;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  color: #014b92;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

ul li {
  font-size: 20px;
  margin-bottom: 8px;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero .hero-bg {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: brightness(0.65);
          filter: brightness(0.65);
}

.hero .hero-overlay {
  position: absolute;
  inset: 0;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 18px;
  padding: 24px;
}

.hero .hero-overlay h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  max-width: 900px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.hero .hero-overlay p {
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.galeria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 56px 0;
}

.galeria .galeria-carousel {
  position: relative;
  width: 60vw;
  height: 800px;
  overflow: hidden;
  border-radius: 18px;
}

.galeria .galeria-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

.galeria .galeria-slide {
  min-width: 100%;
  height: 100%;
}

.galeria .galeria-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.galeria .carousel-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.galeria .carousel-btn:hover {
  background: rgba(0, 0, 0, 0.45);
}

.galeria .carousel-btn.prev {
  left: 16px;
}

.galeria .carousel-btn.next {
  right: 16px;
}

.galeria .carousel-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  z-index: 2;
}

.galeria .carousel-dots .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}

.galeria .carousel-dots .dot.is-active {
  background: #fff;
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.section-guia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sobre,
.empresas {
  padding: 72px 0;
}

.sobre .container {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 18px;
  padding: 38px 30px;
}

.sobre h2,
.sobre p {
  outline: none;
}

.sobre .sobre-titulo {
  min-height: 48px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sobre .sobre-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}

.sobre .sobre-destaque {
  background: #f5f4ef;
  border: 1px solid #d3d3d3;
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.sobre .sobre-conteudo.is-collapsed > * {
  display: none;
}

.sobre p {
  font-size: 1.0rem;
}

.sobre [contenteditable="true"]:empty::before {
  content: attr(data-placeholder);
}

.empresas h2 {
  margin-bottom: 40px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.empresas .regiao {
  margin-bottom: 64px;
}

.empresas .regiao-titulo {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 3px solid #014b92;
  margin-bottom: 32px;
  margin-top: 0;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.empresas .categoria-grupo {
  margin-bottom: 40px;
}

.empresas .categoria-titulo {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3c3c3c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid #014b92;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.empresas .toggle-btn {
  background: none;
  border: 2px solid rgba(1, 75, 146, 0.2);
  cursor: pointer;
  padding: 10px 16px;
  font-size: 1.4rem;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
  -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  color: #014b92;
  -webkit-animation: toggle-pulse 2s ease-in-out infinite;
          animation: toggle-pulse 2s ease-in-out infinite;
}

.empresas .toggle-btn:hover {
  -webkit-box-shadow: 0 4px 14px rgba(1, 75, 146, 0.3);
          box-shadow: 0 4px 14px rgba(1, 75, 146, 0.3);
  border-color: #014b92;
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes toggle-pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 75, 146, 0);
            box-shadow: 0 0 0 0 rgba(1, 75, 146, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 0 6px rgba(1, 75, 146, 0.18);
            box-shadow: 0 0 0 6px rgba(1, 75, 146, 0.18);
  }
}

@keyframes toggle-pulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 75, 146, 0);
            box-shadow: 0 0 0 0 rgba(1, 75, 146, 0);
  }
  50% {
    -webkit-box-shadow: 0 0 0 6px rgba(1, 75, 146, 0.18);
            box-shadow: 0 0 0 6px rgba(1, 75, 146, 0.18);
  }
}

.empresas .regiao.is-collapsed > *:not(.regiao-titulo) {
  display: none;
}

.empresas .categoria-grupo.is-collapsed > *:not(.categoria-titulo) {
  display: none;
}

.empresas .cards-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.empresas .card-empresa {
  background: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
  transition: -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transition: transform 0.28s ease, box-shadow 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
}

.empresas .card-empresa:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.empresas .card-empresa img {
  width: 100%;
  height: 210px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  border-bottom: 1px solid #d3d3d3;
}

.empresas .card-empresa .card-body {
  padding: 18px;
  display: -ms-grid;
  display: grid;
  gap: 12px;
}

.empresas .card-empresa .categoria {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: .8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #014b92;
  border: 1px solid rgba(1, 75, 146, 0.25);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(1, 75, 146, 0.05);
}

.empresas .card-empresa h3 {
  font-size: 1.24rem;
  font-weight: 700;
}

.empresas .card-empresa .social-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.empresas .card-empresa .btn-whatsapp,
.empresas .card-empresa .btn-instagram {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  padding: 12px 14px;
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}

.empresas .card-empresa .btn-whatsapp {
  background: #15bc54;
  border: 1px solid #139e48;
}

.empresas .card-empresa .btn-instagram {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(45deg, #6228d7, #ee2a7b 55%, #f9ce34 100%);
}

.empresas .card-empresa .btn-whatsapp:hover,
.empresas .card-empresa .btn-instagram:hover {
  -webkit-filter: brightness(0.92);
          filter: brightness(0.92);
}

.cta-anuncie {
  background: #e4e4e4;
  padding: 72px 0;
  text-align: center;
}

.cta-anuncie .logo-cta {
  width: 120px;
  margin-bottom: 24px;
}

.cta-anuncie h2 {
  color: #3c3c3c;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 16px;
}

.cta-anuncie p {
  color: #3c3c3c;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-anuncie .btn-whatsapp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: #25d366;
  border-radius: 10px;
  padding: 16px 32px;
  border: 1px solid #1fb659;
  -webkit-transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease;
  transition: filter 0.2s ease, transform 0.2s ease, -webkit-filter 0.2s ease, -webkit-transform 0.2s ease;
}

.cta-anuncie .btn-whatsapp:hover {
  -webkit-filter: brightness(0.92);
          filter: brightness(0.92);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.rodape {
  border-top: 1px solid #d3d3d3;
  padding: 22px 0;
  background: #f5f4ef;
}

.rodape p {
  text-align: center;
  font-size: 0.95rem;
}

.mouratech {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #232d28;
}

.mouratech h5 {
  font-weight: 700;
  font-size: 12px;
  color: white;
  margin: 0;
}

.mouratech a {
  margin-top: 10px !important;
  display: block !important;
  color: #03e4be !important;
  font-weight: 700;
}

@media (max-width: 960px) {
  .empresas .cards-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero .hero-bg {
    width: 100%;
    height: 100svh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card-empresa img {
    height: 180px !important;
  }
  .galeria {
    padding: 32px 0;
  }
  .galeria .galeria-carousel {
    width: 85vw;
    height: 700px;
  }
  .sobre,
  .empresas {
    padding: 54px 0;
  }
  .sobre .container {
    padding: 28px 20px;
  }
  .empresas .cards-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    justify-items: center;
  }
  .empresas .regiao-titulo {
    font-size: 1.4rem !important;
  }
  .categoria-titulo {
    margin-top: 20px !important;
    font-size: 1rem !important;
  }
  .empresas .card-empresa {
    width: 85%;
  }
  .empresas .card-empresa h3 {
    font-size: 1.04rem;
  }
  .empresas .card-empresa p {
    font-size: 0.87rem;
  }
  .empresas .card-empresa .categoria {
    font-size: 0.6rem;
  }
  .empresas .card-empresa .btn-whatsapp,
  .empresas .card-empresa .btn-instagram {
    font-size: 0.85rem;
  }
}
/*# sourceMappingURL=styles.css.map */