/* ================================================================
   POWER CLEAN RAINHA
   Desenvolvido de raiz — todos os direitos reservados
================================================================ */

/* ----------------------------------------------------------------
   VARIÁVEIS DE DESIGN
---------------------------------------------------------------- */
:root {
  --fonte-corpo: "Roboto", system-ui, Arial, sans-serif;
  --fonte-titulo: "Raleway", sans-serif;
  --fonte-menu: "Ubuntu", sans-serif;

  --cor-fundo: #ffffff;
  --cor-texto: #444444;
  --cor-titulo: #5f687b;
  --cor-destaque: #1662a5;
  --cor-destaque-fundo: rgba(6, 31, 62, 1);
  --cor-superficie: #ffffff;
  --cor-contraste: #ffffff;

  --menu-link: #5f687b;
  --menu-link2: #ffff;
  --menu-link-hover: #d9b36a;
  --menu-text-item: #fef1cc;
  --menu-mobile-fundo: rgba(6, 31, 62, 1);
  --menu-dropdown-fundo: #ffffff;
  --menu-dropdown-link: #5f687b;
  --menu-dropdown-hover: #d9b36a;

  --deep-navy: #061f3e;
  --mid-navy: #16223f;
  --light-navy: #30455f;
  --gold: #fef1cc;
  --gold-dim: #c4bfa9;
  --gold-dark: #a89e82;
  --white: #ffffff;
  --wpp-green: #46cc6b;

  scroll-behavior: smooth;
}

.fundo-claro {
  --cor-fundo: #f9f9f9;
  --cor-superficie: #ffffff;
}

.fundo-escuro {
  --cor-fundo: #060606;
  --cor-texto: #ffffff;
  --cor-titulo: #ffffff;
  --cor-superficie: #252525;
  --cor-contraste: #ffffff;
}

/* ----------------------------------------------------------------
   BASE
---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--fonte-corpo);
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  line-height: 1.6;
}

a {
  color: var(--cor-destaque);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--cor-destaque), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fonte-titulo);
  color: var(--cor-titulo);
  line-height: 1.3;
}

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

/* ----------------------------------------------------------------
   FORMULÁRIO — estados
---------------------------------------------------------------- */
.formulario-contacto .msg-erro {
  display: none;
  background: #df1529;
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 4px;
}
.formulario-contacto .msg-sucesso {
  display: none;
  background: #059652;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 4px;
}
.formulario-contacto .a-carregar {
  display: none;
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
  background: var(--cor-superficie);
}
.formulario-contacto .a-carregar::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 8px -5px 0;
  border: 3px solid var(--cor-destaque);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------------
   CABEÇALHO
---------------------------------------------------------------- */
.biglogo {
  position: fixed;
  top: 10px;
  left: 55px;
  z-index: 9999;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.biglogo a {
  display: block;
  width: 120px;
  height: auto;
}

#header,
.topo {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--cor-texto);
  padding: 5px 0;
  z-index: 997;
  transition:
    box-shadow 0.4s,
    background-color 0.4s;
  overflow: visible;
}

/* Quando o header está sobre o hero, deve flutuar transparente */
.pagina-inicial #header,
.pagina-inicial .topo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(6, 31, 62, 0.9) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Ao fazer scroll, adiciona fundo sólido */
.pagina-inicial.scrolled #header,
.pagina-inicial.scrolled .topo {
  background-color: rgba(6, 31, 62, 1) !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
}

body.scrolled .topo {
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
}

.marca {
  line-height: 1;
  width: 160px;
  flex-shrink: 0;
  position: relative;
}
.marca img {
  max-height: 95px;
  width: auto;
  position: relative;
  top: 0;
  left: 0;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  z-index: 1000;
  transition: transform 0.3s ease;
}
.marca img:hover {
  transform: scale(1.04);
}
.marca h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: var(--cor-titulo);
}

/* Botão WhatsApp */
.btn-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cor-contraste);
  background: linear-gradient(135deg, #25d366 0%, #128c50 100%);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 28px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.3s;
}
.btn-whatsapp::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.5s;
}
.btn-whatsapp:hover::before {
  transform: translateX(120%);
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(37, 211, 102, 0.15),
    0 8px 28px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp:active {
  transform: scale(0.97);
}
.btn-whatsapp i {
  font-size: 20px;
  animation: balanco 3.5s ease-in-out infinite;
}
.btn-whatsapp::after {
  content: "";
  position: relative;
  inset: 0;
  border-radius: 50px;
  animation: anel-pulso 2.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes balanco {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(-15deg) scale(1.15);
  }
  20% {
    transform: rotate(12deg) scale(1.1);
  }
  30% {
    transform: rotate(-8deg) scale(1.05);
  }
  40% {
    transform: rotate(5deg) scale(1);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
}
@keyframes anel-pulso {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1200px) {
  .marca {
    order: 1;
    width: 120px;
  }

  .btn-whatsapp {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
  .navmenu {
    order: 3;
  }
}

/* ----------------------------------------------------------------
   NAVEGAÇÃO — Desktop
---------------------------------------------------------------- */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    flex: 1;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--menu-link2);
    padding: 18px 15px;
    font-size: 20px;
    font-family: var(--fonte-menu);
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: color 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a,
  .navmenu a.ativo {
    color: var(--menu-link-hover);
  }
}

/* Navegação — Mobile */
@media (max-width: 1200px) {
  .mobile-nav-toggle {
    color: var(--menu-link2);
    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;
    height: 50dvh;
    list-style: none;
    position: fixed;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--menu-mobile-fundo);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

}

/* ----------------------------------------------------------------
   PRELOADER
---------------------------------------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--cor-fundo);
  transition: opacity 0.5s;
}
#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 28px);
  left: calc(50% - 28px);
  width: 56px;
  height: 56px;
  border: 5px solid transparent;
  border-top-color: var(--cor-destaque);
  border-bottom-color: var(--cor-destaque);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

/* ----------------------------------------------------------------
   BOTÃO VOLTAR AO TOPO
---------------------------------------------------------------- */
.btn-topo {
  position: fixed;
  right: 15px;
  bottom: -15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--cor-destaque);
  color: var(--cor-contraste);
  font-size: 22px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.btn-topo:hover {
  background-color: color-mix(in srgb, var(--cor-destaque), transparent 20%);
  color: #fff;
}
.btn-topo.active {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}

/* ----------------------------------------------------------------
   AOS — sem delay em mobile
---------------------------------------------------------------- */
@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* ----------------------------------------------------------------
   SECÇÕES — base

---------------------------------------------------------------- */
section,
.sec-hero,
.sec-sobre,
.sec-numeros,
.sec-servicos,
.sec-testemunhos,
.sec-contacto {
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: visible;
}

@media (max-width: 1199px) {
  section,
  .sec-hero,
  .sec-sobre,
  .sec-numeros,
  .sec-servicos,
  .sec-testemunhos,
  .sec-contacto {
    scroll-margin-top: 66px;
  }
}

/* FIX: scroll-margin-top explícito para a secção de contacto */
.sec-contacto {
  scroll-margin-top: 80px;
}

/* ----------------------------------------------------------------
   TÍTULO DE SECÇÃO
---------------------------------------------------------------- */
.titulo-secao {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}
.titulo-secao h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.titulo-secao span {
  position: relative;
  top: 4px;
  left: 0;
  right: 0;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cor-titulo), transparent 95%);
  z-index: 1;
  line-height: 1;
}
.titulo-secao p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .titulo-secao h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .titulo-secao span {
    font-size: 38px;
  }
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.sec-hero {
  width: 100%;
  min-height: 100dvh;
  padding: 120px 0 60px;
  display: flex;
  align-items: center;
  background-image: url("../img/sofa.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark overlay to ensure text readability over the background photo */
.sec-hero::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 31, 62, 0.75) 0%,
    rgba(6, 31, 62, 0.45) 60%,
    rgba(6, 31, 62, 0.15) 100%
  );
  z-index: 0;
}

/* Ensure hero content sits above the overlay */
.sec-hero .container {
  position: relative;
  z-index: 1;
}

/* Override text colours inside the hero so they're readable on dark overlay */
.sec-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fef1cc;
}
.sec-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  margin: 0 0 30px;
}

.btn-principal {
  color: var(--cor-destaque);
  background: linear-gradient(135deg, #d9b36a 0%, #f0d080 45%, #c49a45 100%);
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow:
    0 4px 18px rgba(217, 179, 106, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-principal::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.5s;
}

.btn-principal:hover::before {
  transform: translateX(120%);
}

.btn-principal:hover {
  color: var(--cor-destaque);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px rgba(217, 179, 106, 0.2),
    0 8px 28px rgba(217, 179, 106, 0.55);
}

.btn-principal:active {
  transform: scale(0.97) translateY(0);
}

@media (max-width: 640px) {
  .btn-principal {
    font-size: 13px;
    padding: 10px 22px;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 370px) {
  .btn-whatsapp {
    font-size: 0.8rem;
    padding: 3px 8px;
    margin: 0 5px 0 0;
  }
  .btn-principal {
    white-space: normal;
  }
}

.hero-glass {
  position: relative;
  padding: 36px 40px 40px;
  border-radius: 16px;
  margin-top: 20%;
  background: linear-gradient(
    135deg,
    rgba(6, 31, 62, 0.72) 0%,
    rgba(22, 98, 165, 0.45) 60%,
    rgba(217, 179, 106, 0.18) 100%
  );
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 40px rgba(6, 31, 62, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(22, 98, 165, 0.25);
  overflow: hidden;

  /* transição */
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.hero-glass.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-glass:hover {
  box-shadow:
    0 12px 50px rgba(6, 31, 62, 0.55),
    0 0 0 1px rgba(217, 179, 106, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------------------
   HERO — Animação de troca de palavra (CSS puro)
---------------------------------------------------------------- */
.hero-palavra-animada {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.hero-palavra {
  display: inline-block;
  color: var(--menu-link-hover);
  white-space: nowrap;
  opacity: 0;
  animation: troca-palavra 6s ease-in-out infinite;
}

.hero-palavra:nth-child(1) {
  animation-delay: 0s;
}

.hero-palavra:nth-child(2) {
  position: absolute;
  left: 0;
  animation-delay: 2s;
}

.hero-palavra:nth-child(3) {
  position: absolute;
  left: 0;
  animation-delay: 4s;
}

@keyframes troca-palavra {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  6% {
    opacity: 1;
    transform: translateY(0);
  }
  28% {
    opacity: 1;
    transform: translateY(0);
  }
  34% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@media (max-width: 1200px) {
  .sec-hero h1 {
    font-size: 2.4rem;
  }
  .hero-palavra:nth-child(2),
  .hero-palavra:nth-child(3) {
    position: absolute;
  }
}
@media (max-width: 470px) {
  .sec-hero h1 {
    font-size: 2rem;
  }
  .sec-hero p {
    font-size: 1rem;
  }
  .hero-palavra:nth-child(2),
  .hero-palavra:nth-child(3) {
    position: absolute;
  }
}
@media (max-width: 410px) {
  .sec-hero h1 {
    font-size: 1.5rem;
  }
  .sec-hero p {
    font-size: 1rem;
  }
  .hero-palavra:nth-child(2),
  .hero-palavra:nth-child(3) {
    position: absolute;
  }
}

/* ----------------------------------------------------------------
   SOBRE NÓS / SECTION — About + Counter + Business Hours
---------------------------------------------------------------- */

.ftco-section {
  margin-top: 2.5%;
  padding: 7em 0;
  position: relative;
}
.ftco-no-pt {
  padding-top: 0 !important;
}
.ftco-no-pb {
  padding-bottom: 0 !important;
}

.ftco-section .img {
  min-height: 600px;
  background-image: url("../img/abouthero.jpg");
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-left: 30px !important;
}

/* ----------------------------------------------------------------
   BUSINESS HOURS CARD
---------------------------------------------------------------- */
.time-open-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: rgba(6, 31, 62, 0.8);
  box-shadow: 0px 16px 48px -8px rgba(0, 0, 0, 0.45);
  width: 270px;
  align-self: center;
}

.time-open-wrap .desc {
  width: 100%;
}

.time-open-wrap .desc h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--menu-text-item);
  line-height: 1.4;
}

.time-open-wrap .opening-hours h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--menu-link-hover);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.time-open-wrap .opening-hours p {
  margin-bottom: 10px;
}

.time-open-wrap .opening-hours p span {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.time-open-wrap .opening-hours p span strong {
  font-weight: 600;
  color: #ffffff;
}

.time-open-wrap .desc.bg-secondary {
  background: var(--menu-text-item) !important;
}

.time-open-wrap .desc.bg-secondary .heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  display: block;
  margin-bottom: 6px;
}

.time-open-wrap .desc.bg-secondary .phone {
  font-size: 19px;
  font-weight: 700;
  color: var(--cor-destaque);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.time-open-wrap .desc.bg-secondary .phone:hover {
  opacity: 0.75;
}

.time-open-wrap .desc.bg-secondary .phone i {
  font-size: 18px;
}

/* ----------------------------------------------------------------
   HEADING SECTION
---------------------------------------------------------------- */
.heading-section .subheading {
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: var(--cor-destaque);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.heading-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--cor-titulo);
  line-height: 1.3;
}

.heading-section p {
  color: var(--cor-texto);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.heading-section p strong {
  color: var(--cor-destaque);
  font-weight: 700;
}

@media (max-width: 767px) {
  .ftco-section .img {
    min-height: 380px;
    padding-left: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .time-open-wrap {
    width: 88%;
  }

  .heading-section h2 {
    font-size: 24px;
  }

  .ftco-section {
    margin-top: 0;
  }
}

@media (max-width: 400px) {
  .time-open-wrap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .ftco-section .img {
    min-height: 300px;
  }

  .time-open-wrap {
    width: 90%;
    margin: 0 auto;
  }

  .heading-section h2 {
    font-size: 26px;
  }

  .ftco-counter {
    margin-left: 0;
    margin-right: 0;
  }

  .ftco-counter .text .number {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .time-open-wrap {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
   Secção Porquê Escolher
---------------------------------------------------------------- */
/* ── Secção Porquê Escolher ── */
      .sec-porque {
        background: linear-gradient(
          160deg,
          #061f3e 0%,
          #0d2d56 55%,
          #16223f 100%
        );
        padding: 80px 0;
        position: relative;
        overflow: hidden;
      }
      .sec-porque::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(
          -45deg,
          transparent,
          transparent 60px,
          rgba(217, 179, 106, 0.025) 60px,
          rgba(217, 179, 106, 0.025) 61px
        );
        pointer-events: none;
      }
      .sec-porque::after {
        content: "";
        position: absolute;
        width: 440px;
        height: 440px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(217, 179, 106, 0.07) 0%,
          transparent 65%
        );
        top: -80px;
        right: -80px;
        pointer-events: none;
      }
      .porque-inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
      }
      .porque-lista-wrap .porque-titulo {
        font-family: var(--fonte-titulo);
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 32px;
        line-height: 1.25;
      }
      .porque-titulo span {
        color: var(--menu-link-hover);
      }
      .porque-lista {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .porque-lista li {
        display: flex;
        align-items: center;
        gap: 14px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 14px 18px;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.3s;
      }
      .porque-lista li:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(217, 179, 106, 0.3);
        transform: translateX(5px);
      }
      .porque-lista li .check-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--menu-link-hover), #c49a45);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 16px;
        color: #061f3e;
        box-shadow: 0 3px 12px rgba(217, 179, 106, 0.35);
      }
      .porque-lista li span {
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.88);
        font-family: var(--fonte-titulo);
      }
      .porque-cta-card {
        background: rgba(217, 179, 106, 0.06);
        border: 1px solid rgba(217, 179, 106, 0.18);
        border-radius: 20px;
        padding: 44px 36px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .porque-cta-card::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(217, 179, 106, 0.09) 0%,
          transparent 70%
        );
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
      }
      .porque-cta-icon {
        font-size: 48px;
        display: block;
        margin-bottom: 20px;
        color: var(--menu-link-hover);
        position: relative;
        z-index: 1;
        animation: balanco 3.5s ease-in-out infinite;
      }
      .porque-cta-card h3 {
        font-family: var(--fonte-titulo);
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
        line-height: 1.3;
      }
      .porque-cta-card h3 span {
        color: var(--menu-link-hover);
      }
      .porque-cta-card p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.8;
        margin-bottom: 32px;
        position: relative;
        z-index: 1;
      }
      .porque-cta-btns {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        z-index: 1;
      }
      .porque-btn-wpp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #b8882a 0%, #f0d080 40%, #d9b36a 60%, #7a5510 100%);
        color: #061f3e;
        font-family: var(--fonte-titulo);
        font-size: 15px;
        font-weight: 700;
        padding: 14px 32px;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(217, 179, 106, 0.5);
        transition:
          transform 0.2s,
          box-shadow 0.3s;
        letter-spacing: .4px;
      }
      .porque-btn-wpp:hover {
        color: #061f3e;
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 36px rgba(217, 179, 106, 0.7);
      }
      .porque-btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: transparent;
        color: var(--menu-link-hover);
        font-family: var(--fonte-titulo);
        font-size: 14px;
        font-weight: 700;
        padding: 12px 28px;
        border-radius: 50px;
        border: 2px solid rgba(217, 179, 106, 0.4);
        text-decoration: none;
        transition:
          border-color 0.25s,
          background 0.25s;
      }
      .porque-btn-outline:hover {
        border-color: var(--menu-link-hover);
        background: rgba(217, 179, 106, 0.1);
        color: var(--menu-link-hover);
      }
      @media (max-width: 991px) {
        .porque-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .sec-porque {
          padding: 70px 0;
        }
      }
      @media (max-width: 575px) {
        .porque-cta-card {
          padding: 32px 22px;
        }
      }
/* ----------------------------------------------------------------
   NÚMEROS / ESTATÍSTICAS
---------------------------------------------------------------- */
.sec-numeros {
  padding-top: 0;
}
.numero-item {
  padding: 30px;
}
.numero-item span {
  font-size: 48px;
  font-weight: 700;
  display: block;
  color: var(--cor-destaque);
}
.numero-item p {
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: color-mix(in srgb, var(--cor-texto), transparent 40%);
}

/* ----------------------------------------------------------------
   SECÇÃO BASE — SERVIÇOS
---------------------------------------------------------------- */
.sec-servicos-det {
  background-color: #f4f6f9;
  padding: 80px 0 0;
  position: relative;
}

.sec-servicos-det::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cor-destaque),
    var(--menu-link-hover),
    var(--cor-destaque)
  );
}

/* ----------------------------------------------------------------
   CARD DE SERVIÇO
---------------------------------------------------------------- */
.svc-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(22, 98, 165, 0.15);
}

.svc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.svc-card:hover .svc-img-wrap img {
  transform: scale(1.07);
}

.svc-img-wrap::after {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(6, 31, 62, 0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.svc-card:hover .svc-img-wrap::after {
  opacity: 1;
}

.svc-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--menu-link-hover);
  color: var(--cor-destaque);
  font-family: var(--fonte-titulo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.svc-body {
  padding: 28px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cor-destaque) 0%, #2277c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(22, 98, 165, 0.3);
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon {
  transform: rotate(-6deg) scale(1.1);
}

.svc-icon i {
  color: #ffffff;
  font-size: 22px;
}

.svc-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cor-titulo);
  margin: 0 0 10px;
  transition: color 0.3s;
}

.svc-card:hover .svc-body h3 {
  color: var(--cor-destaque);
}

.svc-body p {
  font-size: 16px;
  color: var(--cor-texto);
  line-height: 1.75;
  margin: 0 0 auto;
  padding-bottom: 20px;
}

/* ----------------------------------------------------------------
   BOTÕES DOS CARDS
---------------------------------------------------------------- */
.svc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

.svc-btn-outline {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--fonte-titulo);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 2px solid var(--cor-destaque);
  color: var(--cor-destaque);
  background: transparent;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}

.svc-btn-outline:hover {
  background: var(--cor-destaque);
  color: #ffffff;
  border-color: var(--cor-destaque);
}

.svc-btn-solid {
  flex: 1;
  min-width: 110px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--fonte-titulo);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 9px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d9b36a 0%, #f0d080 50%, #c49a45 100%);
  color: var(--cor-destaque);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 3px 12px rgba(217, 179, 106, 0.4);
  white-space: nowrap;
}

.svc-btn-solid::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.4s;
}

.svc-btn-solid:hover::before {
  transform: translateX(120%);
}

.svc-btn-solid:hover {
  color: var(--cor-destaque);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 179, 106, 0.55);
}

@media (max-width: 767px) {
  .svc-btn-outline,
  .svc-btn-solid {
    font-size: 14px;
  }
}

/* ----------------------------------------------------------------
   CTA GERAL — barra de orçamento
---------------------------------------------------------------- */
.svc-cta-wrap {
  margin-top: 70px;
  background: linear-gradient(
    135deg,
    rgba(6, 31, 62, 1) 0%,
    rgba(22, 98, 165, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.svc-cta-wrap::before {
  content: "";
  position: relative;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(217, 179, 106, 0.08);
  pointer-events: none;
}

.svc-cta-wrap::after {
  content: "";
  position: relative;
  bottom: -80px;
  left: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(217, 179, 106, 0.06);
  pointer-events: none;
}

.svc-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.svc-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-cta-icon {
  font-size: 42px;
  color: var(--menu-link-hover);
  flex-shrink: 0;
  animation: brilho-estrela 3s ease-in-out infinite;
}

@keyframes brilho-estrela {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.1) rotate(10deg);
  }
}

.svc-cta-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  font-family: var(--fonte-titulo);
}

.svc-cta-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fonte-titulo);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #25d366 0%, #128c50 100%);
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.3s;
}

.svc-cta-btn::before {
  content: "";
  position: relative;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  transition: transform 0.5s;
}

.svc-cta-btn:hover::before {
  transform: translateX(120%);
}

.svc-cta-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.svc-cta-btn i {
  font-size: 20px;
  animation: balanco 3.5s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   BOTÃO ORÇAMENTO
---------------------------------------------------------------- */
.btn-orcamento {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(
    135deg,
    rgba(6, 31, 62, 1) 0%,
    rgba(22, 98, 165, 0.9) 100%
  );
  color: #ffffff;
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(6, 31, 62, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.3s;
}
.btn-orcamento:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 179, 106, 0.5);
}
.btn-orcamento i {
  font-size: 18px;
}

@media (max-width: 991px) {
  .svc-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .svc-cta-left {
    flex-direction: column;
    gap: 12px;
  }

  .svc-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .sec-servicos-det {
    padding: 60px 0 0;
  }

  .svc-img-wrap {
    height: 180px;
  }

  .svc-body {
    padding: 22px 18px 18px;
  }

  .svc-body h3 {
    font-size: 20px;
  }

  .svc-actions {
    flex-direction: column;
  }

  .svc-btn-outline,
  .svc-btn-solid {
    min-width: unset;
    width: 100%;
  }

  .svc-cta-left h3 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .svc-cta-inner {
    padding: 32px 20px;
  }
}

/* ============================================
   SECTION: CONTENT (Impermeabilização)
   ============================================ */

.sec-content {
  position: relative;
  background-color: var(--mid-navy);
  overflow: hidden;
  padding: 6rem 0;
}

.sec-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(254, 241, 204, 0.025) 60px,
    rgba(254, 241, 204, 0.025) 61px
  );
  pointer-events: none;
  z-index: 0;
}

.sec-content::after {
  content: "";
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(217, 179, 106, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.sec-content .container {
  position: relative;
  z-index: 1;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.content-heading {
  font-family: var(--fonte-titulo);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
  margin: 0;
}

.content-heading span {
  color: var(--menu-link-hover);
}

.content-divider {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--menu-link-hover), transparent);
  border: none;
  margin: 0;
}

.content-body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin: 0;
}

.content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.content-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(254, 241, 204, 0.08);
  border: 1px solid rgba(254, 241, 204, 0.2);
  border-radius: 2rem;
  padding: 0.3rem 0.9rem;
  white-space: nowrap;
  transition:
    background 0.25s,
    border-color 0.25s;
}

.content-badge:hover {
  background: rgba(254, 241, 204, 0.16);
  border-color: rgba(254, 241, 204, 0.4);
}

.content-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-navy);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  border-radius: 0.4rem;
  padding: 0.85rem 1.8rem;
  align-self: flex-start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  box-shadow: 0 4px 20px rgba(254, 241, 204, 0.2);
}

.content-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254, 241, 204, 0.35);
  filter: brightness(1.06);
  color: var(--deep-navy);
  text-decoration: none;
}

.content-cta i {
  font-size: 1.1rem;
}

.content-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image-wrap::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 106, 0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}

.content-image-wrap::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 1px solid rgba(217, 179, 106, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

.content-image {
  position: relative;
  z-index: 1;
  max-height: 22rem;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(217, 179, 106, 0.25));
  transition: transform 0.4s ease;
}

.content-image:hover {
  transform: scale(1.04) translateY(-4px);
}

/* ----------------------------------------------------------------
   TESTEMUNHOS
---------------------------------------------------------------- */
.cartao-testemunho {
  box-sizing: content-box;
  min-height: 300px;
}
.cartao-testemunho p {
  font-style: italic;
  margin: 0 15px;
  padding: 20px 20px 60px;
  background: color-mix(in srgb, var(--cor-texto), transparent 97%);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.icone-aspas-esq,
.icone-aspas-dir {
  color: color-mix(in srgb, var(--cor-destaque), transparent 50%);
  font-size: 26px;
  line-height: 0;
}
.icone-aspas-esq { display: inline-block; position: relative; left: -4px; }
.icone-aspas-dir { display: inline-block; position: relative; right: -4px; top: 10px; transform: scale(-1,-1); }

.foto-cliente {
  width: 44px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--menu-link-hover);
}
.cartao-testemunho h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 4px 46px;
}
.cartao-testemunho h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 0 46px;
  color: color-mix(in srgb, var(--cor-texto), transparent 25%);
}
.cartao-testemunho a {
  font-size: 14px;
  color: color-mix(in srgb, var(--cor-texto), transparent 25%);
}
.cartao-testemunho a:hover{
  font-size: 14px;
  color: color-mix(in srgb, var(--menu-dropdown-hover), transparent 25%);
}

.sec-testemunhos .swiper-wrapper { height: auto; }
.sec-testemunhos .swiper-pagination { margin-top: 24px; position: relative; }
.sec-testemunhos .swiper-pagination-bullet {
  width: 12px; height: 12px;
  background-color: var(--cor-fundo);
  opacity: 1;
  border: 1px solid var(--cor-destaque);
}
.sec-testemunhos .swiper-pagination-bullet-active { background-color: var(--cor-destaque); }


/* ----------------------------------------------------------------
   CONTACTO
---------------------------------------------------------------- */
.sec-contacto .info-wrap {
  background-color: var(--cor-superficie);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .sec-contacto .info-wrap {
    padding: 20px;
  }
}

.sec-contacto .info-item {
  margin-bottom: 40px;
}

.sec-contacto .info-item i {
  font-size: 20px;
  color: var(--cor-destaque);
  background: color-mix(in srgb, var(--cor-destaque), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.sec-contacto .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.sec-contacto .info-item:hover i {
  background: var(--cor-destaque);
  color: var(--menu-link-hover);
}

@media (max-width: 575px) {
  .caixa-info {
    padding: 20px;
  }
}

.linha-info {
  margin-bottom: 32px;
}
.linha-info i {
  font-size: 20px;
  color: var(--cor-destaque);
  background: color-mix(in srgb, var(--cor-destaque), transparent 92%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
  transition: all 0.3s;
}
.linha-info:hover i {
  background: var(--cor-destaque);
  color: var(--cor-contraste);
}
.linha-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}
.linha-info p {
  font-size: 14px;
  margin: 0;
}

.formulario-contacto {
  background-color: var(--cor-superficie);
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}
@media (max-width: 575px) {
  .formulario-contacto {
    padding: 20px;
  }
}

.formulario-contacto input[type="text"],
.formulario-contacto input[type="email"],
.formulario-contacto textarea {
  font-size: 14px;
  padding: 10px 14px;
  box-shadow: none;
  border-radius: 4px;
  color: var(--cor-texto);
  background-color: var(--cor-superficie);
  border: 1px solid color-mix(in srgb, var(--cor-texto), transparent 75%);
  width: 100%;
}
.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
  outline: none;
  border-color: var(--cor-destaque);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cor-destaque), transparent 85%);
}
.formulario-contacto input::placeholder,
.formulario-contacto textarea::placeholder {
  color: color-mix(in srgb, var(--cor-texto), transparent 60%);
}
.formulario-contacto button[type="submit"] {
  color: var(--cor-contraste);
  background: var(--cor-destaque);
  border: 0;
  padding: 11px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.formulario-contacto button[type="submit"]:hover {
  background: color-mix(in srgb, var(--cor-destaque), transparent 20%);
}

/* ----------------------------------------------------------------
   RODAPÉ
---------------------------------------------------------------- */
.rodape {
  background-color: var(--cor-destaque-fundo);
  color: var(--cor-fundo);
  font-size: 14px;
}
.rodape-topo {
  padding-top: 50px;
  padding-bottom: 30px;
}

.rodape-links h4,
.rodape h4 {
  color: var(--menu-text-item);
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.rodape-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rodape-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.rodape-links ul li:first-child {
  padding-top: 0;
}
.rodape-links ul i {
  font-size: 12px;
  color: var(--menu-link-hover);
  margin-right: 6px;
}
.rodape-links ul a {
  color: color-mix(in srgb, var(--cor-fundo), transparent 20%);
  line-height: 1;
}
.rodape-links ul a:hover {
  color: var(--menu-link-hover);
}

.rodape-contactos p {
  margin-bottom: 4px;
}

.redes-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--cor-fundo), transparent 55%);
  font-size: 16px;
  color: color-mix(in srgb, var(--menu-link-hover), transparent 10%);
  margin-right: 8px;
  transition: all 0.3s;
}
.redes-sociais a:hover {
  color: var(--cor-destaque);
  border-color: var(--menu-link-hover);
  background-color: var(--menu-link-hover);
}

.rodape-direitos {
  padding: 20px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--menu-text-item), transparent 50%);
}
.rodape-direitos p {
  margin: 0;
}

/* ----------------------------------------------------------------
   Agendar Modal
---------------------------------------------------------------- */

 @keyframes modalIn {
    from { opacity:0; transform:scale(.93) translateY(20px); }
    to   { opacity:1; transform:scale(1)   translateY(0); }
  }
