/* ==========================================================================
   HERO BENEFITS
   ========================================================================== */

.hero-benefit {
  min-height: 48px;
  /*padding-right: 1rem;*/
  /*padding-left: 1rem;*/
  font-size: 0.75rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-benefit + .hero-benefit {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 767.98px) {
  .hero-benefit:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 575.98px) {
  .hero-benefit {
    min-height: 54px;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

/* ==========================================================================
   SECTION ID WITH SIDE LINES
   ========================================================================== */

.section-id-lines {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 14px;
}

.section-id-lines::before,
.section-id-lines::after {
  content: "";
  display: block;
  height: 1px;
  flex: 1 1 auto;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.65;
}

@media (max-width: 575.98px) {
  .section-id-lines {
    gap: 9px;
  }
}

/* ==========================================================================
   DEVELOPMENT PROCESS ARROWS
   ========================================================================== */

@media (min-width: 768px) {
  .process-step {
    position: relative;
  }

  .process-step:not(:last-child)::after {
    content: "\2192";
    position: absolute;
    top: 52px;
    right: -1.1rem;
    z-index: 2;
    color: var(--theme-color);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    opacity: 0.55;
    transform: translateY(-50%);
    pointer-events: none;
  }
}

/* ==========================================================================
   AREAS DETAIL
   ========================================================================== */

.areas-detail {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 45px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #f4f4f6;
}

.areas-detail__intro {
  display: flex;
  align-items: center;
  flex: 0 0 36%;
  gap: 22px;
  padding: 18px 28px;
  color: #fff;
  text-align: left;
  background-color: var(--theme-color);
}

.areas-detail__intro-icon {
  flex: 0 0 auto;
  font-size: 2.7rem;
  line-height: 1;
}

.areas-detail__intro p,
.areas-detail__item p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.areas-detail__items {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}

.areas-detail__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 25%;
  gap: 15px;
  min-height: 82px;
  padding: 14px 18px;
  color: var(--theme-color-tertiary);
  text-align: left;
}

.areas-detail__item + .areas-detail__item::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background-color: rgba(10, 35, 66, 0.1);
}

.areas-detail__icon {
  flex: 0 0 auto;
  color: var(--theme-color);
  font-size: 2.25rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .areas-detail {
    display: block;
  }

  .areas-detail__intro {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .areas-detail__items {
    flex-wrap: wrap;
  }

  .areas-detail__item {
    flex-basis: 50%;
  }

  .areas-detail__item:nth-child(3)::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .areas-detail {
    margin-top: 30px;
  }

  .areas-detail__intro {
    gap: 14px;
    padding: 18px;
  }

  .areas-detail__intro p,
  .areas-detail__item p {
    font-size: 0.85rem;
  }

  .areas-detail__item {
    gap: 10px;
    min-height: 88px;
    padding: 14px 10px;
  }

  .areas-detail__icon {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   DEVELOPMENT PROCESS DETAIL
   ========================================================================== */

.process-detail {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 45px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #f4f4f6;
}

.process-detail__intro {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  gap: 18px;
  padding: 17px 28px;
  color: #fff;
  text-align: left;
  background-color: var(--theme-color);
}

.process-detail__intro-icon {
  flex: 0 0 auto;
  font-size: 2rem;
  line-height: 1;
}

.process-detail__intro p,
.process-detail__item p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.process-detail__intro p {
  font-weight: 600;
}

.process-detail__items {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}

.process-detail__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 33.333%;
  gap: 13px;
  min-height: 72px;
  padding: 13px 16px;
  color: var(--theme-color-tertiary);
  text-align: left;
}

.process-detail__item + .process-detail__item::before {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background-color: rgba(10, 35, 66, 0.13);
}

.process-detail__icon {
  flex: 0 0 auto;
  color: var(--theme-color);
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .process-detail {
    display: block;
  }

  .process-detail__intro {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .process-detail__item {
    min-height: 82px;
  }
}

@media (max-width: 767.98px) {
  .process-detail__items {
    flex-wrap: wrap;
  }

  .process-detail__item {
    flex-basis: 100%;
  }

  .process-detail__item + .process-detail__item::before {
    top: 0;
    right: 12%;
    bottom: auto;
    left: 12%;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 575.98px) {
  .process-detail {
    margin-top: 30px;
  }

  .process-detail__intro {
    gap: 13px;
    padding: 17px;
  }

  .process-detail__intro p,
  .process-detail__item p {
    font-size: 0.85rem;
  }

  .process-detail__item {
    min-height: 68px;
    padding: 12px 16px;
  }

  .process-detail__icon {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   CONTACT BANNER
   ========================================================================== */

.banner-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.banner-contact-link,
.banner-contact-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 232px;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}

.banner-contact-address {
  flex-basis: 100%;
  font-size: 0.9rem;
  font-weight: 200;
}

.banner-contact-link:hover,
.banner-contact-link:focus {
  color: var(--theme-color);
}

.banner-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid currentColor;
  border-radius: 10px;
  color: var(--color--white);
}

.banner-contact-icon:before,
.banner-contact-icon:after {
  margin-left: 0;
  line-height: 1 !important;
}

.banner-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner-action-buttons .btn,
.banner-action-buttons .btn:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 232px;
  min-height: 48px;
  margin: 0;
  padding: 0.78rem 1.25rem;
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.banner-action-buttons .btn span {
  flex-shrink: 0;
}

/* ==========================================================================
   @media (max-width: 575.98px) - CONTATO
   ========================================================================== */

@media (max-width: 575.98px) {
  .banner-contact-links {
    gap: 12px;
    margin-top: 26px;
    margin-left: 25px;
  }

  .banner-contact-link,
  .banner-contact-address {
    min-width: 0;
    width: 100%;
  }

  .banner-contact-address {
    align-items: flex-start;
    text-align: left;
  }

  .banner-contact-address-text {
    display: block;
    max-width: 260px;
    line-height: 1.35;
  }
}

/* ==========================================================================
   @media (max-width: 767.98px)
   ========================================================================== */

@media (max-width: 767.98px) {
  #contato .btns-group .btn {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  #contato .btns-group .btn:first-child {
    margin-bottom: 15px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

img.footer-logo {
  width: auto;
  max-width: inherit;
  max-height: 70px !important;
  margin-bottom: 25px;
  margin-top: 25px;
}

.footer hr {
  margin-bottom: 0px !important;
}

.footer-bottom-row {
  row-gap: 18px;
}

.footer-bottom-logo {
  text-align: left;
}

.bottom-footer .footer-copyright {
  text-align: center;
}

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

.bottom-footer .footer-socials {
  display: flex;
  justify-content: center;
  margin: 0;
}

.bottom-footer .footer-socials a {
  color: var(--theme-color-secondary);
}

.bottom-footer .footer-socials a:hover,
.bottom-footer .footer-socials a:focus {
  color: var(--theme-color-tertiary);
}

.bottom-footer .footer-socials li:last-child a {
  margin-right: 0;
}

@media (max-width: 767.98px) {
  .footer-bottom-logo,
  .bottom-footer .footer-copyright {
    text-align: center;
  }

  .bottom-footer .footer-socials {
    justify-content: center;
  }

  .footer-socials-column {
    display: none;
  }

  .footer-bottom-row > .col-md-4.text-end {
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .footer-3.footer {
    padding-bottom: 108px;
  }
}

/* ==========================================================================
   FLOATING SOCIAL MENU
   ========================================================================== */

.floating-social-menu {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgb(64 130 132);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.floating-social-menu__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.floating-social-menu__link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.floating-social-menu__link span:before {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.floating-social-menu__link:hover,
.floating-social-menu__link:focus {
  color: #ffffff;
  background: var(--dark-teal-green-2, #024640);
  box-shadow: 0 12px 28px rgba(0, 75, 46, 0.32);
}

.floating-social-menu__link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .floating-social-menu {
    right: 50%;
    top: auto;
    bottom: 16px;
    flex-direction: row;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
    transform: translateX(50%);
  }

  .floating-social-menu__link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .floating-social-menu__link:hover,
  .floating-social-menu__link:focus {
    transform: translateY(-3px);
  }
}

/* ==========================================================================
   QUOTE MODAL
   ========================================================================== */

.quote-modal .modal-dialog {
  max-width: 760px;
}

.quote-modal .modal-content {
  position: relative;
  overflow: hidden;
  padding: 64px 60px 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(14, 133, 120, 0.28), rgba(2, 70, 64, 0.08) 46%), var(--theme-color-tertiary);
  box-shadow: 0 28px 80px rgba(7, 29, 79, 0.38);
}

.quote-modal .modal-body {
  padding: 0 !important;
}

.quote-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--tra-white);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.quote-modal__close span {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-1px);
}

.quote-modal__close:hover,
.quote-modal__close:focus {
  background: var(--theme-color);
  transform: translateY(-2px);
}

.quote-modal__intro {
  max-width: 620px;
}

.quote-modal__intro .section-id {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--theme-color);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.quote-modal__intro h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.12;
}

.quote-modal__intro h3 .color--theme-2 {
  color: var(--theme-color);
}

.quote-modal__intro p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.orcamento-form {
  margin-top: 34px;
}

.orcamento-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.orcamento-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.orcamento-form__field {
  min-width: 0;
}

.orcamento-form__field--full {
  grid-column: 1 / -1;
}

.orcamento-form__field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
}

.orcamento-form__required {
  color: var(--theme-color);
  font-weight: 700;
}

.orcamento-form__field input,
.orcamento-form__field select,
.orcamento-form__field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  font-size: 0.95rem;
  line-height: 1.35;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.orcamento-form__field input::placeholder,
.orcamento-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
  opacity: 1;
}

.orcamento-form__field input,
.orcamento-form__field select {
  padding: 0 15px;
}

.orcamento-form__field textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.orcamento-form__field select {
  appearance: auto;
}

.orcamento-form__field select option {
  color: var(--coal);
  background-color: var(--white);
}

.orcamento-form__field input:focus,
.orcamento-form__field select:focus,
.orcamento-form__field textarea:focus {
  border-color: var(--theme-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(14, 133, 120, 0.2);
  outline: 0;
}

.orcamento-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--theme-color);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.orcamento-form__submit:hover,
.orcamento-form__submit:focus {
  background: var(--theme-color-secondary);
  box-shadow: 0 14px 28px rgba(2, 70, 64, 0.32);
  transform: translateY(-2px);
}

.orcamento-form__submit span:before {
  font-size: 1rem;
  line-height: 1;
}

.orcamento-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.orcamento-form__message {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.orcamento-form__message.is-visible {
  display: block;
}

.orcamento-form__message.is-success {
  color: var(--white);
  background: rgba(14, 133, 120, 0.55);
}

.orcamento-form__message.is-error {
  color: var(--white);
  background: rgba(252, 47, 75, 0.16);
}

@media (max-width: 575.98px) {
  .quote-modal .modal-dialog {
    margin: 16px;
  }

  .quote-modal .modal-body {
    padding: 0 !important;
  }

  .quote-modal .modal-content {
    padding: 58px 26px 30px;
  }

  .quote-modal__intro h3 {
    font-size: 1.7rem;
  }

  .quote-modal__intro p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .orcamento-form__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .orcamento-form__submit {
    width: 100%;
  }
}
