@charset "UTF-8";
/*!
Theme Name: Expresstran
Theme URI: https://express-tran.com/
Author: Alde Ivaro
Author URI: https://aldeivaro.com/
Description: Um tema inclusivo para Alde Ivaro, Lda.
Text Domain: Thema Wordpress com ACF
Version: 2
*/
/* Reset de estilos */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Configurações padrão para blocos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* Reseta a aparência dos botões */
button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

/* Remove estilos padrão de links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove a aparência do campo de pesquisa no Safari */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

/* Remove a aparência do contorno em formulários no Firefox */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:focus,
input:focus {
  outline: 0;
}

/* Remove a aparência de rolagem de textos em dispositivos móveis */
textarea {
  resize: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  padding: 25px 0;
  transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header .logo-light {
  display: block;
}
.site-header .logo-dark {
  display: none;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.site-header__logo {
  z-index: 1001;
}
.site-header__logo img {
  height: 70px;
  width: auto;
}
.site-header__toggle {
  display: none;
  z-index: 1001;
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .site-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.site-header__toggle .hamburger-box {
  width: 32px;
  height: 22px;
  position: relative;
}
.site-header__toggle .hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
  left: 0 !important;
}
.site-header__toggle .hamburger-inner, .site-header__toggle .hamburger-inner::before, .site-header__toggle .hamburger-inner::after {
  width: 32px !important;
  height: 3px;
  background-color: #ffffff !important;
  position: absolute;
  left: 0 !important;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}
.site-header__toggle .hamburger-inner::before {
  content: "";
  top: -10px;
}
.site-header__toggle .hamburger-inner::after {
  content: "";
  bottom: -10px;
}
.site-header__toggle.is-active .hamburger-inner {
  background-color: transparent !important;
}
.site-header__toggle.is-active .hamburger-inner::before {
  transform: translateY(10px) rotate(45deg);
  background-color: #ffffff !important;
}
.site-header__toggle.is-active .hamburger-inner::after {
  transform: translateY(-10px) rotate(-45deg);
  background-color: #ffffff !important;
}
@media (max-width: 3500px) {
  .site-header__menu {
    display: flex;
    flex: 1;
    align-items: center;
  }
}
@media (min-width: 1500px) {
  .site-header__menu {
    display: flex;
    flex: 1;
    align-items: center;
  }
}
@media (max-width: 1000px) {
  .site-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1e30b8;
    flex-direction: column;
    align-items: flex-start;
    padding: 140px 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
    z-index: 999;
    overflow-y: auto;
  }
  .site-header__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 3500px) {
  .site-header__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 575px) {
  .site-header__nav {
    left: 35px;
    transform: translateX(0%);
  }
}
.site-header__nav .main-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1000px) {
  .site-header__nav .main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    width: 100%;
  }
}
.site-header__nav .main-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header__nav .main-menu > li > a::before, .site-header__nav .main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.3s ease, background-color 0.3s ease;
}
.site-header__nav .main-menu > li > a::before {
  top: 0;
}
.site-header__nav .main-menu > li > a::after {
  bottom: 0;
}
.site-header__nav .main-menu > li > a:hover, .site-header__nav .main-menu > li > a:focus-visible {
  color: #3688f3;
}
.site-header__nav .main-menu > li > a:hover::before, .site-header__nav .main-menu > li > a:focus-visible::before {
  width: 14px;
}
.site-header__nav .main-menu > li > a:hover::after, .site-header__nav .main-menu > li > a:focus-visible::after {
  width: 100%;
}
@media (max-width: 1000px) {
  .site-header__nav .main-menu > li > a {
    color: #ffffff !important;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .site-header__nav .main-menu > li > a:hover, .site-header__nav .main-menu > li > a:focus-visible {
    color: #3688f3 !important;
  }
}
.site-header__nav .main-menu > li.current-menu-item > a,
.site-header__nav .main-menu > li.current_page_item > a,
.site-header__nav .main-menu > li.current-menu-ancestor > a,
.site-header__nav .main-menu > li.current_page_ancestor > a {
  color: #3688f3 !important;
}
.site-header__nav .main-menu > li.current-menu-item > a::after,
.site-header__nav .main-menu > li.current_page_item > a::after,
.site-header__nav .main-menu > li.current-menu-ancestor > a::after,
.site-header__nav .main-menu > li.current_page_ancestor > a::after {
  width: 100%;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 3500px) {
  .site-header__actions {
    margin-left: auto;
  }
}
@media (max-width: 1000px) {
  .site-header__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 300px;
  }
}
.site-header .lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header .lang-selector__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #ffffff !important;
}
.site-header .lang-selector__toggle .icon-language, .site-header .lang-selector__toggle .icon-chevron {
  stroke: #ffffff !important;
  transition: stroke 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1000px) {
  .site-header .lang-selector__toggle {
    font-size: 1.25rem;
  }
  .site-header .lang-selector__toggle .icon-language {
    width: 24px;
    height: 24px;
  }
  .site-header .lang-selector__toggle .icon-chevron {
    width: 20px;
    height: 20px;
  }
}
.site-header .lang-selector__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 80px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.site-header .lang-selector__dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #393838;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.site-header .lang-selector__dropdown li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #3688f3;
}
.site-header .lang-selector:hover .site-header .lang-selector__dropdown, .site-header .lang-selector:focus-within .site-header .lang-selector__dropdown, .site-header .lang-selector.is-open .site-header .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
  pointer-events: auto;
}
.site-header .lang-selector:hover .site-header .lang-selector__toggle .icon-chevron, .site-header .lang-selector:focus-within .site-header .lang-selector__toggle .icon-chevron, .site-header .lang-selector.is-open .site-header .lang-selector__toggle .icon-chevron {
  transform: rotate(180deg);
}
.site-header .btn-header-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-header .btn-header-outline:hover {
  background: #393838;
  border-color: #393838;
  color: #ffffff;
}
@media (max-width: 1000px) {
  .site-header .btn-header-outline {
    border-color: #ffffff !important;
    color: #ffffff !important;
    padding: 12px 30px;
    font-size: 1.125rem;
  }
  .site-header .btn-header-outline:hover {
    background: #ffffff !important;
    color: #1e30b8 !important;
    border-color: #ffffff !important;
  }
}
.site-header--start-dark .logo-light {
  display: block;
}
.site-header--start-dark .logo-dark {
  display: none;
}
.site-header--start-dark .site-header__nav .main-menu > li > a {
  color: #ffffff;
}
.site-header--start-dark .site-header__nav .main-menu > li > a:hover, .site-header--start-dark .site-header__nav .main-menu > li > a:focus-visible {
  color: #3688f3;
}
.site-header--start-dark .site-header__nav .main-menu > li.current-menu-item > a,
.site-header--start-dark .site-header__nav .main-menu > li.current_page_item > a,
.site-header--start-dark .site-header__nav .main-menu > li.current-menu-ancestor > a,
.site-header--start-dark .site-header__nav .main-menu > li.current_page_ancestor > a {
  color: #3688f3;
}
.site-header--start-dark .lang-selector__toggle {
  color: #ffffff !important;
}
.site-header--start-dark .lang-selector__toggle .icon-language, .site-header--start-dark .lang-selector__toggle .icon-chevron {
  stroke: #ffffff !important;
}
.site-header--start-dark .lang-selector__toggle:hover {
  color: #3688f3 !important;
}
.site-header--start-dark .lang-selector__toggle:hover .icon-language, .site-header--start-dark .lang-selector__toggle:hover .icon-chevron {
  stroke: #3688f3 !important;
}
.site-header--start-dark .btn-header-outline {
  border-color: #ffffff !important;
  color: #ffffff !important;
}
.site-header--start-dark .btn-header-outline:hover {
  background: #ffffff !important;
  color: #1e30b8 !important;
}
.site-header--start-dark .site-header__toggle .hamburger-inner, .site-header--start-dark .site-header__toggle .hamburger-inner::before, .site-header--start-dark .site-header__toggle .hamburger-inner::after {
  background-color: #ffffff !important;
}
.site-header.is-scrolled {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.site-header.is-scrolled .logo-light {
  display: none;
}
.site-header.is-scrolled .logo-dark {
  display: block;
}
.site-header.is-scrolled .site-header__nav .main-menu > li > a {
  color: #393838 !important;
}
.site-header.is-scrolled .site-header__nav .main-menu > li > a:hover, .site-header.is-scrolled .site-header__nav .main-menu > li > a:focus-visible {
  color: #3688f3 !important;
}
.site-header.is-scrolled .site-header__nav .main-menu > li.current-menu-item > a,
.site-header.is-scrolled .site-header__nav .main-menu > li.current_page_item > a,
.site-header.is-scrolled .site-header__nav .main-menu > li.current-menu-ancestor > a,
.site-header.is-scrolled .site-header__nav .main-menu > li.current_page_ancestor > a {
  color: #3688f3 !important;
}
.site-header.is-scrolled .lang-selector__toggle {
  color: #393838 !important;
}
.site-header.is-scrolled .lang-selector__toggle .icon-language, .site-header.is-scrolled .lang-selector__toggle .icon-chevron {
  stroke: #393838 !important;
}
.site-header.is-scrolled .lang-selector__toggle:hover {
  color: #3688f3 !important;
}
.site-header.is-scrolled .lang-selector__toggle:hover .icon-language, .site-header.is-scrolled .lang-selector__toggle:hover .icon-chevron {
  stroke: #3688f3 !important;
}
.site-header.is-scrolled .btn-header-outline {
  border-color: #393838 !important;
  color: #393838 !important;
}
.site-header.is-scrolled .btn-header-outline:hover {
  background: #393838 !important;
  color: #ffffff !important;
  border-color: #393838 !important;
}
.site-header.is-scrolled .site-header__toggle .hamburger-inner, .site-header.is-scrolled .site-header__toggle .hamburger-inner::before, .site-header.is-scrolled .site-header__toggle .hamburger-inner::after {
  background-color: #393838 !important;
}

.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-selector::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}
.lang-selector__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #ffffff !important;
}
.lang-selector__toggle .icon-language, .lang-selector__toggle .icon-chevron {
  stroke: #ffffff !important;
  transition: stroke 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1000px) {
  .lang-selector__toggle {
    font-size: 1.25rem;
  }
  .lang-selector__toggle .icon-language {
    width: 24px;
    height: 24px;
  }
  .lang-selector__toggle .icon-chevron {
    width: 20px;
    height: 20px;
  }
}
.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  min-width: 90px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}
.lang-selector__dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #393838;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.lang-selector__dropdown li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #3688f3;
}
.lang-selector:hover .lang-selector__dropdown, .lang-selector:focus-within .lang-selector__dropdown, .lang-selector.is-open .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.lang-selector:hover .lang-selector__toggle .icon-chevron, .lang-selector:focus-within .lang-selector__toggle .icon-chevron, .lang-selector.is-open .lang-selector__toggle .icon-chevron {
  transform: rotate(180deg);
}

/* ==========================================
   VARIÁVEIS - FOOTER
   ========================================== */
/* Fundo cinza muito escuro */
/* Azul pastel do título */
/* ==========================================
   ESTILOS DO FOOTER
   ========================================== */
.site-footer {
  background-color: #222222;
  color: #ffffff;
  padding: 80px 0 60px;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
.site-footer *, .site-footer *:before, .site-footer *:after {
  box-sizing: inherit;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.site-footer {
  /* -------------------------------------
     TOPO: Texto e Formulário
     ------------------------------------- */
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr; /* Empilha texto e form no mobile */
    gap: 40px;
  }
}
.site-footer .footer-top__content {
  max-width: 500px;
}
.site-footer .footer-top__content h2 {
  color: #c9e4ed;
}
.site-footer .footer-top__content p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 400;
}
.site-footer .footer-top {
  /* Formulário Customizado */
  /* Formulário Customizado (Adaptado para Contact Form 7) */
}
.site-footer .footer-top .footer-top__form {
  width: 100%;
}
.site-footer .footer-top .footer-top__form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .site-footer .footer-top .footer-top__form .form-row {
    grid-template-columns: 1fr; /* Inputs um abaixo do outro no mobile */
  }
}
.site-footer .footer-top .footer-top__form .input-group {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-top .footer-top__form .input-group label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}
.site-footer .footer-top .footer-top__form .input-group {
  /* MAGIA AQUI: O CF7 cria spans à volta dos inputs. Precisamos de garantir que ocupam 100% */
}
.site-footer .footer-top .footer-top__form .input-group .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.site-footer .footer-top .footer-top__form .input-group {
  /* Aplicar o mesmo estilo a input, textarea e select simultaneamente */
}
.site-footer .footer-top .footer-top__form .input-group input:not([type=submit]),
.site-footer .footer-top .footer-top__form .input-group textarea,
.site-footer .footer-top .footer-top__form .input-group select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 2px;
  background-color: #ffffff;
  color: #333;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box; /* Evita que o padding quebre a largura */
}
.site-footer .footer-top .footer-top__form .input-group input:not([type=submit]):focus,
.site-footer .footer-top .footer-top__form .input-group textarea:focus,
.site-footer .footer-top .footer-top__form .input-group select:focus {
  outline: 2px solid #c9e4ed;
}
.site-footer .footer-top .footer-top__form .input-group select {
  height: 48px;
  cursor: pointer;
  /* Opcional: remover a seta padrão feia do navegador */
  /* appearance: none; */
}
.site-footer .footer-top .footer-top__form .input-group textarea {
  resize: vertical; /* Permite redimensionar apenas na vertical */
}
.site-footer .footer-top .footer-top__form .full-width {
  margin-bottom: 25px;
}
.site-footer .footer-top .footer-top__form {
  /* Botão de Submissão gerado pelo CF7 */
}
.site-footer .footer-top .footer-top__form input[type=submit],
.site-footer .footer-top .footer-top__form .btn-submit-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
.site-footer .footer-top .footer-top__form input[type=submit]:hover,
.site-footer .footer-top .footer-top__form .btn-submit-outline:hover {
  background: #ffffff;
  color: #222222;
}
.site-footer .footer-top .footer-top__form {
  /* Ajuste extra: Design das mensagens de sucesso/erro do CF7 */
}
.site-footer .footer-top .footer-top__form .wpcf7-response-output {
  border-radius: 4px;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
  font-size: 0.9rem;
}
.site-footer {
  /* -------------------------------------
     LINHA DIVISÓRIA
     ------------------------------------- */
}
.site-footer .footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 50px 0 40px;
}
.site-footer {
  /* -------------------------------------
     INFERIOR: Contactos e Links
     ------------------------------------- */
}
.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .site-footer .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-bottom {
    grid-template-columns: 1fr; /* Empilha tudo em telemóveis */
    gap: 40px;
  }
}
.site-footer .footer-bottom .footer-col p, .site-footer .footer-bottom .footer-col .label, .site-footer .footer-bottom .footer-col a, .site-footer .footer-bottom .footer-col span {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}
.site-footer .footer-bottom .footer-col a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.site-footer .footer-bottom .footer-col a:hover {
  opacity: 0.7;
}
.site-footer .footer-bottom {
  /* Coluna Central: Contactos */
}
.site-footer .footer-bottom .contacts-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer .footer-bottom .contacts-col .contact-block {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-bottom .contacts-col .contact-block .label {
  margin-bottom: 2px;
}
.site-footer .footer-bottom {
  /* Coluna Direita: Links e Redes Sociais */
}
.site-footer .footer-bottom .links-col .footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas para os links */
  gap: 8px 15px;
  margin-bottom: 25px;
}
.site-footer .footer-bottom .links-col .social-icons {
  display: flex;
  gap: 15px;
}
.site-footer .footer-bottom .links-col .social-icons a {
  display: inline-block;
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-footer .footer-bottom .links-col .social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  transition: background-color 0.3s, color 0.3s;
  color: #000000;
  background-color: #ffffff;
}

.cover-image {
  position: relative;
  width: 100%;
}
.cover-image > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: "Bahnschrift", sans-serif;
  font-weight: normal;
  margin-bottom: 0.625rem;
}

h1 {
  font-size: 3.125rem;
  line-height: 1;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 2.1875rem;
  }
}

h2 {
  font-size: 3.125rem;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  h2 {
    font-size: 2.1875rem;
  }
}

h3 {
  font-size: 1.5625rem;
  line-height: 1;
}
@media (max-width: 575px) {
  h3 {
    font-size: 1.375rem;
  }
}

p {
  font-size: 1.0625rem;
  line-height: 1.4;
}

a {
  font-size: 1.0625rem;
  line-height: 1.4;
}

.wysiwyg-content {
  max-width: 700px;
  margin: 0 auto;
  color: #393838;
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
}
.wysiwyg-content h1, .wysiwyg-content h2, .wysiwyg-content h3, .wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6 {
  font-family: "Bahnschrift", sans-serif;
  color: #000000;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 30px;
  margin-bottom: 0.75em;
}
.wysiwyg-content h1 {
  font-size: clamp(2.5rem, 4vw, 3rem);
}
.wysiwyg-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.wysiwyg-content h3 {
  font-size: clamp(1.5rem, 2vw, 1.75rem);
}
.wysiwyg-content h4 {
  font-size: 1.25rem;
}
.wysiwyg-content > *:first-child {
  margin-top: 0;
}
.wysiwyg-content p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}
.wysiwyg-content p:last-child {
  margin-bottom: 0;
}
.wysiwyg-content a {
  color: #3688f3;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.wysiwyg-content a:hover {
  color: #1e30b8;
}
.wysiwyg-content ul, .wysiwyg-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.wysiwyg-content ul li, .wysiwyg-content ol li {
  margin-bottom: 0.5rem;
}
.wysiwyg-content ul li::marker, .wysiwyg-content ol li::marker {
  color: #1e30b8;
}
.wysiwyg-content ul {
  list-style-type: disc;
}
.wysiwyg-content ol {
  list-style-type: decimal;
}
.wysiwyg-content blockquote {
  border-left: 4px solid #1e30b8;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6D6D6D;
  font-size: 1.25rem;
}
.wysiwyg-content blockquote p {
  margin-bottom: 0;
}
.wysiwyg-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  display: block;
}
.wysiwyg-content figure {
  margin: 2rem 0;
}
.wysiwyg-content figure img {
  margin: 0;
}
.wysiwyg-content figure figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #6D6D6D;
  margin-top: 0.5rem;
  font-style: italic;
}
.wysiwyg-content iframe {
  max-width: 100%;
  margin: 2rem 0;
  border-radius: 12px;
}
.wysiwyg-content strong, .wysiwyg-content b {
  font-weight: 600;
  color: #000000;
}
.wysiwyg-content em, .wysiwyg-content i {
  font-style: italic;
}

.container {
  max-width: 1500px;
  padding: 0 50px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 30px;
  }
}

.mg-mx {
  margin: 100px 0;
}
@media (max-width: 575px) {
  .mg-mx {
    margin: 50px 0;
  }
}

.mg-md {
  margin: 50px 0;
}

.mg-pd {
  margin: 20px 0;
}

.pd-mx {
  padding: 100px 0;
}
@media (max-width: 575px) {
  .pd-mx {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}

.pd-pd {
  padding: 20px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
}
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 575px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero {
  position: relative;
  height: 100dvh;
  color: #ffffff;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  pointer-events: none;
}
.hero__slide .hero__content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out 0.3s;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}
.hero__slide.is-active .hero__content {
  opacity: 1;
  transform: translateY(0);
}
.hero__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.2) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.hero__content {
  max-width: 550px;
}
.hero__subtitle {
  display: inline-block;
  color: #a3d9a5;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero__bottom {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
.hero__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.hero__progress {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
}
.hero__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ffffff;
  transition: width 0.5s ease-in-out;
}
.hero__scroll {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.hero__scroll:hover {
  opacity: 1;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease;
  animation: scrollBob 2s infinite ease-in-out;
}
.hero__scroll:hover {
  opacity: 1;
}
.hero__scroll .scroll-mouse {
  width: 26px;
  height: 26px;
  color: #ffffff;
  stroke-width: 1.5;
}
.hero__scroll .scroll-arrow {
  width: 20px;
  height: 20px;
  color: #ffffff;
  stroke-width: 2;
  margin-top: -4px;
}
@keyframes scrollBob {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float-btn:hover {
  transform: translateY(-3px);
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}
.whatsapp-float-btn svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}

.hero__slider-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  user-select: none;
}
.hero__slider-container:active {
  cursor: grabbing;
}

.hero__progress {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
}
.hero__progress::after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

.global-map {
  padding: 5rem 0 -10% 0;
  background-color: #ffffff;
  text-align: center;
  padding-top: 90px;
}
.global-map__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}
.global-map__title {
  text-align: center;
  max-width: 520px;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.global-map__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.6;
}
.global-map__canvas {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.global-map__bg {
  width: 100%;
  height: auto;
  display: block;
}
.global-map__pin {
  position: absolute;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.global-map__pin-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.global-map__pin-btn img {
  width: 45px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.global-map__pin-btn:hover {
  transform: translateY(-5px);
}
.global-map__tooltip {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.global-map__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}
.global-map__pin.is-active {
  z-index: 10;
}
.global-map__pin.is-active .global-map__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.services-section {
  background-color: #B4E3F9;
  overflow: hidden;
  padding: 100px 0;
  margin-top: -20px;
}
@media (max-width: 575px) {
  .services-section {
    padding: 50px 0;
    margin-top: -10px;
  }
}
.services-section__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.services-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .services-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.services-section__title {
  margin: 0;
}
.services-section__nav {
  display: flex;
  gap: 1rem;
}
.services-section__nav .nav-btn {
  background: transparent;
  border: 1px solid #000000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 575px) {
  .services-section__nav .nav-btn {
    width: 35px;
    height: 35px;
  }
}
.services-section__nav .nav-btn:hover {
  background: #000000;
  color: #ffffff;
}
.services-section .track--slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}
.services-section .track--slider::-webkit-scrollbar {
  display: none;
}
.services-section .track--slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.services-section .track--slider .service-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 320px;
  scroll-snap-align: start;
}
@media (max-width: 1024px) {
  .services-section .track--slider .service-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (max-width: 768px) {
  .services-section .track--slider .service-card {
    flex: 0 0 100%;
  }
}
.services-section .track--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .services-section .track--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-section .track--grid {
    grid-template-columns: 1fr;
  }
}
.services-section .track--grid .service-card {
  width: 100%;
  min-width: auto;
}
.services-section .service-card {
  height: 450px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.services-section .service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.services-section .service-card .placeholder-bg {
  background-color: #a3a3a3;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.services-section .service-card__box {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: rgba(221, 240, 250, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.5rem;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.services-section .service-card__box-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.3125rem;
  gap: 1rem;
}
.services-section .service-card__title {
  margin: 0;
  line-height: 1.2;
}
.services-section .service-card__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}
.services-section .service-card__toggle svg {
  position: absolute;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.services-section .service-card__toggle .icon-minus {
  opacity: 0;
  transform: rotate(-90deg);
}
.services-section .service-card__toggle .icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}
.services-section .service-card__text {
  color: #333333;
  margin: 0;
  line-height: 1.5;
}
.services-section .service-card .text-hidden {
  display: none;
}
.services-section .service-card__action {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.services-section .service-card .btn-service {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #000;
  border-radius: 50px;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.services-section .service-card .btn-service:hover {
  background: #000;
  color: #fff;
}
.services-section .service-card.is-open .text-ellipsis {
  display: none;
}
.services-section .service-card.is-open .text-hidden {
  display: inline;
}
.services-section .service-card.is-open .service-card__action {
  margin-top: 1.25rem;
  max-height: 60px;
  opacity: 1;
}
.services-section .service-card.is-open .icon-plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
.services-section .service-card.is-open .icon-minus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.services-section {
  background-color: #b7e5f7;
  overflow: hidden;
  padding: 72px 0 66px;
  margin-top: -15px;
  scroll-margin-top: 110px;
}
@media (max-width: 575px) {
  .services-section {
    padding: 48px 0 46px;
  }
}
.services-section__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: max(50px, (100vw - 1500px) / 2 + 50px);
  padding-right: 50px;
}
@media (max-width: 1000px) {
  .services-section__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .services-section__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.services-section__header {
  display: block;
  margin-bottom: 32px;
  text-align: left;
}
.services-section__title {
  margin: 0;
  color: #050505;
  font-family: "Roboto", sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}
@media (max-width: 575px) {
  .services-section__title {
    font-size: 2rem;
  }
}
.services-section__nav {
  display: none;
}
.services-section__track,
.services-section .track--slider,
.services-section .track--grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  overflow: visible;
  padding: 0;
}
@media (max-width: 1000px) {
  .services-section__track,
  .services-section .track--slider,
  .services-section .track--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .services-section__track,
  .services-section .track--slider,
  .services-section .track--grid {
    grid-template-columns: 1fr;
  }
}
.services-section .track--slider .service-card {
  width: 100%;
  min-width: 0;
}
.services-section .track--grid .service-card {
  width: 100%;
  min-width: 0;
}
.services-section .service-card {
  height: 274px;
  min-height: 274px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 18px 22px;
  background: rgba(215, 241, 251, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: #050505;
  text-align: left;
  text-decoration: none;
  scroll-snap-align: start;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.services-section .service-card:hover {
  transform: translateY(-4px);
  background: rgba(225, 246, 253, 0.9);
  box-shadow: 0 16px 32px rgba(52, 126, 158, 0.16);
}
.services-section .service-card:focus-visible {
  outline: 3px solid #050505;
  outline-offset: 4px;
}
@media (max-width: 768px) {
  .services-section .service-card {
    min-height: 260px;
    padding: 26px 18px 22px;
  }
}
.services-section .service-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 24px;
}
.services-section .service-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 46px;
}
.services-section .service-card__icon svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.55;
}
.services-section .service-card__title {
  max-width: 170px;
  margin: 0;
  color: currentColor;
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: normal;
}
@media (max-width: 768px) {
  .services-section .service-card__title {
    font-size: 1.1875rem;
  }
}
.services-section .service-card__text {
  display: -webkit-box;
  margin: 0 0 22px;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.38;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.services-section .service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  padding: 8px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: currentColor;
  font-size: 0.9375rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.services-section .service-card__button:hover, .services-section .service-card__button:focus-visible {
  background-color: #050505;
  color: #ffffff;
}

/* ==========================================
   VARIÁVEIS ÚTEIS E RESET BÁSICO
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================
   SECÇÃO 1: IMPACTO / ESTATÍSTICAS
   ========================================== */
.impact-section {
  position: relative;
  padding: 100px 0;
  color: #ffffff;
  display: flex;
  align-items: center;
  min-height: 500px; /* Garante altura mínima para ver a imagem */
  box-sizing: border-box;
  /* Imagem de Fundo */
}
.impact-section .cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.impact-section {
  /* Gradiente escuro para o texto ficar legível (estilo da tua imagem) */
}
.impact-section .cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
@media (max-width: 768px) {
  .impact-section .cover-overlay {
    background: rgba(0, 0, 0, 0.7); /* Mais escuro no mobile para ler melhor */
  }
}
.impact-section {
  /* O conteúdo propriamente dito */
}
.impact-section__inner {
  position: relative;
  z-index: 3;
}
.impact-section .impact-content {
  max-width: 600px; /* O texto só ocupa a metade esquerda no PC */
}
@media (max-width: 768px) {
  .impact-section .impact-content {
    max-width: 100%;
  }
}
.impact-section .impact-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .impact-section .impact-content h2 {
    font-size: 2rem;
  }
}
.impact-section .impact-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}
.impact-section {
  /* Grid das Estatísticas */
}
.impact-section .impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}
@media (max-width: 480px) {
  .impact-section .impact-stats {
    grid-template-columns: 1fr; /* Empilha as stats em ecrãs muito pequenos */
    gap: 20px;
  }
}
.impact-section .impact-stats .stat-item {
  display: flex;
  flex-direction: column;
}
.impact-section .impact-stats .stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.impact-section .impact-stats .stat-item .stat-label {
  font-size: 1rem;
  font-weight: 400;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.4); /* A linha que separa o número do texto */
}

/* ==========================================
   SECÇÃO 2: CLIENTES / PARCEIROS
   ========================================== */
.clients-section {
  background-color: #ffffff;
  padding: 80px 0;
  box-sizing: border-box;
}
.clients-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* Muda para empilhado nos telemóveis */
}
@media (max-width: 900px) {
  .clients-section__inner {
    flex-direction: column;
    text-align: center;
  }
}
.clients-section {
  /* Metade do texto */
}
.clients-section .clients-text {
  flex: 1;
  max-width: 50%;
}
@media (max-width: 900px) {
  .clients-section .clients-text {
    max-width: 100%;
  }
}
.clients-section .clients-text p {
  color: #555;
}
.clients-section {
  /* Metade das imagens/logos */
}
.clients-section .clients_logos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Alinha à direita no desktop */
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .clients-section .clients_logos {
    justify-content: center; /* Centra no mobile */
    margin-top: 20px;
  }
}
.clients-section .clients_logos img {
  max-height: 80px; /* Garante que os logos não ficam gigantes */
  width: auto;
  max-width: 100%; /* Proteção para telemóveis */
  object-fit: contain;
  filter: grayscale(10%) contrast(1.1); /* Ligeiro ajuste de cor, opcional */
  transition: 0.3s ease;
}
.clients-section .clients_logos img:hover {
  transform: scale(1.05);
}

.section-wysiwyg {
  background-color: #ffffff;
  padding: 70px 0;
}
@media (max-width: 575px) {
  .section-wysiwyg {
    padding: 50px 0;
  }
}

.gallery-slider {
  width: 100%;
  overflow: hidden;
}
.gallery-slider__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-slider__track::-webkit-scrollbar {
  display: none;
}
.gallery-slider__track {
  padding-left: max(50px, (100vw - 1850px) / 2 + 50px);
  padding-right: max(50px, (100vw - 1850px) / 2 + 50px);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
@media (max-width: 1000px) {
  .gallery-slider__track {
    gap: 20px;
    padding-left: max(40px, (100vw - 1850px) / 2 + 40px);
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .gallery-slider__track {
    gap: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.gallery-slider__slide {
  flex: 0 0 55%;
  max-width: 800px;
  scroll-snap-align: start;
}
@media (max-width: 1000px) {
  .gallery-slider__slide {
    flex: 0 0 75%;
  }
}
@media (max-width: 575px) {
  .gallery-slider__slide {
    flex: 0 0 85%;
  }
}
.gallery-slider__slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .gallery-slider__slide img {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .gallery-slider__slide img {
    height: 280px;
  }
}

.custom-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1000px) {
  .custom-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 575px) {
  .custom-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-span {
  grid-column: 3/11;
}
@media (max-width: 1000px) {
  .grid-span {
    grid-column: 2/6;
  }
}
@media (max-width: 575px) {
  .grid-span {
    grid-column: 1/-1;
  }
}

.mission-vision {
  background-color: #ffffff;
  padding: 80px 0;
}
.mission-vision__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.mission-vision .mv-block h2 {
  font-family: "Bahnschrift", sans-serif;
  color: #1e30b8;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.mission-vision .mv-block p {
  font-family: "Inter", sans-serif;
  color: #393838;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #2b2b2b;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bahnschrift", sans-serif;
  font-weight: 600;
}

.hero-section {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.hero-section .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .bg-container .bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .bg-container .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 43, 0.7);
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.hero-section .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.hero-section .hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.timeline-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.timeline-section .timeline-container {
  position: relative;
  padding-bottom: 30px;
}
.timeline-section .timeline-container .timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #d3d3d3;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-section .timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 40px;
  z-index: 2;
}
.timeline-section .timeline-item .timeline-dot {
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: #2b2b2b;
  border-radius: 50%;
}
.timeline-section .timeline-item .timeline-content {
  padding: 0 40px;
}
.timeline-section .timeline-item .timeline-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #2b2b2b;
}
.timeline-section .timeline-item .timeline-content p {
  color: #555555;
  font-size: 0.95rem;
}
.timeline-section .timeline-item.left {
  text-align: right;
  left: 0;
}
.timeline-section .timeline-item.left .timeline-dot {
  right: -10px;
}
.timeline-section .timeline-item.right {
  text-align: left;
  left: 50%;
}
.timeline-section .timeline-item.right .timeline-dot {
  left: -10px;
}
.timeline-section .timeline-action {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: 20px;
}
.timeline-section .timeline-action .btn-outline {
  font-family: "Bahnschrift", sans-serif;
  background: white;
  border: 1px solid #555555;
  color: #555555;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.timeline-section .timeline-action .btn-outline:hover {
  background: #2b2b2b;
  color: white;
  border-color: #2b2b2b;
}
@media (max-width: 768px) {
  .timeline-section .timeline-container .timeline-line {
    left: 20px;
  }
  .timeline-section .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
  }
  .timeline-section .timeline-item .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }
  .timeline-section .timeline-item .timeline-content {
    padding: 0 0 0 50px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal .glass-modal {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 550px;
  overflow-y: auto;
  position: relative;
  color: #2b2b2b;
  animation: scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal .glass-modal::-webkit-scrollbar {
  width: 6px;
}
.modal .glass-modal::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.modal .glass-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #555;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s;
  text-shadow: none;
}
.modal .glass-modal .close-btn:hover {
  color: #000;
}
.modal .glass-modal .modal-header {
  text-align: center;
  margin-bottom: 25px;
}
.modal .glass-modal .modal-header h2 {
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #000;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.modal .glass-modal .modal-header p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #444;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.modal .glass-modal .glass-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal .glass-modal .glass-form .form-row {
  display: flex;
  gap: 15px;
}
@media (max-width: 480px) {
  .modal .glass-modal .glass-form .form-row {
    flex-direction: column;
  }
}
.modal .glass-modal .glass-form .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.modal .glass-modal .glass-form .form-group label {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.modal .glass-modal .glass-form .form-group input, .modal .glass-modal .glass-form .form-group textarea {
  font-family: "Inter", sans-serif;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  color: #000;
  font-size: 0.95rem;
  text-shadow: none;
  -webkit-text-stroke: 0;
  transition: all 0.3s;
}
.modal .glass-modal .glass-form .form-group input:focus, .modal .glass-modal .glass-form .form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  border-color: #aaa;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.modal .glass-modal .glass-form .form-group .readonly-input {
  background: rgba(0, 0, 0, 0.05);
  color: #666;
  cursor: not-allowed;
  border-style: dashed;
}
.modal .glass-modal .glass-form .btn-submit {
  font-family: "Bahnschrift", sans-serif;
  background: #2b2b2b;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.modal .glass-modal .glass-form .btn-submit:hover {
  background: #000;
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.about-hero-section {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}
.about-hero-section .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-hero-section .bg-container .bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-section .bg-container .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.about-hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero-section .hero-content h1 {
  font-family: "Bahnschrift", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.about-hero-section .hero-content .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.about-hero-section .hero-content .breadcrumb {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.about-info-section {
  background-color: #ffffff;
  padding: 80px 20px;
}
.about-info-section .info-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-info-section .info-container {
    flex-direction: column;
    gap: 40px;
  }
}
.about-info-section .info-container .info-column {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .about-info-section .info-container .info-column {
    padding: 0 10px;
  }
}
.about-info-section .info-container .info-column h2 {
  font-family: "Bahnschrift", sans-serif;
  font-size: 2rem;
  color: #2b2b2b;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.about-info-section .info-container .info-column p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}
.about-info-section .info-container .info-divider {
  width: 1px;
  background-color: #d3d3d3;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .about-info-section .info-container .info-divider {
    width: 100px;
    height: 1px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-timeline .timeline::before {
    left: 20px;
  }
  .service-timeline .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .service-timeline .timeline-item::after {
    left: 11px !important;
    right: auto !important;
  }
  .service-timeline .timeline-item .content {
    margin: 0 !important;
  }
}
.our-values {
  background-color: #3688f3;
  padding: 80px 0;
}
.our-values__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.our-values__title {
  font-family: "Bahnschrift", sans-serif;
  color: #ffffff;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
}
.our-values .values-masonry {
  column-count: 2;
  column-gap: 15px;
}
@media (max-width: 1000px) {
  .our-values .values-masonry {
    column-count: 1;
  }
}

.value-card {
  position: relative;
  background-color: #1e30b8;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  break-inside: avoid;
  cursor: pointer;
}
.value-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.value-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: opacity 0.4s ease;
}
.value-card__content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.value-card h3 {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.value-card__desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.value-card__desc p {
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.value-card:hover .value-card__bg, .value-card:hover .value-card__overlay, .value-card.is-active .value-card__bg, .value-card.is-active .value-card__overlay {
  opacity: 0;
}
.value-card:hover .value-card__desc, .value-card.is-active .value-card__desc {
  max-height: 300px;
  opacity: 1;
  margin-top: 15px;
}

.page-header h1 {
  color: #000000;
}
.page-header .page-header__right p {
  color: #000000;
}
.page-header .breadcrumbs {
  color: #000000;
}
.page-header .breadcrumbs a {
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.page-header .breadcrumbs a:hover {
  opacity: 0.6;
}
.page-header .breadcrumbs .sep {
  margin: 0 10px;
  color: #000000;
}
.page-header .breadcrumbs .current {
  font-weight: 600;
  color: #000000;
}
.page-header--purple h1,
.page-header--purple .page-header__right p,
.page-header--purple .breadcrumbs,
.page-header--purple .breadcrumbs a,
.page-header--purple .breadcrumbs .sep,
.page-header--purple .breadcrumbs .current {
  color: #ffffff !important;
}
.page-header--purple .breadcrumbs a:hover {
  opacity: 0.8;
}

.quote-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}
.quote-section *, .quote-section *:before, .quote-section *:after {
  box-sizing: inherit;
}
.quote-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.quote-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.quote-section__header h2 {
  margin-bottom: 10px;
  color: #111;
}
.quote-section .quote-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 50px;
  width: 100%;
}
@media (max-width: 768px) {
  .quote-section .quote-form {
    padding: 20px; /* Reduz o padding interno no mobile */
  }
}
.quote-section .quote-form .form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .quote-section .quote-form .form-grid-3 {
    grid-template-columns: 1fr; /* Empilha no mobile */
    gap: 15px;
  }
}
.quote-section .quote-form .client-data {
  border-top: 1px solid #eee;
  padding-top: 25px;
}
.quote-section .quote-form .form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.quote-section .quote-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.quote-section .quote-form .form-group input, .quote-section .quote-form .form-group select {
  width: 100%; /* Força a ocupar só o espaço disponível */
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
}
.quote-section .quote-form .form-group input:focus, .quote-section .quote-form .form-group select:focus {
  border-color: #0056b3;
  outline: none;
}
.quote-section .quote-form .form-group .file-input {
  padding: 9px;
}
.quote-section .quote-form .form-group small {
  color: #888;
  font-size: 0.8rem;
  margin-top: 5px;
}
.quote-section .quote-form .action-group {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .quote-section .quote-form .action-group {
    margin-top: 10px; /* Dá espaço ao botão no mobile */
  }
}
.quote-section .quote-form .action-group button {
  width: 100%; /* Botão ocupa tudo no mobile */
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  background: #0056b3;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 769px) {
  .quote-section .quote-form .action-group button {
    width: auto; /* No PC o botão não precisa ser gigante */
    min-width: 200px;
  }
}
.quote-section .quote-form .action-group button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.quote-section .quote-form .action-group button:not(:disabled):hover {
  background: #004494;
}
.quote-section #quote-results {
  width: 100%;
}
.quote-section .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .quote-section .pricing-cards {
    grid-template-columns: 1fr; /* Empilha os cartões */
    gap: 30px; /* Mais espaço entre eles no mobile */
  }
}
.quote-section .price-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  width: 100%;
}
.quote-section .price-card.highlight {
  border: 2px solid #0056b3;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .quote-section .price-card.highlight {
    transform: scale(1); /* Remove o zoom no telemóvel para não vazar a borda */
  }
}
.quote-section .price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffc107;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap; /* Evita quebra de linha no telemóvel */
}
.quote-section .price-card .price-display {
  margin: 20px 0;
}
.quote-section .price-card .price-display .amount {
  font-size: 2.5rem;
  font-weight: 800;
  word-break: break-word; /* Para números muito grandes */
}
.quote-section .price-card .btn-order {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.quote-section .price-card .btn-primary {
  background: #0056b3;
  color: #fff;
  border: none;
}
.quote-section .price-card .btn-primary:hover {
  background: #004494;
}
.quote-section .price-card .btn-outline {
  background: transparent;
  color: #0056b3;
  border: 1px solid #0056b3;
}
.quote-section .price-card .btn-outline:hover {
  background: #f0f8ff;
}

.section-contact {
  background-color: #f8f9fa;
  padding: 80px 0;
  font-family: "Inter", sans-serif;
}
.section-contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  /* Responsividade para Tablets e Telemóveis */
}
@media (max-width: 992px) {
  .section-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.section-contact {
  /* -------------------------------------- */
  /* LADO ESQUERDO (Títulos e Links)        */
  /* -------------------------------------- */
}
.section-contact__left h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}
.section-contact__left .section-contact__text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}
.section-contact__left .section-contact__info {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #0056b3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.section-contact__left .contact-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #888;
  margin-top: 0;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-contact__left .contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-contact__left .contact-links-list .contact-link {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.section-contact__left .contact-links-list .contact-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.section-contact {
  /* -------------------------------------- */
  /* LADO DIREITO & ESTILOS DO FORMULÁRIO   */
  /* -------------------------------------- */
}
.section-contact__right .contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .section-contact__right .contact-form-wrapper {
    padding: 25px;
  }
}
.section-contact__right .contact-form-wrapper {
  /* --- INÍCIO DOS ESTILOS DO CONTACT FORM 7 --- */
}
.section-contact__right .contact-form-wrapper .wpcf7 {
  /* Grelha interna do formulário (ex: Nome e Email lado a lado) */
}
.section-contact__right .contact-form-wrapper .wpcf7 .custom-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-contact__right .contact-form-wrapper .wpcf7 .custom-form-grid {
    grid-template-columns: 1fr;
  }
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group {
  /* Campos de Input */
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=text],
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=email],
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=tel],
.section-contact__right .contact-form-wrapper .wpcf7 .form-group select,
.section-contact__right .contact-form-wrapper .wpcf7 .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  background-color: #fff;
  box-sizing: border-box;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=text]:focus,
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=email]:focus,
.section-contact__right .contact-form-wrapper .wpcf7 .form-group input[type=tel]:focus,
.section-contact__right .contact-form-wrapper .wpcf7 .form-group select:focus,
.section-contact__right .contact-form-wrapper .wpcf7 .form-group textarea:focus {
  border-color: #0056b3;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.section-contact__right .contact-form-wrapper .wpcf7 {
  /* Botão de Enviar */
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-action, .section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-submit {
  text-align: right;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-action input[type=submit], .section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-submit input[type=submit] {
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #0056b3;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-action input[type=submit]:hover, .section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-submit input[type=submit]:hover {
  background: #004494;
}
.section-contact__right .contact-form-wrapper .wpcf7 .form-action input[type=submit]:active, .section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-submit input[type=submit]:active {
  transform: scale(0.98);
}
.section-contact__right .contact-form-wrapper .wpcf7 {
  /* Mensagens de Erro/Sucesso */
}
.section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc3545;
  margin-top: 5px;
  font-weight: 500;
}
.section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-response-output {
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
  border: none !important;
  font-size: 0.95rem;
  text-align: center;
}
.section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
}
.section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #f8d7da;
  color: #721c24;
}
.section-contact__right .contact-form-wrapper .wpcf7 .wpcf7-spinner {
  display: none;
}
.section-contact__right .contact-form-wrapper {
  /* --- FIM DOS ESTILOS DO CONTACT FORM 7 --- */
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid #ffffff;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}
.btn:hover {
  background: #ffffff;
  color: #000000;
}

/*# sourceMappingURL=style.css.map */
