:root {
  --primary: #0073C0;
  /* Azul Oceano Vivo */
  --accent: #29A9E0;
  /* Azul Celeste Intenso */
  --accent-light: #ABE1FA;
  /* Ciano Claro / Turquesa */
  --dark: #1A1A1A;
  /* Grafite / Preto Quase Puro */
  --light: #F8FAFC;
  /* Fundo Claro */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── ACTIVE NAV ── */
.active-nav-link {
  color: var(--accent) !important;
  font-weight: 700;
}


/* ── TYPOGRAPHY ── */

/* CURRENT TYPOGRAPHY (Playfair Display + Montserrat + Inter - Official Guidelines) */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1E293B;
}

h1,
h2 {
  font-family: 'Playfair Display', Georgia, serif;
}

h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

h2,
h3 {
  color: var(--dark);
}

h4,
p {
  color: black;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 2rem;
}

/* Header & Nav Prototype Styling */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

/* Páginas internas: mantém o mesmo estilo do Home,
   mas com borda e fumaça azuis + textos visíveis */
.header--solid .nav {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(41, 169, 224, 0.1);
}

/* Links do menu — azul escuro (legível sobre fundo claro) */
.header--solid .nav-menu a {
  color: var(--primary);
  text-shadow: none;
}

.header--solid .nav-menu a:hover {
  color: var(--primary);
  background: rgba(41, 169, 224, 0.15);
}

/* Ícones sociais */
.header--solid .social-links a {
  color: var(--primary);
  text-shadow: none;
}

.header--solid .social-links a:hover {
  color: var(--primary);
}

/* Separador e botões PT / EN */
.header--solid .lang-switcher {
  color: var(--primary);
}

.header--solid .lang-btn {
  color: var(--primary);
}

.header--solid .lang-btn:hover {
  color: var(--accent);
  background: rgba(41, 169, 224, 0.15);
}

.header--solid .lang-btn.active {
  color: var(--accent);
  background-color: rgba(41, 169, 224, 0.15);
}

/* Hambúrguer (mobile) */
.header--solid .bar {
  background-color: var(--primary);
}


.top-bar {
  background: transparent;
  color: white;
  width: fit-content;
  margin: 0.6rem auto 0;
  padding: 0.2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.social-links a {
  color: white;
  transition: opacity 0.2s, transform 0.2s;
  font-size: 1.05rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-container-wrapper {
  max-width: 1320px;
  margin: 0.5rem auto 0;
  padding: 0 1.5rem;
}

.nav {
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 0.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.50);
  border: 1px solid var(--light);
}

.logo {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
  height: auto;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-menu a:hover {
  color: var(--accent-light);
}

.nav-menu a.active-nav-link {
  color: var(--accent) !important;
  font-weight: 400;
  font-size: 17px !important;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid var(--accent-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-cta {
  display: none;
  /* In prototype nav, menu is clean without extra button */
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}

/* Buttons */
.btn {
  padding: .7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
  background: #0B2027;
  color: white;
}

.btn--primary:hover {
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(46, 196, 182, 0.3);
  transform: translateY(-2px);
}

.btn--white {
  background: white;
  color: var(--primary);
}

.btn--white:hover {
  background: #0B2027;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  background: linear-gradient(rgba(227, 231, 231, 0.15), rgba(63, 63, 65, 0.1)), url("../imagens/hero/hero.webp");
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;

}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  header.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(8, 24, 54, 0.06);
  }

  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: justify;
}

.highlight {
  color: var(--accent);
}

.stats div {
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}

/* Utility helpers used to replace inline styles */
.section-header-left {
  text-align: left;
  margin: 0 0 2rem 0;
}

.icon-lg {
  font-size: 2.5rem;
  color: var(--primary);
}

.pt-200 {
  padding-top: 200px;
}

.icon-lg-accent {
  font-size: 2.5rem;
  color: var(--accent);
}

.sobre-destaque {
  margin-bottom: 4rem;
}

.stats span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.stats div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── SOBRE SECTION ── */
.sobre-section {
  padding: 4rem 0;
  background: white;
}

.sobre-destaque {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10rem 0 3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.sobre-text.container-left {
  flex: 1;
}

.sobre-destaque h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.sobre-destaque p {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #3a3a3a;
  text-align: justify;
}

.sobre-img {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.sobre-img-mobile {
  display: none;
}

@media (max-width: 992px) {
  .sobre-destaque {
    flex-direction: column;
    align-items: stretch;
  }

  .sobre-img-mobile {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }

  .sobre-img-mobile img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
  }

  .sobre-img {
    display: none;
  }
}

.about-info-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 16px;
}

.stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
  width: fit-content;
}

.stats strong {
  font-size: 2rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--light {
  background: var(--light);
}

.section--dark {
  background: var(--primary);
  color: white;
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 1.5rem;
}

/* O cabeçalho da secção "Sobre" não deve herdar o espaçamento amplo dos títulos de secção. */
.sobre-text .section-header {
  text-align: left;
  margin: 0 0 1rem;
  padding: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.card h3 {
  margin-bottom: 0.5rem;
}

#servicos {
  background-color: var(--light);
}

#servicos .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

#servicos .card:hover {
  background-color: #ffffff;
  border-color: var(--primary);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: rgba(0, 115, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.icon-box i {
  transition: color 0.3s ease;
}

#servicos .card:hover .icon-box {
  background: var(--primary);
}

#servicos .card:hover .icon-box i {
  color: white !important;
}


.tech-list {
  list-style: none;
  margin-top: 1rem;
}

.tech-list li {
  margin-bottom: .8rem;
  font-size: 1.1rem;
}

/* Badges */
.badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--accent), #0096C7);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 24px;
  margin: 7rem auto;
}

/* Removed legacy portfolio/client styles (not used by current markup) */

/* ── BEAUTIFUL MODERN FOOTER STYLING ── */
.footer {
  background: var(--light);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 3rem 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.footer-contact-list i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-contact-list a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid #e2e8f0;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-links a:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-location-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-address,
.footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--dark);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-address i,
.footer-hours i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-address p,
.footer-hours p {
  color: #334155;
}

.footer-map-card {
  border-radius: 14px;
  overflow: hidden;
  height: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.footer-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  color: #64748b;
  font-size: 0.88rem;
}

.footer-bottom p,
.footer-bottom span {
  color: #64748b;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Benefícios (FAQ) */
.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f107';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item[open] summary {
  margin-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1rem;
}

.faq-item p {
  color: #64748b;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Laptop & Tablet Landscape (< 992px) */
@media (max-width: 992px) {
  .nav {
    justify-content: space-between;
    padding: 1rem;
  }

  .logo {
    position: static;
  }

  .sobre-destaque {
    grid-template-columns: 1fr;
  }

  .sobre-text.container-left {
    padding: 3rem 2rem;
  }

  .sobre-img img {
    min-height: 320px;
  }

  .hero-grid>div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-grid,
  .tech-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-cta {
    display: none;
  }

  .hero h1 {
    font-size: 3rem;
    text-align: center;
  }

  .hero p {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.5;

  }

  .stats {
    width: 100%;
    justify-content: center;
  }

  .stats div {
    padding: 0 30px;
  }

  .stats strong {
    font-size: 1.8rem;
  }

  .stats span {
    font-size: 0.9rem;
  }

  .hamburger {
    display: block;
    z-index: 30;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
  }

  .nav-menu {
    position: fixed;
    left: -100vw;
    top: 0;
    flex-direction: column;
    background-color: white;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 20;
  }

  .nav-menu a {
    color: var(--primary);
  }

  .nav-menu a:hover {
    color: var(--accent);
  }

  .nav-menu a.active-nav-link {
    color: var(--primary) !important;
    background: rgba(41, 169, 224, 0.08);
    border: 1.5px solid rgba(41, 169, 224, 0.25);
  }

  .nav-menu.active {
    left: 0;
  }
}

/* Tablet Portrait (< 768px) */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Mobile (< 576px) */
@media (max-width: 576px) {
  .container {
    padding: 0 1.25rem;
  }

  .sobre-destaque {
    padding: 0 1.25rem 2rem;
  }

  /* Mesmo afastamento do menu usado nas páginas Contactos e Serviços. */
  .section.pt-200 {
    padding-top: 14rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .stats div {
    padding: 0 10px;
  }

  .stats strong {
    font-size: 1.5rem;
  }

  .stats span {
    font-size: 0.85rem;
  }
}

/* Removed legacy copyright rule (not used) */

/* Seção Nossos Equipamentos */
.equipamentos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* Card de Produto */
.equipamento-card {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.equipamento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.equipamento-img-box {
  background: #f8fafc;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.equipamento-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.equipamento-card:hover .equipamento-img-box img {
  transform: scale(1.05);
}

.equipamento-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipamento-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.equipamento-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.equipamento-arrow {
  align-self: flex-end;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.equipamento-card:hover .equipamento-arrow {
  transform: translateX(5px);
}

/* Card CTA (4º elemento) */
.equipamento-cta-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;

}

.equipamento-cta-card h3 {
  color: #001A33;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.equipamento-cta-card .btn {
  background: white;
  color: var(--primary);

}

.equipamento-cta-card .btn:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsividade Equipamentos */
@media (max-width: 1200px) {
  .equipamentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .equipamentos-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Teste de Água */
.cta-water {
  background: linear-gradient(120deg, var(--dark), var(--primary));
  border-radius: 24px;
  padding: 4rem 3rem;
  margin: 4rem auto;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-water::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 180, 216, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-water h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-water p {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.cta-water .btn {
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
}

.cta-water .btn:hover {
  background: #0096C7;
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

@media (max-width: 768px) {
  .cta-water {
    padding: 3rem 1.5rem;
  }

  .cta-water h2 {
    font-size: 2rem;
  }
}

/* Removed partners carousel styles (not used) */

/* --- Multi-language (i18n) Settings --- */
body.lang-en-active .lang-pt {
  display: none !important;
}

body:not(.lang-en-active) .lang-en {
  display: none !important;
}

/* Language Switcher UI */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.lang-btn:hover {
  color: var(--accent-light);
}

.lang-btn.active {
  color: var(--accent);
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 992px) {
  .lang-switcher {
    margin: 1rem 0;
    justify-content: center;
  }
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #FFF;
}

.whatsapp-icon {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* Removed legacy cliente-card styles (unused) */

/* ── GRID FINAL DE 2 LADOS: FAQ + FORMULÁRIO ── */
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-form-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 1.8rem;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 115, 192, 0.15);
}

.btn-block {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.5rem;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
