/* font family Raleway */
@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* font family Barlow */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --verde-claro: #3f736c;
  --verde-escuro: #285565;
  --azul-escuro: #04085d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

button:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

select::-ms-expand {
  display: none;
}

label {
  font-weight: normal;
}

iframe {
  width: 100%;
}

/* ===== 02. Global Style =====*/
body {
  overflow-x: hidden;
  font-family: "Raleway", sans-serif;
}

h1 {
  font-size: 75px;
  font-weight: 800;
  line-height: 85px;
  font-family: "Raleway", sans-serif;
}

h2 {
  font-size: 45px;
  font-weight: 800;
  line-height: 51px;
  font-family: "Raleway", sans-serif;
}

h3 {
  font-size: 25px;
  font-weight: 800;
  line-height: 31px;
  font-family: "Raleway", sans-serif;
}

h4 {
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  font-family: "Raleway", sans-serif;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  font-family: "Raleway", sans-serif;
}

h6 {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Raleway", sans-serif;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  font-family: "Raleway", sans-serif;
}

button {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding: 16px 38px;
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}

a {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #c9c3c3;
}

/* Botão flutuante */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366 !important;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  animation: pulseWhatsapp 2s infinite alternate;
  z-index: 9999;
}

.whatsapp-btn:hover {
  transition: all 0.3s ease-in-out;
  background-color: #1ebe57 !important;
  transform: scale(1.) !important;
  animation: shake .2s ease-in-out;
}

.fa-whatsapp {
  font-size: 35px;
}

.show {
  height: 50px !important;
  transition: height 0.34s ease;
}

/* Header */
.header-index {
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  background-position: center center;
  background-size: cover;
}

header {
  padding: 20px 0;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 15px;
  color: #dedede;
}

.container {
  display: flex;
  justify-content: space-around;
}

.nav-right {
  gap: 45px;
}

.nav-right p {
  gap: 45px;
}

.nav-right .fa-phone:active {
  transform: scale(0.9);
}

.nav-right span {
  color: var(--azul-escuro);
  font-weight: 500;
}

.navbar-logo {
  margin-right: 25px;
  width: 120px;
  filter: contrast(1.5) saturate(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)); 
}

.navbar-logo:hover {
  filter: contrast(1.3) saturate(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); 
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);

}

.container-nav {
  gap: 70px;
}

.navbar-toggler {
  border: 1px solid #00000001;
  background: linear-gradient(
    42deg,
    var(--azul-escuro) 0.01%,
    var(--azul-escuro) 100%
  );
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease-in-out;
}

.navbar-toggler:hover {
  background: #3f86a7;
}

.navbar-toggler span {
  color: #fff;
  font-size: 22px;
}

.navbar-nav {
  gap: 50px;
}

.nav-link {
  font-weight: 500;
  color: #dedede;
  display: inline-block; /* Necessário para o efeito de transformação funcionar */
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Efeito de flutuação nos links da navbar */
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--azul-escuro) !important;
  transform: translateY(-5px); /* Faz o link "subir" suavemente */
}

/* Para o link ativo */
li a.active {
  color: var(--azul-escuro) !important;
}

.nav-right .fa-phone {
  font-size: 22px;
  background-color: var(--verde-claro);
  padding: 7px 8px;
  border-radius: 40%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

/* Efeito de "telefone tocando" ao passar o mouse */
.nav-right .fa-phone:hover {
  animation: shake 0.5s ease-in-out;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "+";
  vertical-align: center;
  margin-left: 5px;
}

.dropdown-menu {
  position: absolute;
  padding: 30px;
  z-index: 9;
  display: none;
}

.dropdown-toggle:hover .dropdown-menu {
  display: block;
  width: 220px;
  padding: 15px 0 15px 0;
  border-radius: 10px;
  background-color: var(--verde-escuro);
}

.dropdown-menu li {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: var(--verde-escuro);
  z-index: -1;
  top: 0;
  left: 0;
}

.dropdown-item:hover::before {
  width: 100%;
  background-color: var(--azul-escuro);
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: inherit;
}

.dropdown-item {
  display: block;
  width: 100%;
}

/* Sidebar */
.sidepanel {
  background: linear-gradient(272deg, #04085df1 0.01%, #3f86a7 100%);
  z-index: 10;
  position: fixed;
  width: 320px;
  height: 100vh;
  top: 0;
  left: -400px;
  overflow-x: hidden;
  transition: 0.5s;
  padding: 40px 20px 20px 20px;
}

.sidebar {
  justify-content: space-between;
}

.sidebar img {
  width: 100px;
}

.sidebar button {
  width: 44px;
  height: 44px;
  background: linear-gradient(
    42deg,
    var(--azul-escuro) 0.01%,
    var(--azul-escuro) 100%
  );
  padding: 10px 12px 10px 12px;
  margin-bottom: -15px;
  border-radius: 0.25rem;
  border: 1.5px solid #285565;
  color: #fff;
  cursor: pointer;
}

.sidebar button:hover {
  background: #3f86a7;
}

.sidebar a {
  padding: 10px 0;
}

aside ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}

aside ul li {
  margin: 15px 0;
}

aside ul a {
  transition: 500ms;
  padding: 10px 0;
}

aside ul li a.active {
  color: var(--azul-escuro);
}

aside ul li a.hover {
  color: var(--azul-escuro);
  transition: 500ms;
}

aside .pages {
  font-weight: 500;
  margin: 11px 0 7px 0;
}

.collapse-btn {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.collapse-btn i {
  border: 1px solid #d3c9c1;
  padding: 7px 8px;
  border-radius: 40px;
}

.collapse-btn i:hover {
  border: 1px solid var(--azul-escuro);
}

.plus_collapse {
  margin: -52px 0 0 0;
  height: 45px;
}

#pages {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.show {
  height: 50px !important;
  transition: height 0.34s ease;
}
/* <!-- Fim Seção Header --> */

/* <!-- 1.2 Seção Hero --> */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 5% 0;
}

.hero .container {
  position: relative;
  margin-top: 2%;
}

.hero h1 {
  color: #fff;
  letter-spacing: 3.75px;
  text-transform: uppercase;
  margin: 0;
}

.hero-social-icon {
  position: absolute;
  left: 0;
  top: 0;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.hero-social-icon a {
  padding: 16px 38px 16px 38px !important;
}

.hero-social-icon a i {
  font-size: 26px;
  background: linear-gradient(
    42deg,
    var(--azul-escuro) 0.01%,
    var(--azul-escuro) 100%
  );

  /* Compatibilidade com diferentes navegadores */
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;
}

.hero-social-icon a i:hover {
  background: linear-gradient(
    42deg,
    var(--verde-claro) 0.01%,
    var(--verde-claro) 100%
  );

  /* Compatibilidade com diferentes navegadores */
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -ms-background-clip: text;
  -o-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -ms-text-fill-color: transparent;
  -o-text-fill-color: transparent;

  transition: all 0.3s ease-in-out;
  transform: scale(1.5);
}

.hero-social-icon hr {
  display: block;
  margin-top: 68px;
  opacity: 1;
  color: #fff;
  width: 110px;
  rotate: 90deg;
}

.center-data h3 {
  color: #fff;
  text-transform: uppercase;
}

/* Efeitos Botões */
/* Botão 1 - Verde */
.btn_hover1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1.5px solid var(--verde-claro);
  z-index: 1;
  letter-spacing: 0.8px;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(
    42deg,
    var(--verde-claro) 0.01%,
    var(--verde-claro) 100%
  );
  padding: 12px 30px;
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

/* Efeito de fundo no hover */
.btn_hover1::before {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  top: 0;
  left: 0;
}

.btn_hover1:hover {
  transform: translateY(-10px);
}

/* Botão 2 - Azul */
.btn_hover2 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 1.5px solid var(--azul-escuro);
  z-index: 1;
  letter-spacing: 0.8px;
  color: #fff;
  padding: 12px 30px;
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

/* Efeito de fundo no hover */
.btn_hover2::before {
  content: "";
  border-radius: 50px;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    12deg,
    var(--azul-escuro) 0.01%,
    var(--azul-escuro) 100%
  );
  z-index: -1;
  top: 0;
  left: 0;
}

.btn_hover2:hover {
  transform: translateY(-10px);
}

.center-btn a {
  padding: 16px 38px 16px 38px;
}

/* <!-- Fim Seção Hero -->

<!-- 1.2 Seção Feature --> */
.feature .flex {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.feature .container {
  margin-top: 5% !important;
}

.header-card {
  display: flex;
  flex: 0 0 auto;
  width: 25%;
  /* height: 175%; */
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.header-card div {
  border-radius: 20px;
  background: linear-gradient(235deg, #878790 0.01%, #6e6e6e 100%);
  color: #fff;
  padding: 20px; /* estava 30px 30px; quando tinha texto*/
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px; /* Garante altura mínima igual para todos */
  height: 100%; /* Mantém o tamanho uniforme */
}

.header-card:hover {
  transition: all 0.4s ease;
  box-shadow: 0 0 45px rgba(63, 115, 108, 1); /* Aumenta o brilho no hover */
  border-radius: 80px;
}
.header-card div:hover {
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.header-card img {
  width: 60px;
}

.header-card h4 {
  letter-spacing: 1.1px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
}
/* <!-- 1.3 Fim Seção Feature -->

<!-- 1.4 Seção Clientes --> */
.logoipsum {
  /* background: linear-gradient(312deg, #3f86a7 0.01%, #04085df1 100%); */
  background: linear-gradient(200deg, #04085df1 0.01%, #3f86a7 100%);
  padding: 150px 0;
  margin-top: -1px;
}

.logoipsum-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
}

.logoipsum h3 {
  letter-spacing: 1.25px;
  color: #fff;
  text-transform: uppercase;
}

/* Remove margens padrão do Slick */
.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.logoipsum-slider img {
  max-width: 150px; /* Ajuste o tamanho conforme necessário */
  height: auto;
  margin: 0 15px;
  display: block;
  animation: pulseInfinite 2.5s infinite ease-in-out;
}

.logoipsum .hr1 {
  opacity: 1;
  height: 2px;
  width: 60px;
  rotate: 90deg;
  margin: 0 auto 50px auto;
  background: rgba(255, 255, 255, 0.75);
}

.logoipsum .hr2 {
  opacity: 1;
  height: 2px;
  width: 60px;
  rotate: 90deg;
  margin: 70px auto 0 auto;
  background: rgba(255, 255, 255, 0.75);
}

/* Garante que os logos fiquem centralizados */
.logoipsum-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
/* <!-- 1.4 Fim Seção Clientes -->

<!-- 1.5 Seção Sobre --> */
.about {
  position: relative; /* Permite que o ::before seja posicionado corretamente */
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden; /* Evita que o blur vaze para fora */
}

.about::before {
  content: "";
  position: absolute;
  top: -10px; /* Ajuste para cobrir completamente */
  left: -10px;
  width: calc(100% + 20px); /* Garante que cobre toda a área */
  height: calc(100% + 20px);
  background-image: url("https://unorte.edu.br/admin/upload/2022_10_03_10_50_31_000000_153-Engenharia-Civil--1920x1080.jpg");
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px); /* Aplica o blur apenas no fundo */
  filter: brightness(-100px); /* Aplica o blur apenas no fundo */
  z-index: 0; /* Mantém o fundo atrás do conteúdo */
}

.about .container {
  position: relative;
  z-index: 1; /* Mantém o conteúdo acima do fundo */
}

.about-data {
  display: flex;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-1 * var(--bs-gutter-x));
  margin-left: calc(-1 * var(--bs-gutter-x));
  width: 65%;
}

.about hr {
  opacity: 1.25;
  height: 1px;
  color: #3f736c;
  width: 60px;
  border: 1px solid;
}

.about a {
  box-shadow: 0 0 25px rgba(63, 115, 108, 0.1);
  transition: all 0.8s ease;
}

.about a:hover {
  box-shadow: 0 0 25px #0810b286;
}
.about a:nth-child(1):hover {
  box-shadow: 0 0 25px rgba(63, 115, 108, 0.9);
}

.about-data h2 {
  margin: 20px 0;
  color: #fff;
}

.about-title h5 {
  color: #fff;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
}

.about p {
  color: #fff;
}

.about h5 {
  color: #fff;
}

.about i {
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(312deg, #2a35fff1 0.01%, #3f86a7 100%);
}

.about-data a {
  padding: 16px 38px 16px 38px !important;
}

.about-imgs {
  position: relative;
  /* background-image: url('https://t3.ftcdn.net/jpg/03/16/55/26/360_F_316552667_qw2le2qIyhgzPnqpLkkK6YfkYFQsEKeu.jpg'); */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 20px;
}

.about-imgs figure {
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  width: fit-content;
  clip-path: circle(45% at 50% 50%);
  transition: all 0.8s ease;
}

.about-imgs figure:hover {
  transform: scale(1.05);
  transition: all 0.8s ease;
}

.about-imgs img {
  width: 85%;
  display: block;
  margin: auto;
  clip-path: circle(48% at 50% 50%);
}

.ab-count {
  flex-direction: column;
  text-align: center;
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  color: #fff;
  position: absolute;
  bottom: 110px;
  left: 130px;
  border-radius: 50%;
  width: 175px;
  height: 175px;
}

.ab-count h2 {
  margin: 0;
}

.about-hr {
  color: #fff;
  position: absolute;
  right: -140px;
  bottom: 43px;
  rotate: -90deg;
}

.about-hr hr {
  opacity: 1.25;
  height: 1px;
  border: 1px solid #2b5a55;
  width: 60px;
}

.ab-count p {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-hr h6 {
  letter-spacing: 13.72px;
  text-transform: uppercase;
}

.about-geral ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.about-geral ul li:nth-child(1) {
  margin-top: 10px;
}
/* <!-- 1.5 Fim Seção Sobre -->

<!-- 1.6 Seção Serviços --> */
.service-1 {
  background-color: #3f736c;
  padding: 90px 0;
  display: flex;
  justify-content: center !important;
}

.service-data {
  display: flex;
  flex-wrap: wrap;
}

.service-1 h5 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-1 h2 {
  color: #fff;
}

.service-1 p {
  color: #fff;
  position: relative;
  margin-bottom: 25px;
}

.service-1 .service_hr1 {
  opacity: 1.25;
  height: 1px;
  color: #04085d;
  width: 60px;
  border: 1px solid;
}

.service-1 hr {
  opacity: 1.25;
  height: 1px;
  color: #04085d;
  width: 60px;
  border: 1px solid;
}

.service-1 .btn_hover2 {
  padding: 15px 30px;
  border: 1px solid #04085d;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.service-card {
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  padding: 30px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.21s ease-in !important;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-card figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}


.service-card img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 1px 0px rgba(0, 0, 64, 1);
}

.service-card h3 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.service-card p {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-card a {
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

.service-card a:hover {
  color: #fff;
  font-weight: bold;
}

.cards-1,
.cards-2 {
  display: flex;
}

.s-card {
  flex-direction: column;
  margin-top: 10px;
}

/* Modal */
/* Fundo escuro ao abrir o modal */
body.modal-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

/* Modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Mostrar modal */
.modal.show {
  display: flex;
  opacity: 1;
}

/* Conteúdo do Modal */
.modal-content {
  background: white;
  padding: 0;
  border-radius: 8px;
  width: 400px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-content h2 {
  font-size: 30px;
}

.modal-header {
color: #0056b3;
}

.modal-body a {
  color: #007bff;
  margin-top: 20px;
  text-transform: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

/* Expande o modal ao abrir */
.modal.show .modal-content {
  transform: scale(1);
}

/* Cabeçalho do Modal */
.modal-header {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background: #f1f1f1;
  border-bottom: 1px solid #ddd;
}

/* Estilização do botão de fechar */
.close {
  font-size: 24px;
  cursor: pointer;
  color: #555;
  padding: 5px;
  transition: color 0.3s;
}

.close:hover {
  color: black;
}

/* Corpo do Modal */
.modal-body {
  padding: 20px;
  font-size: 16px;
}

/* Rodapé do Modal */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px;
  background: #f1f1f1;
  border-top: 1px solid #ddd;
}

/* Botão no rodapé */
.modal-footer button {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-footer button:hover {
  background: #0056b3;
}

/* <!-- 1.6 Fim Seção Serviços --> */

/* <!-- 1.7 Seção Contato --> */
.contact-1 {
  position: relative; /* Permite que o ::before seja posicionado corretamente */
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  overflow: hidden; /* Evita que o blur vaze para fora */
}

.contact-1::before {
  content: "";
  position: absolute;
  top: -10px; /* Ajuste para cobrir completamente */
  left: -10px;
  width: calc(100% + 20px); /* Garante que cobre toda a área */
  height: calc(100% + 20px);
  background-image: url("https://img.freepik.com/fotos-premium/futuro-projeto-de-engenharia-de-construcao-civil_31965-6718.jpg");
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(4px); /* Aplica o blur apenas no fundo */
  filter: brightness(-100px); /* Aplica o blur apenas no fundo */
  z-index: -1; /* Mantém o fundo atrás do conteúdo */
}

.contact-data {
  display: flex;
  flex-wrap: wrap;
}

.contact-1 h5 {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-1 h2 {
  color: #fff;
}

.contact-1 p {
  color: #fff;
  position: relative;
  margin-bottom: 25px;
}

.contact-1 .contact_hr1 {
  opacity: 1.25;
  height: 1px;
  color: #04085d;
  width: 60px;
  border: 1px solid;
}

.contact-1 hr {
  opacity: 1.25;
  height: 1px;
  color: #3f736c;
  width: 60px;
  border: 1px solid;
}

.contact-1 .btn_hover2 {
  padding: 15px 30px;
  border: 1px solid #04085d;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.contact-card {
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  padding: 30px;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-card figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-card img {
  width: 60px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 1px 0px rgba(0, 0, 64, 1);
  -moz-box-shadow: 5px 5px 1px 0px rgba(0, 0, 64, 1);
  box-shadow: 5px 5px 1px 0px rgba(0, 0, 64, 1);
}

.contact-card h3 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.contact-card p {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-card a {
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: #fff;
  font-weight: bold;
}

.cards-1,
.cards-2 {
  display: flex;
}

.s-card {
  flex-direction: column;
}

/* Estilização do formulário */
.contact-form {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 20px auto;
  text-align: left;
}

/* Grupo de inputs */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #f0f0f0;
  font-weight: bold;
}

/* Inputs, select e textarea */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  outline: none;
  font-size: 14px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Select específico */
.form-group select {
  background-color: rgba(255, 255, 255, 0.2);
  appearance: none; /* Remove o estilo padrão do select */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group select option {
  color: white;
  background-color: #04085d;
}

/* Botão */
.btn {
  position: relative;
  background: var(--azul-escuro);
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #a043d3, #d40b7d);
  transition: width 0.5s ease-in-out;
  z-index: 0;
}

.btn:hover::before {
  width: 100%;
}

.btn span {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background: linear-gradient(312deg, #04085df1 0.01%, #3f86a7 100%);
  color: #fff;
  padding: 40px 0 20px 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* Logo e Redes Sociais */
.footer-logo {
  max-width: 300px;
}

.footer-logo h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--azul-claro);
}

.footer-logo p {
  font-size: 14px;
  color: #ddd;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icons i {
  font-size: 20px;
  color: var(--azul-escuro);
  transition: transform 0.3s, color 0.3s;
}

.social-icons i:hover {
  color: var(--azul-escuro);
  transform: scale(1.25);
}

/* Links */
.footer-links {
  min-width: 180px;
}

.footer-links h3 {
  font-size: 18px;
  color: var(--azul-claro);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--azul-escuro);
}

.footer-logo img {
  width: 50%;
  margin-bottom: 10px;
}

/* Rodapé */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  color: #bbb;
}

/* Scroll customizado */
/* Cor da barra de rolagem */
::-webkit-scrollbar {
  width: 15px; /* Largura da barra de rolagem */
}

/* Cor do fundo da barra */
::-webkit-scrollbar-track {
  background: var(--azul-escuro); /* Cor de fundo da barra */
}

/* Cor do "thumb" (parte que se move) */
::-webkit-scrollbar-thumb {
  background: var(--verde-claro); /* Cor personalizada */
  border-radius: 5px; /* Arredondamento */
}

/* Efeito ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background: #2b5a55; /* Um tom mais escuro para destaque */
}

/* Media Queries */
@media screen and (min-height: 895px) {
  .ab-count {
    bottom: 210px !important;
  }
  .about-imgs {
    margin-left: 20px;
  }
  .about-data a {
    font-size: 0.9rem;
}
}
@media screen and (max-width: 1000px) {
  .navbar-toggler {
    display: block !important;
  }
  .navbar-nav,
  .nav-right {
    display: none !important;
  }

  .container-nav {
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1261px) {
  .about-imgs {
    width: 50% !important;
  }
}
@media screen and (max-width: 1355px) {
  .about-imgs {
    width: 60%;
  }
}
@media screen and (max-width: 1330px) {
  /* tirar redes sociais */
  .hero-social-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1205px) {
  .footer-content {
    justify-content: center !important;
  }
}
@media screen and (max-width: 1165px) {
  .about .btn_hover1 {
    white-space: nowrap;
  }
  .about-hr {
    right: -155px !important;
  }
}
@media screen and (max-width: 1140px) {
  .about-hr {
    display: none !important;
  }
}
@media screen and (max-width: 1105px) {
  .hero h1 {
    font-size: 3rem !important;
  }
  .hero {
    padding: 5px 0 30px 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .ab-count {
    width: 155px;
    height: 155px;
    bottom: 280px;
    left: 170px;
  }
  .about-data {
    width: 75% !important;
  }
  .about-imgs figure {
    margin-left: 15%;
  }
  .footer-links {
    width: 180px;
  }
  .cards-1,
  .cards-2 {
    flex-direction: column;
  }
  .service-card {
    width: 100%;
  }
  .service-card p {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 900px) {
  .ab-count {
    display: none !important;
  }
  .about-imgs img {
    width: 70%;
  }
  .about-imgs {
    animation: pulseImgAbout 2.5s infinite ease-in-out;
    width: 520px !important;
  }
}
/* Ajusta para telas menores */
@media (max-width: 768px) {
  .slick-slide {
    width: 100% !important;
  }
  .about-geral {
    margin-left: 50px !important;
  }
  .feature .flex {
    width: 90%  !important;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
  }
  .feature-hero {
    justify-content: start;
    gap: 20px;
  }
  .footer-content {
    align-items: center;
  }
  .footer-logo .social-icons,
  .footer-logo p {
    display: none;
  }
  .footer-logo img {
    width: 100%;
    margin-bottom: 0;
  }
  .footer-logo {
    width: 100px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 740px) {
  .hero h1 {
    font-size: 2.4rem !important;
    text-align: center !important;
  }
  .hero {
    padding: 140px 0 30px 0 !important;
  }
  .center-data h3 {
    font-size: 1.2rem !important;
  }
  .feature .flex {
    --bs-gutter-x: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-direction: column;
    margin: 0;
  }
  .header-card {
    width: 80%;
  }
  .feature-hero {
    justify-content: center;
    gap: 20px;
  }
  .header-card div {
    width: 100%;
  }
  .feature .container {
    margin-top: 20% !important;
  }
  .about-imgs {
    display: none !important;
  }
  .about-data {
    width: 100% !important;
    justify-content: center !important;
  }
  .about-btns {
    flex-direction: column;
  }
  .about .gap-20 {
    gap: 1rem !important;
  }
  .about .mt-3 {
    margin-top: 2rem !important;
  }
}
@media screen and (max-width: 610px) {
  .center-data h3 {
    font-size: 1rem !important;
    text-align: center;
  }
  .center-btn {
    flex-direction: column;
  }
  .hero {
    padding: 30px 0 30px 0 !important;
  }
  .about-geral {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 430px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-logo .social-icons,
  .footer-logo p {
    display: block;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 200px;
    gap: 5px;
    margin: 0;
  }
  .footer-logo img {
    width: 80%;
  }
  .social-icons {
    display: flex !important;
    margin: 5px 0 0 0;
    gap: 10px;
  }
  .footer-links {
    text-align: center;
    width: 240px;
  }
}

/* Keyframes */
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes shake-with-delay {
  0%,
  80% {
    transform: rotate(0deg);
  } /* Pausa */
  85% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(10deg);
  }
  95% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes shakeTop {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes floatUpDown {
  0%,
  20% {
    transform: translateY(0);
  } /* Posição inicial */
  50% {
    transform: translateY(-5px);
  } /* Sobe suavemente */
  80%,
  100% {
    transform: translateY(0);
  } /* Volta e pausa */
}

/* Efeito de brilho pulsante */
@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 10px rgb(37, 211, 102, 0.8);
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgb(37, 211, 102, 0.9);
  }
  100% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 1);
    transform: scale(1);
  }
}

@keyframes pulseInfinite {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.10);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulseImgAbout {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}