:root {
  --background-color: #ffffff;
  --default-color: #364d59;
  --heading-color: #545454;
  --heading-color-2: #d6d1cd;
  --accent-color: #55ae9a;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.55);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0b5e4f;
  --font-textos: 'Barlow Semi Condensed', sans-serif;
  --font-titulos: "kudryashev-d-contrast-sans", sans-serif;
  ;
}

.light-background {
  --background-color: #f4f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #d6d1cd;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
}

a,
p,
ul li,
span {
  font-family: var(--font-textos);
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--font-titulos);
  font-weight: weight;
  font-style: normal;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: color-mix(in srgb, rgba(0, 0, 0, 0.712), #00000000 30%);
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
  position: relative;
  width: 100%;
}

.header .topbar {
  background-color: color-mix(in srgb, rgba(0, 0, 0, 0), #00000000 30%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 50px;
  padding: 0px 0;
}

/* Estilos padrÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o */
.branding .logo {
  line-height: 1;
  max-height: 100px;
  height: auto;
  padding-bottom: 10px;
  padding-top: 10px;
}

.branding .logo img {
  max-height: 100%;
  height: auto;
  width: auto;
  margin-right: 80px;
}

.branding .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

@media (max-width: 768px) {
  .branding .logo {
    max-height: 60px;
  }

  .branding .logo img {
    max-height: 60px;
    margin-right: 20px;
  }

  .branding .logo span {
    font-size: 24px;
    margin-left: 5px;
  }
}

@media (max-width: 480px) {
  .branding .logo {
    max-height: 71px;
  }

  .branding .logo img {
    max-height: 50px;
    margin-right: 10px;
  }

  .branding .logo span {
    font-size: 18px;
    margin-left: 3px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 1rem;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--accent-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .social-links-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 10px 20px;
    margin: 0px;
  }

  .social-links-mobile .social-links {
    display: flex;
    flex-direction: row;
  }

  .social-links-mobile .social-links a {
    margin: 0;
    padding: 3px;
  }

  .social-links-mobile .social-links a i {
    margin: 0;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: linear-gradient(45deg, black, transparent), url("../img/imgs-radote-construcoes/banner-p-1.webp") center center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

.footer:before {
  content: "";
  background: color-mix(in srgb, #060606d9, transparent 5%);
  position: absolute;
  inset: 0;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
}

.footer .footer-about .logo img {
  max-height: 100px;
  margin-right: auto;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--font-textos);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 1rem;
  font-family: var(--font-textos);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  /* color: #fff; */
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-size: 1rem;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

.footer-blog {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.footer-blog img {
  margin-right: 10px;
}

.footer-blog h4 {
  font-size: 1rem;
  font-weight: 200;
  font-family: 'Barlow Semi Condensed';
}

.footer-blog p {
  color: #fff;
}

.footer-blog h4:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
  border-radius: 50px;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  padding: 0;
  position: relative;
  margin-top: -100px;
}

@media (width: 1920px) and (height: 1080px) {
  #hero {
    width: 100%;
    height: 90vh;
    padding: 0;
  }
}

#hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 0;
  margin-top: 6vw;
}

#hero .info h1 {
  font-size: 2.5rem;
  line-height: normal;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#hero .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

#hero .info h2 {
  font-size: 2.5rem;
  line-height: normal;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

#hero .info p {
  color: var(--heading-color-2);
  font-size: 1.5rem;
  line-height: normal;
}

@media (max-width: 768px) {

  /* #hero .info {
  padding: 100px 0 40px 0;
} */
  #hero .info h2 {
    font-size: 40px;
    letter-spacing: 5px;
  }

  #hero .info h1 {
    font-size: 40px;
    letter-spacing: 5px;
  }

  #hero .info p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {

  /* #hero .info {
  padding: 80px 0 30px 0;
} */
  #hero .info h2 {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  #hero .info h1 {
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  #hero .info p {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

/* ------------------- */
#hero .info .btn-get-started {
  color: #fff;
  font-family: var(--font-titulos);
  font-weight: normal;
  font-size: 0.8rem;
  transition: 0.5s;
  border: 4px solid var(--accent-color);
  border-radius: 15px;
  max-width: 360px;
  letter-spacing: 4px;
  display: block;
  padding: 15px;
  text-align: center;
}

@media (max-width: 768px),
(max-height: 480px) {
  #hero .info .btn-get-started {
    color: #fff;
    font-family: var(--font-titulos);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    display: flex;
    padding: 15px 15px;
    transition: 0.5s;
    border: 2px solid var(--accent-color);
    width: 300px;
  }
}

#hero .info .btn-get-started:hover {
  background: var(--nav-dropdown-hover-color);
  color: #fff;
  border: 0px solid #fff;
}

/* ---------------- */
#hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

#hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

#hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  animation: zoomIn 3s ease-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

#hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(92deg, black, #00000000);
}

@media (max-width: 768px) {
  #hero .carousel-item::before {
    background: linear-gradient(92deg, black, #0000005c);
    /* Ajusta o gradiente para um efeito vertical */
  }
}

#hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  #hero .carousel-control-prev {
    padding-left: 15px;
  }
}

#hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  #hero .carousel-control-next {
    padding-right: 15px;
  }
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

#hero .carousel-control-prev:focus,
#hero .carousel-control-next:focus {
  opacity: 0.5;
}

#hero .carousel-control-prev:hover,
#hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (max-width: 768px),
(max-height: 480px) {
  #hero .info h1 {
    font-size: 30px;
  }

  #hero .info h2 {
    font-size: 30px;
  }

  #hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    margin: 0;
  }

  #hero .info h1:after {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    margin: 0;
    border-radius: 50px;
  }
}

@media (min-width: 640px) {
  #hero .carousel-control-prev {
    padding-left: 15px;
  }

  #hero .carousel-control-next {
    padding-right: 15px;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started {
  color: var(--heading-color);
  background: url(../img/background-alt-services.jpeg) no-repeat center center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  color: var(--heading-color);
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
  border-radius: 50px;
}

.get-started .content p {
  font-size: 1.5rem;
  color: var(--heading-color);
}

.get-started .php-email-form {
  background: color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 60px;
  height: 100%;
  color: black;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  border-top-left-radius: 15px;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

.get-started .php-email-form p {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.get-started .php-email-form input[type=text],
.get-started .php-email-form input[type=email],
.get-started .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-started .php-email-form input[type=text]:focus,
.get-started .php-email-form input[type=email]:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-started .php-email-form input[type=text]::placeholder,
.get-started .php-email-form input[type=email]::placeholder,
.get-started .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-started .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: var(--background-color);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

#services .section-title h2 {
  color: var(--heading-color);
  font-size: 2.5rem;
}

#services .section-title p {
  color: var(--heading-color);
  font-size: 1.5rem;
}

.unified-cards {
  background-color: #000000;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  border: 4px solid var(--accent-color);
  border-radius: 15px;
}

.services .service-item {
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  height: 325px;
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 0px;
  left: 0;
  width: 2px;
  background-color: var(--accent-color);
}

.services .service-item::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 50px;
  right: 0;
  width: 2px;
  background-color: var(--accent-color);
}

.services .service-item:hover::before,
.services .service-item:hover::after {
  opacity: 0;
}

.services .row .col-lg-3:first-child .service-item::before {
  display: none;
}

.services .row .col-lg-3:last-child .service-item::after {
  display: none;
}

.services .service-item h3 {
  font-size: 1.8rem;
  color: var(--background-color);
  margin-bottom: 20px;
  position: relative;
}

.services .service-item h3::after {
  content: "";
  display: block;
  width: 33%;
  height: 2px;
  background-color: var(--accent-color);
  position: absolute;
  right: 0;
}

.services .service-item p {
  font-size: 1.125rem;
  color: var(--background-color);
  line-height: normal;
  margin-top: 45px;
  word-spacing: 1.6;
}

.services .service-item:hover h3 {
  color: var(--nav-dropdown-color);
}

.services .service-item:hover p {
  color: var(--nav-dropdown-color);
}

.services .service-item:hover {
  transform: translateY(-10px);
  background-color: #f0f0f0;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .unified-cards {
    padding: 20px;
    width: 90%;
  }

  #services .section-title h2 {
    font-size: 1.8rem;
  }

  #services .section-title p {
    font-size: 1.2rem;
  }

  .services .service-item {
    padding: 30px;
    height: auto;
  }

  .services .service-item h3 {
    font-size: 24px;
  }

  .services .service-item p {
    font-size: 14px;
  }

  .services .service-item:hover {
    transform: translateY(0);
    background-color: #f9f9f9;
  }

  .services .service-item::before,
  .services .service-item::after {
    width: 1px;
  }

  .services .service-item h3::after {
    width: 25%;
  }

  .services .row .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .services .service-item::before,
  .services .service-item::after {
    display: none;
  }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services {
  width: 100%;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: url('../img/background-alt-services.jpeg') no-repeat center center;
  background-size: cover;
}

#video-container {
  background: url('../img/img-card-alt-services.png');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  border-top-left-radius: 15px;
}

.alt-services img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.alt-services .container {
  position: relative;
  z-index: 3;
}

.alt-services h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.alt-services h2 span {
  color: var(--accent-color);
}

.alt-services p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 1.5rem;
}

.alt-services .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.alt-services .cta-btn:first-child {
  margin-right: 10px;
}

.alt-services .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (min-width: 540px) and (max-width: 540px) and (min-height: 720px) and (max-height: 720px) {
  .alt-services {
    width: 100%;
    position: relative;
    padding: 60px 15px;
    /* Reduzido para se ajustar ao tamanho menor da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 45px;
    /* Ajuste da borda para telas menores */
    border-top-right-radius: 45px;
    border-top-left-radius: 10px;
    height: 300px;
  }

  .alt-services img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .alt-services:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .alt-services .container {
    position: relative;
    z-index: 3;
  }

  .alt-services h2 {
    margin: 0;
    font-size: 36px;
    /* Reduzido para ajustar ao tamanho menor da tela */
    font-weight: 700;
  }

  .alt-services h2 span {
    color: var(--accent-color);
  }

  .alt-services p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 18px;
    /* Reduzido para telas menores */
  }

  .alt-services .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 40px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .alt-services .cta-btn:first-child {
    margin-right: 8px;
  }

  .alt-services .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

@media (max-width: 480px) {
  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  .alt-services {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  .alt-services .cta-btn {
    font-size: 12px;
  }
}

@media (min-width: 912px) and (max-width: 912px) and (min-height: 1368px) and (max-height: 1368px) {
  .alt-services {
    width: 100%;
    position: relative;
    padding: 60px 0;
    /* Reduzido para se ajustar ao tamanho menor da tela */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 45px;
    /* Ajuste da borda para telas menores */
    border-top-right-radius: 45px;
    border-top-left-radius: 10px;
    height: 35vh;
  }

  .alt-services img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .alt-services:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .alt-services .container {
    position: relative;
    z-index: 3;
  }

  .alt-services h2 {
    margin: 0;
    font-size: 36px;
    /* Reduzido para ajustar ao tamanho menor da tela */
    font-weight: 700;
  }

  .alt-services h2 span {
    color: var(--accent-color);
  }

  .alt-services p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 18px;
    /* Reduzido para telas menores */
  }

  .alt-services .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 12px;
    /* Ajustado para telas menores */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 40px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .alt-services .cta-btn:first-child {
    margin-right: 8px;
  }

  .alt-services .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

@media (min-width: 853px) and (max-width: 853px) and (min-height: 1280px) and (max-height: 1280px) {
  .alt-services {
    width: 100%;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 45px;
    border-top-right-radius: 45px;
    border-top-left-radius: 10px;
    height: 35vh;
  }

  .alt-services img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .alt-services:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .alt-services .container {
    position: relative;
    z-index: 3;
  }

  .alt-services h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
  }

  .alt-services h2 span {
    color: var(--accent-color);
  }

  .alt-services p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 18px;
  }

  .alt-services .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 40px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .alt-services .cta-btn:first-child {
    margin-right: 8px;
  }

  .alt-services .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

@media (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) and (max-height: 1180px) {
  .alt-services {
    width: 100%;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 45px;
    /* Ajuste da borda para telas menores */
    border-top-right-radius: 45px;
    border-top-left-radius: 10px;
    height: 35vh;
  }

  .alt-services img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .alt-services:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .alt-services .container {
    position: relative;
    z-index: 3;
  }

  .alt-services h2 {
    margin: 0;
    font-size: 36px;
    /* Reduzido para ajustar ao tamanho menor da tela */
    font-weight: 700;
  }

  .alt-services h2 span {
    color: var(--accent-color);
  }

  .alt-services p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 18px;
  }

  .alt-services .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 40px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .alt-services .cta-btn:first-child {
    margin-right: 8px;
  }

  .alt-services .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

@media (min-width: 768px) and (max-width: 768px) and (min-height: 1024px) and (max-height: 1024px) {
  .alt-services {
    width: 100%;
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 45px;
    border-top-right-radius: 45px;
    border-top-left-radius: 10px;
    height: 35vh;
  }

  .alt-services img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .alt-services:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }

  .alt-services .container {
    position: relative;
    z-index: 3;
  }

  .alt-services h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
  }

  .alt-services h2 span {
    color: var(--accent-color);
  }

  .alt-services p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 18px;
  }

  .alt-services .cta-btn {
    color: var(--default-color);
    border: 2px solid var(--accent-color);
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 40px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .alt-services .cta-btn:first-child {
    margin-right: 8px;
  }

  .alt-services .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }
}

.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
  text-align: center;
}

.alt-services h3:before,
.alt-services h3:after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  display: inline-block;
  border-radius: 50px;
}

.alt-services h3:before {
  margin: 0 15px 10px 0;
}

.alt-services h3:after {
  margin: 0 0 10px 15px;
}

@media (max-width: 768px) {
  .alt-services h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .alt-services h3:before,
  .alt-services h3:after {
    width: 40px;
    margin: 0 10px 8px 0;
  }

  .alt-services h3:after {
    margin: 0 0 8px 10px;
  }
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--accent-color);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
#testimonials {
  background-color: #000000;
}

#testimonials h2,
h3,
h4 {
  color: var(--heading-color-2);
  font-size: 2.5rem;
}

#testimonials p {
  color: var(--heading-color-2);
  font-size: 1.5rem;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--nav-dropdown-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 100%;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--background-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--contrast-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  #testimonials h2,
  h3,
  h4 {
    color: var(--heading-color-2);
    font-size: 1.9rem;
  }

  #testimonials p {
    color: var(--heading-color-2);
    font-size: 1.1rem;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
    # Posts | Home
    --------------------------------------------------------------*/
.post {
  background: #fff;
  padding: 60px 0;
}

.post .post-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.post .post-item .post-item-img {
  position: relative;
  overflow: hidden;
}

.post .post-item .post-item-img img {
  width: 100%;
  max-height: 230px;
  height: auto;
}

.post .post-item .read-more {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.post .post-item .read-more a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 15px;
}

.post .post-item .read-more a:hover {
  background: var(--color-2);
  color: var(--color-3);
}

.post .post-item .read-more i {
  font-size: 18px;
  line-height: 0;
}

.post .post-item .post-item-info {
  padding: 25px 15px;
}

.post .post-item .post-item-info h3 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.post .post-item .post-item-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.post .post-item .post-item-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.post .post-item:hover .read-more {
  opacity: 1;
  bottom: 15px;
}

.post .know-more {
  font-family: Jost, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.5s ease 0s;
  margin: 10px;
  border: 2px solid var(--color-3);
  background: var(--color-2);
  color: var(--color-3);
}

.post .know-more:hover {
  background: #fff;
  border: 3px solid;
  color: var(--color-2);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-counter .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-counter .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-textos);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--accent-color);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .swiper-wrapper {
  height: auto;
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.project-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.project-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* ----------------------------------------------------------------------------- */
/*--------------------------------------------------------------
# Global header-contato
--------------------------------------------------------------*/
.header-contato {
  --background-color: #030303;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header-contato .topbar {
  background-color: color-mix(in srgb, #000000 90%, #000000 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid #ffffff26;
}

.header-contato .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header-contato .topbar .contact-info i a,
.header-contato .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header-contato .topbar .contact-info i a,
  .header-contato .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header-contato .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header-contato .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header-contato .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header-contato .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header-contato .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header-contato .logo {
  line-height: 1;
}

.header-contato .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header-contato .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header-contato .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# contato Section
--------------------------------------------------------------*/
.contato {
  color: #fff;
  background: linear-gradient(45deg, #000000, #00000098), url(../img/imgs-radote-construcoes/img\ 9.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contato .content {
  padding: 30px 0;
}

.contato .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.contato .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.contato .content p {
  font-size: 14px;
}

.contato .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contato .php-email-form {
    padding: 20px;
  }
}

.contato .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contato .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.contato .php-email-form input[type=text],
.contato .php-email-form input[type=email],
.contato .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contato .php-email-form input[type=text]:focus,
.contato .php-email-form input[type=email]:focus,
.contato .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contato .php-email-form input[type=text]::placeholder,
.contato .php-email-form input[type=email]::placeholder,
.contato .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contato .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contato .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global footer-contato
--------------------------------------------------------------*/
.footer-contato {
  color: var(--default-color);
  background-color: var(--background-color);
  background: black;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer-contato .container {
  position: relative;
}

.footer-contato .footer-contato-top {
  padding-top: 50px;
}

.footer-contato .footer-contato-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer-contato .footer-contato-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer-contato .footer-contato-about .logo span {
  color: var(--heading-color);
  font-family: var(--font-textos);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-contato .footer-contato-about p {
  font-size: 14px;
  font-family: var(--font-textos);
}

.footer-contato .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer-contato .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer-contato h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer-contato .footer-contato-links {
  margin-bottom: 30px;
}

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

.footer-contato .footer-contato-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer-contato .footer-contato-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer-contato .footer-contato-links ul li:first-child {
  padding-top: 0;
}

.footer-contato .footer-contato-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer-contato .footer-contato-links ul a:hover {
  color: var(--accent-color);
}

.footer-contato .footer-contato-contact p {
  margin-bottom: 5px;
}

.footer-contato .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-contato .copyright p {
  margin-bottom: 0;
}

.footer-contato .credits {
  margin-top: 8px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------------------------------------------------
-------------------------------------------------   Sucesso    --------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------- */
/*--------------------------------------------------------------
# Global header-sucesso
--------------------------------------------------------------*/
.header-sucesso {
  --background-color: #030303;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header-sucesso .topbar {
  background-color: color-mix(in srgb, #000000 90%, #000000 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid #ffffff26;
}

.header-sucesso .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header-sucesso .topbar .contact-info i a,
.header-sucesso .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header-sucesso .topbar .contact-info i a,
  .header-sucesso .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header-sucesso .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header-sucesso .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header-sucesso .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header-sucesso .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header-sucesso .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header-sucesso .logo {
  line-height: 1;
}

.header-sucesso .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header-sucesso .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header-sucesso .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# sucesso Section
--------------------------------------------------------------*/
.sucesso {
  color: #fff;
  background: linear-gradient(45deg, #000000, #00000098), url(../img/imgs-radote-construcoes/img\ 9.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sucesso {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.sucesso .content {
  text-align: center;
  padding: 30px 0;
}

.sucesso .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.sucesso .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.sucesso .content p {
  font-size: 14px;
}

.sucesso .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .sucesso .php-email-form {
    padding: 20px;
  }
}

.sucesso .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sucesso .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.sucesso .php-email-form input[type=text],
.sucesso .php-email-form input[type=email],
.sucesso .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.sucesso .php-email-form input[type=text]:focus,
.sucesso .php-email-form input[type=email]:focus,
.sucesso .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.sucesso .php-email-form input[type=text]::placeholder,
.sucesso .php-email-form input[type=email]::placeholder,
.sucesso .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.sucesso .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.sucesso .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global footer-sucesso
--------------------------------------------------------------*/
.footer-sucesso {
  color: var(--default-color);
  background-color: var(--background-color);
  background: black;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer-sucesso .container {
  position: relative;
}

.footer-sucesso .footer-sucesso-top {
  padding-top: 50px;
}

.footer-sucesso .footer-sucesso-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer-sucesso .footer-sucesso-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer-sucesso .footer-sucesso-about .logo span {
  color: var(--heading-color);
  font-family: var(--font-textos);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-sucesso .footer-sucesso-about p {
  font-size: 14px;
  font-family: var(--font-textos);
}

.footer-sucesso .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer-sucesso .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer-sucesso h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer-sucesso .footer-sucesso-links {
  margin-bottom: 30px;
}

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

.footer-sucesso .footer-sucesso-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer-sucesso .footer-sucesso-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer-sucesso .footer-sucesso-links ul li:first-child {
  padding-top: 0;
}

.footer-sucesso .footer-sucesso-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer-sucesso .footer-sucesso-links ul a:hover {
  color: var(--accent-color);
}

.footer-sucesso .footer-sucesso-contact p {
  margin-bottom: 5px;
}

.footer-sucesso .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-sucesso .copyright p {
  margin-bottom: 0;
}

.footer-sucesso .credits {
  margin-top: 8px;
  font-size: 13px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 35px;
  right: 35px;
  background-color: #0b5e4f;
  color: rgb(255, 255, 255);
  border-radius: 50px;
  text-align: center;
  box-shadow: #0b5e4f 2px 2px 3px;
  z-index: 100;
  transition: all 0.2s ease-in-out 0s;
}

.whatsapp-float img {
  padding: 0;
  margin: 15px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: rgb(18, 140, 126);
  box-shadow: rgb(153, 153, 153) 3px 3px 4px;
  color: rgb(255, 255, 255) !important;
}

.whatsapp-icon {
  margin-top: 15px;
}


/*--------------------------------------------------------------
# Global header-erro
--------------------------------------------------------------*/
.header-erro {
  --background-color: #030303;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header-erro .topbar {
  background-color: color-mix(in srgb, #000000 90%, #000000 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid #ffffff26;
}

.header-erro .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header-erro .topbar .contact-info i a,
.header-erro .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header-erro .topbar .contact-info i a,
  .header-erro .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header-erro .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header-erro .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header-erro .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header-erro .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header-erro .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header-erro .logo {
  line-height: 1;
}

.header-erro .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header-erro .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header-erro .logo span {
  font-size: 32px;
  margin-left: 2px;
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# erro Section
--------------------------------------------------------------*/
.erro {
  color: #fff;
  background: linear-gradient(45deg, #000000, #00000098), url(../img/imgs-radote-construcoes/img\ 9.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 50px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.erro {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.erro .content {
  text-align: center;
  padding: 30px 0;
}

.erro .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.erro .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.erro .content p {
  font-size: 14px;
}

.erro .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .erro .php-email-form {
    padding: 20px;
  }
}

.erro .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.erro .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.erro .php-email-form input[type=text],
.erro .php-email-form input[type=email],
.erro .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.erro .php-email-form input[type=text]:focus,
.erro .php-email-form input[type=email]:focus,
.erro .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.erro .php-email-form input[type=text]::placeholder,
.erro .php-email-form input[type=email]::placeholder,
.erro .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.erro .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.erro .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Global footer-erro
--------------------------------------------------------------*/
.footer-erro {
  color: var(--default-color);
  background-color: var(--background-color);
  background: black;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer-erro .container {
  position: relative;
}

.footer-erro .footer-erro-top {
  padding-top: 50px;
}

.footer-erro .footer-erro-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer-erro .footer-erro-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer-erro .footer-erro-about .logo span {
  color: var(--heading-color);
  font-family: var(--font-textos);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-erro .footer-erro-about p {
  font-size: 14px;
  font-family: var(--font-textos);
}

.footer-erro .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer-erro .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer-erro h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer-erro .footer-erro-links {
  margin-bottom: 30px;
}

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

.footer-erro .footer-erro-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer-erro .footer-erro-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer-erro .footer-erro-links ul li:first-child {
  padding-top: 0;
}

.footer-erro .footer-erro-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer-erro .footer-erro-links ul a:hover {
  color: var(--accent-color);
}

.footer-erro .footer-erro-contact p {
  margin-bottom: 5px;
}

.footer-erro .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-erro .copyright p {
  margin-bottom: 0;
}

.footer-erro .credits {
  margin-top: 8px;
  font-size: 13px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe57;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.carousel-item .carousel-container {
  height: 100vh;
  /* Ocupar 100% da altura da viewport */
  display: flex;
  /* Ativar o Flexbox */
  justify-content: flex-start;
  /* Alinhar horizontalmente ao centro */
  align-items: center;
  /* Alinhar verticalmente ao centro */
  font-size: 2rem;
  line-height: normal;
  position: relative;
}


/*--------------------------------------------------------------
# projects
--------------------------------------------------------------*/
#projetos {
  margin: 0;
  padding: 50px 0;
  overflow: hidden;
  background-color: #000000;
  color: white;
  text-align: center;
  height: auto;
}

#projetos-title {
  text-align: center;
  padding-bottom: 0px;
  position: relative;
}

/* 
@media (max-width: 1366px) and (max-height: 768px) {
  #projetos {
      padding: 40px 0;
      height: calc(100vh + 15vw);
      font-size: 1.1em;
  }
}

@media (max-width: 1280px) and (max-height: 800px) {
  #projetos {
      padding: 40px 0;
      height: calc(100vh + 10vw);
      font-size: 1.1em;
  }
}


@media (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
  #projetos {
      padding: 40px 0;
      height: calc(100vh + 35vw);
  }
}


@media (min-width :1024px) and (max-width: 1024px) and  (min-height: 1366px) and (max-height: 1366px) {
  #projetos {
      padding: 40px 0;
      height: calc(100vh - 35vw);
  }
}


@media (max-width: 820px) and (max-height: 1180px) {
#projetos {
    padding: 20px 10px; 
    height: calc(100vh - 25vw); 
    font-size: 1em; 
    text-align: center; 
}
}

@media (max-width: 768px) {
  #projetos {
      padding: 30px 0;
      height: calc(100vh - 15vw);
      font-size: 1.1em;
  }
}
@media (max-width: 480px) {
  #projetos {
      padding: 20px 10px;
      height: calc(100vh - 75vw); 
      font-size: 1em; 
      text-align: left;
  }
}

@media (max-width: 390px) and (max-height: 844px) {
#projetos {
    padding: 20px 10px; 
    height: calc(100vh - 60vw); 
    font-size: 1em; 
    text-align: center; 
}
}

@media (max-width: 360px) and (max-height: 740px) {
#projetos {
    padding: 20px 10px; 
    height: calc(100vh - 38vw); 
    font-size: 1em; 
    text-align: center; 
}
}

@media (max-width: 375px) and (max-height: 667px) {
#projetos {
    padding: 20px 10px;
    height: auto;
    font-size: 1em;
    text-align: center;
    max-height: 515px;
}
} */
#projetos .swiper-container {
  width: 100%;
  padding: 20px 0;
  height: auto;
  margin-bottom: 60px;
  padding-bottom: 60px;
  margin-top: 0px;
  max-height: 600px;
}

#projetos .section-title h2 {
  font-size: 2.5rem;
  color: var(--heading-color-2);
  margin-bottom: 20px;
}

#projetos .section-title p {
  font-size: 1.5rem;
  color: var(--heading-color-2);
  margin-bottom: 40px;
}

@media (max-width: 768px),
(max-height: 480px) {
  #projetos .swiper-container {
    width: 100%;
    padding: 15px 0;
    /* Padding reduzido */
    height: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
}

@media (max-width: 768px),
(max-height: 480px) {
  #projetos .section-title h2 {
    font-size: 2rem;
    /* Fonte reduzida */
    color: #fff;
    margin-bottom: 15px;
    /* Margem reduzida */
  }

  #projetos .section-title p {
    font-size: 1rem;
    /* Fonte reduzida */
    color: #aaa;
    margin-bottom: 0px;
    /* Margem reduzida */
  }
}

/* ---------------------------------------- */
.swiper-slide {
  height: auto;
}

.swiper-container::before,
.swiper-container::after,
.swiper-wrapper::before,
.swiper-wrapper::after {
  content: '';
  display: none;
}

/* ----------------------------------------- */
.swiper-wrapper {
  display: flex;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.project-card {
  background-color: #222;
  margin: 0 10px;
  margin-bottom: 0px;
  text-align: left;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.project-img {
  width: 100%;
  height: auto;
}

.project-info {
  padding: 15px;
}

.project-info h3 {
  font-size: 1.2rem;
  color: #fff;
}

.project-info p {
  font-size: 0.9rem;
  color: #aaa;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

/* Texto na vertical ao lado da imagem */
.project-card-texto {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  margin-right: 0px;
  color: #fff;
  font-size: 1.2rem;
  transform: rotate(180deg);
  position: absolute;
  top: 0vw;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 50px 0px;
}

#projetos .project-card-texto::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 55px;
  background-color: var(--accent-color);
  margin: 0;
  border-radius: 50px;
}

.project-card-img {
  flex: 1;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .swiper-container {
    width: 100%;
  }

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

  .project-card-texto {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .project-card-img {
    width: 100%;
    /* Garante que a imagem ocupe 100% da largura no layout de coluna */
  }
}

@media (max-width: 576px) {
  .swiper-container {
    width: 100%;
  }

  .project-card {
    margin: 0;
    /* Remove margens das "cards" */
    padding: 0;
    /* Remove padding das "cards" */
    flex-direction: column;
  }

  .project-card-texto {
    writing-mode: vertical-lr;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .project-card-img {
    width: 100%;
  }
}

.project-img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
  object-fit: cover;
}

.swiper-slide:hover .project-img {
  transform: scale(1.1);
}

.image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.swiper-slide:hover .overlay {
  opacity: 1;
}

.project-card-texto h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px),
(max-height: 480px) {
  .project-card-texto h3 {
    color: #fff;
    font-size: 1.1rem;
    /* Fonte um pouco menor */
    margin-bottom: 0px;
    /* Margem reduzida */
    text-align: center;
  }
}

.explore {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  position: relative;
}

.explore.move-right {
  right: -40px;
}

.explore:hover {
  background-color: var(--accent-color);
  color: #fff;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .explore {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    position: relative;
  }

  .explore.move-right {
    right: -40px;
  }

  .explore:hover {
    background-color: var(--accent-color);
    color: #fff;
    letter-spacing: 2px;
  }
}

/* ----------------------------------------------------
---------------- diferenciais-section -----------------            
---------------------------------------------------- */
#diferenciais {
  background-color: #000000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 50px 0;
  text-align: center;
}

#diferenciais .section-title h2 {
  color: var(--heading-color-2);
  font-size: 2.5rem;
}

#diferenciais h4 {
  color: var(--heading-color-2);
}

#diferenciais .section-title p {
  color: var(--heading-color-2);
  font-size: 1.5rem;
}

#diferenciais .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#diferenciais .col {
  flex: 1;
  max-width: 270px;
  padding: 20px;
  background-color: #000;
  border: 1px solid #333;
  margin: 10px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 414px;
  transition: transform 0.3s;
}

#diferenciais .icon img {
  width: 74px;
  margin-bottom: 0px;
  transition: transform 0.6s ease;
}

#diferenciais .icon img:hover {
  transform: rotate(360deg);
}

#diferenciais h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: inherit;
  letter-spacing: 2px;
}

#diferenciais p {
  font-size: 1.125rem;
  color: var(--heading-color-2);
  flex-grow: 1;
}

#diferenciais .card-number {
  font-size: 70px;
  color: rgb(255 255 255 / 22%);
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-weight: bold;
}

#diferenciais .col:hover {
  background-color: #222;
  transform: scale(1.05);
}

#diferenciais .divider {
  width: 30%;
  height: 2px;
  background-color: var(--accent-color);
  margin: 50px auto 20px;
  border-radius: 50px;
}

#projetos .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 600px !important;
  width: 500px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  #diferenciais .row {
    flex-direction: column;
    align-items: center;
  }

  #diferenciais .col {
    height: 100%;
    margin: 10px 0;
    padding: 30px;
  }

  #diferenciais h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #diferenciais .section-title h2 {
    color: var(--heading-color-2);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  #diferenciais p {
    font-size: 13px;
  }

  #diferenciais .card-number {
    font-size: 50px;
    color: rgb(255 255 255 / 22%);
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-weight: bold;
  }

  #diferenciais .icon img {
    width: 60px;
  }

  #diferenciais .icon img:hover {
    transform: rotate(360deg);
  }
}

#inner-hero {
  /* height: 30vh; */
  /* margin-top: 0px; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  /* background: linear-gradient(29deg, #000000, transparent), url(../img/hero-carousel/hero-carousel-1.jpg); */
  /* background-size: cover; */
  /* background-position: center; */
}

#inner-hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 40px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  #inner-hero .info {
    padding: 20px 50px 60px 50px;
  }
}

#inner-hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

#inner-hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

#inner-hero .info h1 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  left: 250px;
}

#inner-hero .info h1:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  #inner-hero .info h2 {
    font-size: 36px;
  }
}

#inner-hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

/* ------------------- */
#inner-hero .info .btn-get-started {
  color: #fff;
  font-family: var(--font-textos);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
}

#inner-hero .info .btn-get-started:hover {
  background: #000000b0;
  color: #fff;
  border: 2px solid #00000000;
}

/* ---------------- */
#inner-hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

#inner-hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: zoomIn 3s ease-out forwards;
}

#inner-hero .info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  height: auto;
  padding: 20px;
  left: 300px;
  z-index: 10;
}

#inner-hero .container {
  width: 100%;
}

#inner-hero .col-lg-6 {
  width: 100%;
  height: 650px;
  padding: 29px;
}

#inner-hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  padding: 2px 0;
}

#inner-hero h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  padding: 20px 0;
}

@media (max-width: 768px) {
  #inner-hero .info {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

#inner-hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#inner-hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  #inner-hero .carousel-control-prev {
    padding-left: 15px;
  }
}

#inner-hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  #inner-hero .carousel-control-next {
    padding-right: 15px;
  }
}

#inner-hero .carousel-control-next-icon,
#inner-hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#inner-hero .carousel-control-prev,
#inner-hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

#inner-hero .carousel-control-prev:focus,
#inner-hero .carousel-control-next:focus {
  opacity: 0.5;
}

#inner-hero .carousel-control-prev:hover,
#inner-hero .carousel-control-next:hover {
  opacity: 0.9;
}

/* Container da linha do tempo */
#sobre {
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

#sobre h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#sobre h2::after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#sobre .timeline {
  position: relative;
  padding-left: 0px;
}

#sobre .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

#sobre .circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--heading-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--heading-color);
  background-color: #fff;
  position: relative;
  margin-right: 20px;
  z-index: 1;
}

#sobre .timeline-item::after {
  content: '';
  position: absolute;
  width: 2px;
  height: calc(100% + 30px);
  background-color: var(--heading-color);
  left: 19px;
  top: 40px;
  z-index: 0;
}

#sobre .timeline-item:last-child::after {
  display: none;
}

#sobre .timeline-content p {
  margin: 0;
  font-size: 18px;
  color: var(--heading-color);
}

#sobre .col-md-7 {
  flex: 0 0 auto;
  width: 100%;
}

#sobre .row {
  width: 100%;
  max-width: none;
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (max-width: 767px) {
  #projetos .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 500px;
    margin-bottom: 0;
    padding: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #projetos .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 600px !important;
    width: 500px;
    margin: 0;
    padding: 0;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1919px) {
  #projetos .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 600px !important;
    width: 500px;
    margin: 0;
    padding: 0;
    height: calc(100vh + 10vw);
  }
}

@media only screen and (min-width: 1920px) {
  #projetos .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 600px !important;
    width: 500px;
    margin: 0;
    padding: 0;
    height: calc(100vh + 3vw);
  }
}

/* --------------------------------------
----------- section-20241029 ------------
-------------------------------------- */
.section-20241029 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: url('../img/background-alt-services.jpeg') no-repeat center center;
  background-size: cover;
}

#img-container {
  background: url('https://placehold.co/660x400');
  background-size: cover;
  background-position: center;
  /* border-bottom-left-radius: 60px;
border-top-right-radius: 60px;
border-top-left-radius: 15px; */
  height: 400px;
}

#section-20241029 hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

.section-20241029 img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-20241029:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.section-20241029 .container {
  position: relative;
  z-index: 3;
}

.section-20241029 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.section-20241029 h2 span {
  color: var(--accent-color);
}

.section-20241029 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.section-20241029 .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.section-20241029 .cta-btn:first-child {
  margin-right: 10px;
}

.section-20241029 .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  #img-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
    height: 300px;
  }

  .section-20241029 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  .section-20241029 .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #img-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
    height: 300px;
  }

  .section-20241029 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  .section-20241029 h2 {
    font-size: 32px;
  }

  .section-20241029 p {
    font-size: 18px;
  }
}

.section-20241029 .features-image {
  position: relative;
  min-height: 400px;
}

.section-20241029 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.section-20241029 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

.section-20241029 h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

/* --------------------------------------
---------- /section-20241029 ------------
-------------------------------------- */
/* --------------------------------------
----------- section-20241030 ------------
-------------------------------------- */
#section-20241030.section-20241030 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: url('../img/background-alt-services.jpeg') no-repeat center center;
  background-size: cover;
}

#video-container-sobre {
  position: relative;
  width: 100%;
  height: 400px;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  border-top-left-radius: 15px;
  overflow: hidden;
}

#video-container-sobre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

#section-20241030 #video-container-sobre {
  position: relative;
}

#section-20241030 .pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 2;
}

#section-20241030 .pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s infinite steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#section-20241030 .pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#section-20241030 .pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

#section-20241030 .pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

#video-container {
  background: url('../img/img-card-alt-services.png');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  border-top-left-radius: 15px;
  height: 600px;
}

.img-esquerda img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
  border-top-right-radius: 15px;
}

.img-direita img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-top-left-radius: 15px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 60px;
}

#section-20241030.section-20241030:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#section-20241030 .container {
  position: relative;
  z-index: 3;
}

#section-20241030 h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#section-20241030 h2 span {
  color: var(--accent-color);
}

#section-20241030 p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#section-20241030 .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

#section-20241030 .cta-btn:first-child {
  margin-right: 10px;
}

#section-20241030 .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#section-20241030 hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #section-20241030 .video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  #section-20241030.section-20241030 {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #section-20241030 .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #section-20241030 h2 {
    font-size: 32px;
  }

  #section-20241030 p {
    font-size: 18px;
  }
}

#section-20241030 .features-image {
  position: relative;
  min-height: 400px;
}

#section-20241030 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section-20241030 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-20241030 h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-20241030 .icon-box {
  margin-top: 50px;
}

#section-20241030 .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#section-20241030 .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#section-20241030 .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#section-20241030 .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

#section-20241030 .icon-box h4 a:hover {
  color: var(--accent-color);
}

#section-20241030 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* --------------------------------------
---------- /section-20241030 ------------
-------------------------------------- */

/* --- Arquitetura --- */
#section-arquitetura.section-arquitetura:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#section-arquitetura .container {
  position: relative;
  z-index: 3;
}

#section-arquitetura h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#section-arquitetura h2 span {
  color: var(--accent-color);
}

#section-arquitetura p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#section-arquitetura .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

#section-arquitetura .cta-btn:first-child {
  margin-right: 10px;
}

#section-arquitetura .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#section-arquitetura hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #section-arquitetura .video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  #section-arquitetura.section-arquitetura {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #section-arquitetura .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #section-arquitetura h2 {
    font-size: 32px;
  }

  #section-arquitetura p {
    font-size: 18px;
  }
}

#section-arquitetura .features-image {
  position: relative;
  min-height: 400px;
}

#section-arquitetura .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section-arquitetura h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-arquitetura h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-arquitetura .icon-box {
  margin-top: 50px;
}

#section-arquitetura .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#section-arquitetura .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#section-arquitetura .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#section-arquitetura .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

#section-arquitetura .icon-box h4 a:hover {
  color: var(--accent-color);
}

#section-arquitetura .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* --- Engenharia --- */
#section-engenharia.section-engenharia:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#section-engenharia .container {
  position: relative;
  z-index: 3;
}

#section-engenharia h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#section-engenharia h2 span {
  color: var(--accent-color);
}

#section-engenharia p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#section-engenharia .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

#section-engenharia .cta-btn:first-child {
  margin-right: 10px;
}

#section-engenharia .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#section-engenharia hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #section-engenharia .video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  #section-engenharia.section-engenharia {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #section-engenharia .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #section-engenharia h2 {
    font-size: 32px;
  }

  #section-engenharia p {
    font-size: 18px;
  }
}

#section-engenharia .features-image {
  position: relative;
  min-height: 400px;
}

#section-engenharia .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section-engenharia h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-engenharia h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-engenharia .icon-box {
  margin-top: 50px;
}

#section-engenharia .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#section-engenharia .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#section-engenharia .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#section-engenharia .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

#section-engenharia .icon-box h4 a:hover {
  color: var(--accent-color);
}

#section-engenharia .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#section-engenharia img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


#section-construcao.section-construcao:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#section-construcao .container {
  position: relative;
  z-index: 3;
}

#section-construcao h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#section-construcao h2 span {
  color: var(--accent-color);
}

#section-construcao p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#section-construcao .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

#section-construcao .cta-btn:first-child {
  margin-right: 10px;
}

#section-construcao .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#section-construcao hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #section-construcao .video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  #section-construcao.section-construcao {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #section-construcao .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #section-construcao h2 {
    font-size: 32px;
  }

  #section-construcao p {
    font-size: 18px;
  }
}

#section-construcao .features-image {
  position: relative;
  min-height: 400px;
}

#section-construcao .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section-construcao h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-construcao h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-construcao .icon-box {
  margin-top: 50px;
}

#section-construcao .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#section-construcao .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#section-construcao .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#section-construcao .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

#section-construcao .icon-box h4 a:hover {
  color: var(--accent-color);
}

#section-construcao .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* --- Reforma --- */
#section-reforma.section-reforma:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

#section-reforma .container {
  position: relative;
  z-index: 3;
}

#section-reforma h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#section-reforma h2 span {
  color: var(--accent-color);
}

#section-reforma p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#section-reforma .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

#section-reforma .cta-btn:first-child {
  margin-right: 10px;
}

#section-reforma .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

#section-reforma hr {
  border: none;
  height: 2px;
  background-color: var(--accent-color);
  margin: 40px 0;
  border-radius: 5px;
}

@media (max-width: 480px) {
  #section-reforma .video-container {
    background: url('../img/img-card-alt-services.png');
    background-size: cover;
    background-position: center;
    height: 25vh;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 15px;
  }

  #section-reforma.section-reforma {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 50px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    background: url('../img/background-alt-services.jpeg') no-repeat center center;
    background-size: cover;
  }

  #section-reforma .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #section-reforma h2 {
    font-size: 32px;
  }

  #section-reforma p {
    font-size: 18px;
  }
}

#section-reforma .features-image {
  position: relative;
  min-height: 400px;
}

#section-reforma .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#section-reforma h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-reforma h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-reforma .icon-box {
  margin-top: 50px;
}

#section-reforma .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

#section-reforma .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

#section-reforma .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

#section-reforma .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

#section-reforma .icon-box h4 a:hover {
  color: var(--accent-color);
}

#section-reforma .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

#section-linha-do-tempo {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: url('../img/background-alt-services.jpeg') no-repeat center center;
  background-size: cover;
}

#section-linha-do-tempo .main-timeline-2 {
  position: relative;
}

#section-linha-do-tempo .main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 50px;
}

#section-linha-do-tempo .timeline-2 {
  position: relative;
  background-color: inherit;
  width: 50%;
}

#section-linha-do-tempo .timeline-2::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -11px;
  background-color: var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

#section-linha-do-tempo .left-2 {
  padding: 0px 40px 20px 0px;
  left: 0;
}

#section-linha-do-tempo .right-2 {
  padding: 0px 0px 20px 40px;
  left: 50%;
}

#section-linha-do-tempo .left-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

#section-linha-do-tempo .right-2::before {
  content: " ";
  position: absolute;
  top: 18px;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

#section-linha-do-tempo .right-2::after {
  left: -14px;
}

#section-linha-do-tempo .card {
  border: 2px solid var(--accent-color);
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  border-top-left-radius: 15px;
  overflow: hidden;
}

#section-linha-do-tempo .card-img-top {
  width: 100%;
  height: auto;
  display: block;
}

#section-linha-do-tempo .card-2 {
  border: 2px solid var(--accent-color);
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
  border-top-right-radius: 15px;
  overflow: hidden;
}

#section-linha-do-tempo .card-2 .card-img-top {
  width: 100%;
  height: auto;
  display: block;
}

#section-linha-do-tempo .card-body {
  background-color: #ffffff;
  background-image: url('caminho/para/sua-imagem.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#section-linha-do-tempo h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-linha-do-tempo h4:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-linha-do-tempo p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 20px;
  line-height: 1.6;
}

#section-linha-do-tempo .card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 20px;
  line-height: 1.6;
}

#section-linha-do-tempo .card-body {
  padding: 35px;
}

@media (max-width: 768px) {
  #section-linha-do-tempo {
    padding: 40px 0;
  }

  #section-linha-do-tempo .main-timeline-2::after {
    left: 0;
    margin-left: 0;
  }

  #section-linha-do-tempo .card-2 {
    border: 2px solid var(--accent-color);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 0px;
    overflow: hidden;
  }

  #section-linha-do-tempo .card {
    border: 2px solid var(--accent-color);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 60px;
    border-top-right-radius: 60px;
    border-top-left-radius: 0px;
    overflow: hidden;
  }

  #section-linha-do-tempo .timeline-2 {
    width: 100%;
    padding: 0;
  }

  #section-linha-do-tempo .timeline-2::after {
    left: 0;
    right: auto;
    margin-left: -12px;
  }

  #section-linha-do-tempo .left-2,
  #section-linha-do-tempo .right-2 {
    left: 0;
    padding: 0 20px 20px;
  }

  #section-linha-do-tempo .left-2::before,
  #section-linha-do-tempo .right-2::before {
    left: 15px;
    right: auto;
    transform: rotate(0deg);
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  #section-linha-do-tempo .card {
    width: 100%;
    margin-bottom: 20px;
  }

  #section-linha-do-tempo .card-body {
    padding: 20px;
  }

  #section-linha-do-tempo h4 {
    font-size: 24px;
  }

  #section-linha-do-tempo p {
    font-size: 16px;
    line-height: 1.4;
  }
}

#section-linha-do-tempo-2 .main-timeline-2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#section-linha-do-tempo-2 .main-timeline-2::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
  border-radius: 50px;
}

#section-linha-do-tempo-2 .timeline-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
}

#section-linha-do-tempo-2 .timeline-item .col-md-6 {
  flex: 1;
  display: flex;
  align-items: stretch;
}

#section-linha-do-tempo-2 .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

#section-linha-do-tempo-2 .timeline-item .text-card {
  flex: 1;
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#section-linha-do-tempo-2 .timeline-item .timeline-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#section-linha-do-tempo-2 .timeline-item .timeline-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#section-linha-do-tempo-2 .text-card h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-linha-do-tempo-2 .text-card h4:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-linha-do-tempo-2 .text-card p {
  font-size: 20px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  #section-linha-do-tempo-2 .main-timeline-2::after {
    left: 0;
    margin-left: 0;
  }

  #section-linha-do-tempo-2 .timeline-item {
    flex-direction: column;
    align-items: center;
  }

  #section-linha-do-tempo-2 .timeline-item .col-md-6 {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  #section-linha-do-tempo-2 .timeline-item .timeline-image img {
    width: 100%;
    height: auto;
  }

  #section-linha-do-tempo-2 .timeline-item .text-card {
    padding: 15px;
  }

  #section-linha-do-tempo-2 .text-card h4 {
    font-size: 20px;
  }

  #section-linha-do-tempo-2 .text-card p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* -------------------------------------------- */
#section-linha-do-tempo-3 {
  position: relative;
  padding: 40px 0;
}

#section-linha-do-tempo-3 .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

#section-linha-do-tempo-3 .timeline-container::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

#section-linha-do-tempo-3 .timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

#section-linha-do-tempo-3 .timeline-row::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#section-linha-do-tempo-3 .timeline-item {
  position: relative;
  width: 45%;
  padding: 10px;
  z-index: 1;
}

#section-linha-do-tempo-3 .card {
  background-color: #ffffff;
  border: 2px solid var(--accent-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#section-linha-do-tempo-3 .card-img {
  background-color: #ffffff;
  border: 2px solid var(--accent-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#section-linha-do-tempo-3 .card h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

#section-linha-do-tempo-3 .card h4:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-linha-do-tempo-3 .card p {
  font-size: 20px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0;
}

@media (max-width: 768px) {
  #section-linha-do-tempo-3 .timeline-container {
    flex-direction: column;
  }

  #section-linha-do-tempo-3 .timeline-row {
    flex-direction: column;
    margin-bottom: 20px;
  }

  #section-linha-do-tempo-3 .timeline-item {
    width: 100%;
    text-align: center;
  }

  #section-linha-do-tempo-3 .timeline-container::before {
    left: 0;
  }

  #section-linha-do-tempo-3 .timeline-row::before {
    display: none;
  }
}

/* -----------------------------------
--------------------------------
------------------------------------ */
#section-time-line-2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding-top: 60px;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  background: url('../img/background-alt-services.jpeg') no-repeat center center;
  background-size: cover;
}

#section-time-line-2 .timeline-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

#section-time-line-2 .timeline-container::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

#section-time-line-2 .timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

#section-time-line-2 .timeline-row::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#section-time-line-2 .timeline-item {
  position: relative;
  width: 45%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#section-time-line-2 .card {
  background-color: #ffffff;
  border: 1px solid #c4c4c487;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 4px 6px rgb(107 105 105 / 28%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

#section-time-line-2 .card h4 span {
  font-size: 1.2rem;
  padding: 3px 10px;
  margin-left: 15px;
  letter-spacing: 3px;
  font-weight: 200;
  border-bottom: 1px solid;
}

#section-time-line-2 .card {
  padding: 20px;
}

#section-time-line-2 .card h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

#section-time-line-2 .card h4:after {
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

#section-time-line-2 .card p {
  font-size: 1.2rem;
  line-height: normal;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: center;
}

#section-time-line-2 .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

@media (max-width: 768px) {
  #section-time-line-2 .timeline-container {
    flex-direction: column;
  }

  #section-time-line-2 .timeline-row {
    flex-direction: column;
    margin-bottom: 20px;
  }

  #section-time-line-2 .timeline-item {
    width: 100%;
    text-align: center;
  }

  #section-time-line-2 .timeline-container::before {
    display: none;
  }

  #section-time-line-2 .timeline-row::before {
    display: none;
  }
}





#section-galeria {
  position: relative;
  width: 100%;
  height: 31.25rem;
  overflow: hidden;
  background-color: #ffffff;
}

#section-galeria .swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#section-galeria .swiper-wrapper {
  display: flex;
  width: calc(200%);
  animation: scroll-infinite 30s linear infinite;
}

#section-galeria .swiper-slide {
  flex: 0 0 auto;
  width: 37.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 1;
}

#section-galeria .swiper-slide .image {
  width: 100%;
  height: 100%;
  display: flex;
}

#section-galeria .swiper-slide .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#section-galeria .swiper-slide:hover .project-img {
  transform: scale(1.1);
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  #section-galeria {
    height: 40rem;
  }

  #section-galeria .swiper-slide {
    width: 25rem;
  }
}

@media (max-width: 576px) {
  #section-galeria {
    height: 30rem;
  }

  #section-galeria .swiper-slide {
    width: 20rem;
  }
}


#section-sobre-nos {
  padding: 60px 0;
}

#section-sobre-nos .div-sobre-nos p {

  text-align: justify;
  font-size: 19px;

}

#section-sobre-nos .section-title h2 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 700;
}

#section-equipe {
  padding: 60px 0;
}

#section-equipe .section-title h2 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 700;
}

#section-equipe .section-title p {
  color: #364d59;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

#section-equipe .section-title h2:before,
#section-equipe .section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
  border-radius: 50px;
}

#section-equipe .btn-ler-mais {
  width: 200px;
}


@media (max-width: 768px) {
  #section-equipe .section-title h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  #section-equipe .section-title p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  #testimonials .section-title h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  #alt-services .section-title h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {

  #section-equipe .section-title p {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  #section-equipe .section-title h2 {
    font-size: 1.6rem;
  }

  #section-equipe .section-title h2:before,
  #section-equipe .section-title h2:after {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }

  #alt-services .section-title h2 {
    font-size: 1.6rem;
  }

  #alt-services .section-title h2:before,
  #alt-services .section-title h2:after {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }

  #testimonials .section-title h2 {
    font-size: 1.6rem;
  }

  #testimonials .section-title h2:before,
  #testimonials .section-title h2:after {
    content: "";
    width: 35px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }
}

@media (max-width: 360px) {
  #section-equipe .section-title p {
    font-size: 0.9rem;
    margin-bottom: 0px;
  }

  #section-equipe .section-title h2 {
    font-size: 1.6rem;
  }

  #section-equipe .section-title h2:before,
  #section-equipe .section-title h2:after {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }


  #alt-services .section-title h2 {
    font-size: 1.6rem;
  }

  #alt-services .section-title h2:before,
  #alt-services .section-title h2:after {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }

  #testimonials .section-title h2 {
    font-size: 1.6rem;
  }

  #testimonials .section-title h2:before,
  #testimonials .section-title h2:after {
    content: "";
    width: 25px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
    border-radius: 50px;
  }
}


#section-equipe .row .card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: 45.5rem;
}

#section-equipe .row .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: filter 0.3s ease;
  border-radius: 0px;
}

#section-equipe .row .card:hover img {
  filter: brightness(50%);
}

#section-equipe .row .card .card-img-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

#section-equipe h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color-2);
}

#section-equipe .row .card .card-img-overlay h6 {
  font-size: 1rem;
  letter-spacing: 1px;
  /* font-weight: 600; */
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
  margin-left: 10px;
}

#section-equipe .row .card .card-img-overlay h4 {
  font-size: 2rem;
  /* font-weight: 700; */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
  text-align: left;
  margin-left: 10px;
}

#section-equipe .row .card:hover .card-img-overlay h4 {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

#section-equipe .row .card:hover .card-img-overlay h6 {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

#section-equipe .col-md-4 .card {
  margin-bottom: 15px;
  margin-top: 15px;
}


/* Modais */
.modal-equipe h5 {
  color: #000;
}

.modal-equipe p {
  text-align: justify;
  font-size: 18px;
  padding: 0 15px;
}