/* ================================================
   SKALARY — WEBSITE BASE STYLESHEET (AVAC)
   Cliente: DG Climatização e Serviços Técnicos
   ================================================ */


/* --- Variables --- */
:root {
  --green:        #E0151E;
  --green-dark:   #B80F17;
  --green-light:  #FDECEC;
  --dark:         #041427;
  --darker:       #041427;
  --gray:         #3B4658;
  --gray-light:   #6B7686;
  --white:        #fff;
  --light:        #EEF6FE;
  --border:       #DCE5EF;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.15);
  --radius:       6px;
  --radius-lg:    12px;
  --container:    1200px;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --transition:   0.22s ease;
  --blue:         #006FD6;
  --blue-dark:    #0057A8;
  --blue-logo:    #0085FA;
  --blue-on-dark: #0BA4FE;
  --orange:       #FC7110;
  --flame:        linear-gradient(90deg, #FC7110, #EE141F);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; color: var(--dark); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: 0.01em; text-transform: uppercase; }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.6rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray); line-height: 1.75; margin-bottom: 1rem; font-size: 1rem; text-align: justify; }
p:last-child { margin-bottom: 0; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; cursor: pointer;
}
.btn-green {
  background: var(--green); color: var(--white); border: 2px solid var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,21,30,0.4); }
.btn-green:active { transform: translateY(0); }
.btn-outline-white {
  background: transparent; color: var(--white); border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-outline-green {
  background: transparent; color: var(--green); border: 2px solid var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 17px 38px; font-size: 0.95rem; }

/* ================================================
   SECTION LABELS
   ================================================ */
.section-label {
  display: inline-block; background: var(--green-light); color: var(--green);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* White labels (for dark sections) */
.label-white {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

/* ================================================
   WAVE DIVIDERS
   ================================================ */
.wave-top-dark {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  background: var(--white);
}
.wave-top-dark svg { display: block; width: 100%; }
.wave-bottom-dark {
  display: block; width: 100%; overflow: hidden; line-height: 0;
  background: var(--white);
}
.wave-bottom-dark svg { display: block; width: 100%; }

/* ================================================
   HEADER / NAVIGATION
   ================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
#site-header.scrolled {
  background: #111;
  border-bottom-color: rgba(224,21,30,0.2);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px; gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
  color: var(--white); line-height: 1.25; letter-spacing: 0.01em;
}
.logo-text span { color: var(--green); display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  position: relative; padding: 8px 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.87rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); border-radius: var(--radius);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--green); }
.nav-item { position: relative; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  transform: translateY(6px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  padding: 8px 0; min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid var(--border);
}
.dropdown-grid { display: flex; flex-direction: column; }
.dropdown a {
  display: block; padding: 10px 20px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--darker); color: var(--white); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
  color: var(--white); display: flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.header-phone:hover { color: var(--green); }
.header-phone svg { width: 15px; height: 15px; fill: var(--green); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  width: 38px; height: 38px; justify-content: center; align-items: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--darker); overflow-y: auto; padding: 20px 24px;
  transform: translateX(100%); transition: transform 0.3s ease; z-index: 999;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-link {
  display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}
.mobile-dropdown-title {
  padding: 14px 0 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.mobile-dropdown-title svg { width: 18px; height: 18px; fill: var(--white); transition: transform var(--transition); }
.mobile-dropdown-title.open svg { transform: rotate(180deg); }
.mobile-dropdown-items { display: none; padding: 8px 0 8px 16px; }
.mobile-dropdown-items.open { display: block; }
.mobile-dropdown-items a {
  display: block; padding: 7px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-dropdown-items a:hover { color: var(--green); }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 82px; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.30) 100%);
}
/* Two-column hero layout */
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: center; width: 100%;
  padding: 60px 0;
}
.hero-left { min-width: 0; }
.hero h1 {
  color: var(--white); margin-bottom: 20px;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-desc {
  color: rgba(255,255,255,0.88); font-size: 1.05rem;
  line-height: 1.7; max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Hero inline form card */
.hero-form-card {
  background: rgba(10,20,12,0.93);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(6px);
}
.hero-form-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-bottom: 18px;
}
.hero-form-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--white); text-align: center; line-height: 1.2; letter-spacing: 0.04em;
}
.hero-form-logo-text span {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 2px;
}
.hero-form-card h2 {
  color: var(--white); font-size: 1.7rem; font-weight: 900;
  text-align: center; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 20px; line-height: 1.1;
}
.hero-form-group { margin-bottom: 14px; }
.hero-form-group label {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.05em; margin-bottom: 5px;
  color: rgba(255,255,255,0.88);
}
.hero-form-group label .req { color: var(--green); }
.hero-form-group input,
.hero-form-group textarea {
  width: 100%; padding: 11px 14px;
  background: var(--white); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); font-size: 0.9rem;
  color: var(--dark); transition: border-color var(--transition);
  font-family: var(--font-body);
}
.hero-form-group input::placeholder,
.hero-form-group textarea::placeholder { color: #aaa; font-size: 0.88rem; }
.hero-form-group input:focus,
.hero-form-group textarea:focus { outline: none; border-color: var(--green); }
.hero-form-group textarea { resize: vertical; min-height: 88px; }
.hero-form-check { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 16px; }
.hero-form-check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.hero-form-check label {
  font-size: 0.75rem; color: rgba(255,255,255,0.65);
  font-family: var(--font-body); line-height: 1.45;
}
.hero-form-check label a { color: var(--green); text-decoration: underline; }
.hero-form-btn {
  width: 100%; padding: 15px; background: var(--green);
  color: var(--white); font-family: var(--font-head); font-weight: 900;
  font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-form-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.hero-form-success {
  display: none; text-align: center; padding: 20px 0;
}
.hero-form-success h3 { color: var(--green); font-size: 1.2rem; margin-bottom: 6px; }
.hero-form-success p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; padding: 140px 0 70px;
  text-align: center; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.50) 100%);
}
.page-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 580px; margin: 0 auto 22px; }
.page-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 14px; font-size: 0.82rem;
  font-family: var(--font-head); font-weight: 600; color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 12px; height: 12px; fill: rgba(255,255,255,0.4); }

/* ================================================
   SECTION SPACING
   ================================================ */
.section { padding: 88px 0; }
.section-dark { background: var(--dark); }
.section-darker { background: var(--darker); }
.section-light { background: var(--light); }
.section-green { background: var(--green); }

/* ================================================
   SUPPLIERS / TRUST BAR
   ================================================ */
.suppliers { padding: 44px 0; border-bottom: 1px solid var(--border); }
.suppliers-label {
  text-align: center; font-family: var(--font-head); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-light); margin-bottom: 28px;
}
.suppliers-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 48px;
}
.supplier-logo {
  display: flex; align-items: center; justify-content: center;
}
.supplier-logo svg,
.supplier-logo img {
  height: 38px; width: auto; display: block; max-width: 190px;
}

/* ================================================
   LIGHTBOX — image popup for galleries
   ================================================ */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: lightboxFade 0.2s ease-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 95vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; color: #fff;
  font-size: 32px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }
@keyframes lightboxFade {
  from { opacity: 0; } to { opacity: 1; }
}
@media (max-width: 600px) {
  .lightbox-overlay { padding: 16px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; font-size: 26px; }
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 2/3; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--green); color: var(--white); border-radius: var(--radius-lg);
  padding: 20px 24px; text-align: center;
  box-shadow: 0 8px 24px rgba(224,21,30,0.4);
}
.about-img-badge .num { font-family: var(--font-head); font-weight: 900; font-size: 2.2rem; line-height: 1; }
.about-img-badge .lbl { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; margin-top: 4px; opacity: 0.9; }
.about-content h2 { margin-bottom: 18px; }
.about-social { display: flex; gap: 10px; margin: 20px 0 24px; }
.about-social a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.about-social a:hover { background: var(--green-dark); transform: scale(1.1); }
.about-social a svg { width: 16px; height: 16px; fill: var(--white); }

/* ================================================
   SERVICES PHOTO GRID
   ================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/2; cursor: pointer; display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.05) 45%);
  transition: background 0.3s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(224,21,30,0.15) 100%);
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: none;
  padding: 14px 16px;
  transition: background 0.3s ease;
}
.service-card:hover .service-card-body { background: none; }
.service-card-title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
}
.service-card-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.78); line-height: 1.55;
  max-height: 0; overflow: hidden; opacity: 0; margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.3s ease;
}
.service-card:hover .service-card-desc { max-height: 80px; opacity: 1; margin-top: 8px; }
.service-card-arrow {
  font-size: 0.78rem; color: var(--green); margin-top: 8px;
  opacity: 0; transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ================================================
   PROCESS SECTION (dark background, arrow flow)
   ================================================ */
.process-section {
  position: relative; padding: 88px 0;
  background: var(--dark);
}
.process-section .section-header h2 { color: var(--white); }
.process-section .section-label { background: rgba(224,21,30,0.2); color: var(--green); border: 1px solid rgba(224,21,30,0.3); }
.process-steps {
  display: flex; align-items: stretch; gap: 3px; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.process-step {
  flex: 1; min-width: 150px; position: relative;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 28px 36px 36px;
  background: rgba(255,255,255,0.05);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 22px 50%);
  transition: background var(--transition);
}
.process-step:first-child {
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  padding-left: 28px;
}
.process-step:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 22px 50%);
}
.process-step:hover { background: rgba(224,21,30,0.12); }
.process-step.active-step { background: rgba(224,21,30,0.18); }
.process-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(224,21,30,0.15); border: 2px solid rgba(224,21,30,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  flex-shrink: 0;
}
.process-icon svg { width: 26px; height: 26px; fill: var(--green); }
.process-num {
  font-family: var(--font-head); font-weight: 900; font-size: 0.72rem;
  color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.process-step h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.process-step p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ================================================
   GALLERY GRID
   ================================================ */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px; border-radius: 100px; border: 2px solid var(--border);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--gray); background: var(--white); transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.gallery-item.hidden { display: none; }

/* ================================================
   PROJECTS PAGE GALLERY
   ================================================ */
.projects-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px;
}
.projects-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.project-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; background: var(--dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
.project-item:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 52%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 22px;
  transition: background 0.4s ease;
}
.project-item:hover .project-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(224,21,30,0.12) 100%);
}
.project-cat {
  display: inline-block; width: fit-content;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 100px; margin-bottom: 9px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.35s ease;
}
.project-item:hover .project-cat { opacity: 1; transform: translateY(0); }
.project-title {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--white); letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.project-item.hidden { display: none; }

/* Content FAQ (inside district/service pages) */
.content-faq { margin-top: 8px; }
.content-faq-item {
  background: var(--light); border-radius: var(--radius);
  border-left: 3px solid var(--green);
  padding: 16px 20px; margin-bottom: 12px;
}
.content-faq-item strong {
  display: block; color: var(--dark); font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; margin-bottom: 7px;
}
.content-faq-item p { font-size: 0.87rem; margin: 0; color: var(--gray); }

/* ================================================
   REVIEWS SECTION (dark bg + outdoor photo)
   ================================================ */
.reviews-section {
  position: relative; padding: 88px 0; overflow: hidden;
}
.reviews-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.reviews-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.78);
}
.reviews-content { position: relative; z-index: 2; }
.reviews-content .section-header h2 { color: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.11); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: #f5a623; font-size: 1.05rem; }
.review-text {
  font-size: 0.93rem; color: rgba(255,255,255,0.8);
  margin-bottom: 18px; font-style: italic; line-height: 1.65;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; color: var(--white); }
.reviewer-loc { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 1px; }
.google-review-banner {
  margin-top: 44px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.google-review-banner h3 { color: var(--white); font-size: 1.3rem; }
.google-stars { display: flex; gap: 4px; }
.google-stars span { color: #f5a623; font-size: 1.3rem; }
.google-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.google-btn:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--dark); transition: color var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); background: var(--white);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--gray); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-icon svg { fill: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 0 22px; color: var(--gray); font-size: 0.95rem; line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ================================================
   SERVICE AREAS GRID
   ================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-item {
  padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray);
  display: flex; align-items: center; gap: 8px; transition: all var(--transition);
  background: var(--white);
}
.area-item svg { width: 14px; height: 14px; fill: var(--green); flex-shrink: 0; }
.area-item:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.area-item:hover svg { fill: var(--white); }

/* ================================================
   CTA BANNER (dark bg + photo)
   ================================================ */
.cta-section {
  position: relative; padding: 88px 0; overflow: hidden; text-align: center;
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.74);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { color: var(--white); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
#site-footer { background: var(--darker); color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { height: 40px; }
.footer-logo-text {
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  color: var(--white); line-height: 1.25;
}
.footer-logo-text span { color: var(--green); display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 12px 0 20px; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 15px; height: 15px; fill: var(--green); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social a svg { width: 14px; height: 14px; fill: var(--white); }
.footer-col h4 {
  color: var(--white); font-family: var(--font-head); font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.86rem; color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--darker); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); max-width: 500px; width: 100%; padding: 44px 40px;
  position: relative; max-height: 92vh; overflow-y: auto;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.modal-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.modal-logo img { height: 56px; }
.modal-logo-text {
  font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
  color: var(--white); text-align: center;
}
.modal-logo-text span { color: var(--green); display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.modal h2 {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  color: var(--white); text-align: center; margin-bottom: 28px; letter-spacing: -0.02em;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.05em; margin-bottom: 7px; color: rgba(255,255,255,0.85);
}
.form-group label .req { color: var(--green); }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); font-size: 0.95rem; color: var(--white);
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.form-check label { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-family: var(--font-body); font-weight: 400; }
.form-check label a { color: var(--green); text-decoration: underline; }
.btn-send { width: 100%; justify-content: center; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 28px 0; }
.form-success h3 { color: var(--green); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--dark); font-size: 0.9rem; }

/* ================================================
   SERVICE / AREA PAGE CONTENT
   ================================================ */
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.content-body h2 { margin-bottom: 16px; color: var(--dark); font-size: 1.5rem; }
.content-body p { margin-bottom: 16px; }
.content-body ul { margin: 16px 0 20px 20px; list-style: disc; }
.content-body ul li { color: var(--gray); margin-bottom: 8px; font-size: 0.95rem; }
.content-aside { position: sticky; top: 88px; }
.aside-card {
  background: var(--darker); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid rgba(255,255,255,0.1); color: var(--white);
}
.aside-card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.aside-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 18px; }
.aside-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.aside-contact { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.aside-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.aside-contact-item svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; }

/* ================================================
   BLOG
   ================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-date { font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; color: var(--gray-light); margin-bottom: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.45; }
.blog-card h3 a { color: var(--dark); transition: color var(--transition); }
.blog-card h3 a:hover { color: var(--green); }
.blog-card p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-read { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--green); display: flex; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-read svg { width: 14px; height: 14px; fill: var(--green); }

/* Blog post */
.blog-post-wrap { max-width: 800px; margin: 0 auto; padding: 0 24px 80px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.blog-post-meta span { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-featured { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 40px; }
.blog-post-content h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--green); }
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content ul { margin: 14px 0 20px 24px; list-style: disc; }
.blog-post-content ul li { color: var(--gray); margin-bottom: 8px; }

/* ================================================
   CONTACT
   ================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form-card { background: var(--light); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-card h2 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 24px; font-size: 0.95rem; }
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; background: var(--white);
  transition: border-color var(--transition); color: var(--dark);
}
.contact-form .form-group label { color: var(--dark); }
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus { outline: none; border-color: var(--green); }
.contact-form .form-group textarea { min-height: 130px; resize: vertical; }
.contact-form .form-check label { color: var(--gray); }
.contact-form .btn { width: 100%; justify-content: center; }
.contact-info h2 { margin-bottom: 24px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--green-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--green); }
.contact-info-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-item p { margin: 0; font-size: 0.88rem; }
.contact-info-item a { color: var(--green); }
.contact-success { display: none; text-align: center; padding: 28px; background: var(--green-light); border-radius: var(--radius); }
.contact-success h3 { color: var(--green); margin-bottom: 8px; }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 28px; }
.legal-content h1 { margin-bottom: 6px; }
.legal-content .updated { color: var(--gray-light); font-size: 0.86rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--green); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 16px 24px; list-style: disc; }
.legal-content ul li { color: var(--gray); margin-bottom: 6px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 8px; bottom: -12px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 32px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.7rem; }
  .section { padding: 64px 0; }
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .hero-form-card { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-gallery { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { gap: 8px; }
  .process-step { clip-path: none !important; padding: 20px 12px; min-width: 100px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .gallery-grid { grid-template-columns: 1fr; }
  .projects-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.85rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { flex-wrap: wrap; }
  .process-step { flex: 0 0 calc(50% - 4px); }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { height: 64px; }
}

/* ================================================
   SERVICE & AREA PAGE — two-column layout
   ================================================ */
.content-two-col { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.content-main h2 { margin-bottom: 20px; }
.content-main h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.content-main p { margin-bottom: 14px; color: var(--gray); line-height: 1.75; }
.content-main ul { margin: 0 0 16px 20px; list-style: disc; }
.content-main ul li { color: var(--gray); margin-bottom: 8px; line-height: 1.6; }
.content-main ul li strong { color: var(--dark); }
.content-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--light); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 12px; color: var(--dark); }
.sidebar-card p { font-size: 0.9rem; color: var(--gray); margin-bottom: 16px; }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); padding: 13px 20px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all var(--transition); display: inline-block; }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* Contact page wrappers */
.contact-info-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--gray-light); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--dark); font-size: 1rem; text-decoration: none; }
.contact-info-value:hover { color: var(--green); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-item svg { width: 22px; height: 22px; fill: var(--green); flex-shrink: 0; margin-top: 2px; }
.contact-form-wrap h2 { margin-bottom: 24px; }
.contact-form-wrap .form-group { margin-bottom: 16px; }
.contact-form-wrap .form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea,
.contact-form-wrap .form-group select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; background: var(--white); color: var(--dark); transition: border-color var(--transition); }
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus,
.contact-form-wrap .form-group select:focus { outline: none; border-color: var(--green); }
.contact-form-wrap .form-group textarea { min-height: 120px; resize: vertical; }
.contact-form-wrap .form-check { display: flex; gap: 10px; align-items: flex-start; }
.contact-form-wrap .form-check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.contact-form-wrap .form-check label { font-size: 0.82rem; color: var(--gray); }
.contact-form-wrap .form-check label a { color: var(--green); }
.form-success { background: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius); padding: 20px; margin-top: 16px; text-align: center; }
.form-success h3 { color: var(--green); margin-bottom: 6px; }

@media (max-width: 900px) {
  .content-two-col { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}


/* ================================================
   TELEMÓVEL COM INDICATIVO (intl-tel-input, ver js/phone-flags.js)
   Seletores com mais especificidade (html …) porque o CSS da
   biblioteca é carregado depois deste ficheiro.
   ================================================ */
html:root {
  --iti-border-color: var(--line-strong);
  --iti-country-selector-bg: var(--surface);
  --iti-hover-color: var(--accent-soft);
  --iti-icon-color: var(--input-muted);
  --iti-spacer-horizontal: 12px;
  --iti-mobile-popup-margin: 40px;
}
html .iti { display: block; width: 100%; }
html .iti input.iti__tel-input { width: 100%; }

/* Bandeiras: imagens alojadas no site, caminhos absolutos.
   1.ª linha = browsers sem image-set; as seguintes escolhem 1x/2x. */
html .iti__flag:not(.iti__globe):not(.iti__loading) {
  background-image: url("/vendor/intl-tel-input/img/flags@2x.png");
  background-image: -webkit-image-set(url("/vendor/intl-tel-input/img/flags.png") 1x, url("/vendor/intl-tel-input/img/flags@2x.png") 2x);
  background-image: image-set(url("/vendor/intl-tel-input/img/flags.png") 1x, url("/vendor/intl-tel-input/img/flags@2x.png") 2x);
}
html .iti__flag { box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12); }

/* Botão do país dentro do campo */
html .iti__selected-country { color: var(--input-text); border-radius: 8px 0 0 8px; }
html .iti__selected-country-primary { padding-left: 14px; }
html .iti__selected-dial-code { color: var(--input-text); font-weight: 500; }

/* Lista de países (desktop: por baixo do campo; mobile: ecrã inteiro).
   Fica por cima do pop-up de orçamento (z-index 9999). */
html .iti--detached-country-selector { z-index: 10050; }
html .iti__country-selector {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
html .iti__search-input {
  background: var(--surface-2); color: var(--text); font-family: var(--font-body);
  font-size: 16px; border-radius: 0; outline: none;
}
html .iti__search-input::placeholder { color: var(--muted-2); }
html .iti__country { color: var(--text); font-family: var(--font-body); font-size: 0.95rem; }
html .iti__dial-code { color: var(--muted-2); }
html .iti__country.iti__highlight { background-color: var(--accent-soft); }
html .iti__country-check { color: var(--accent); }
html .iti__no-results { color: var(--muted); }
html .iti--fullscreen-popup.iti--detached-country-selector { background-color: rgba(2, 5, 10, 0.82); }
html .iti--fullscreen-popup .iti__country-selector { border-radius: 12px; }

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  text-decoration: none;
  z-index: 9998;
  animation: wa-pulse 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 30px rgba(37,211,102,0.75) !important;
  animation: none;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  flex-shrink: 0;
}
@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 6px 28px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12);
  }
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 18px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ================================================
   HONEYPOT — campo escondido anti-spam (ver js/main.js)
   ================================================ */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}



/* ================================================================
   CAMADA DG CLIMATIZAÇÃO — tema escuro (base) e tema claro
   Cores sólidas tiradas do logo: azul-marinho #041427, azul #0085FA,
   chama #EE141F (só em pormenores). Sem gradientes, brilhos nem néon.
   O tema claro ativa-se com <html data-theme="light"> (botões no topo).
   ================================================================ */
:root {
  --navy:        #041427;          /* azul-marinho do logo */
  --brand:       #0085FA;          /* azul do floco (logo) */
  --flame-red:   #EE141F;          /* vermelho da chama (logo) */
  --btn:         #0072E0;          /* botão principal: texto branco 4,7:1 */
  --btn-hover:   #005CB8;
  --on-dark-accent: #3A9BF7;       /* azul legível sobre painéis escuros */

  /* Tema escuro (por defeito) */
  --bg:          #06101E;
  --bg-alt:      #0A1829;
  --surface:     #0E1E33;
  --surface-2:   #13263F;
  --line:        #1D3150;
  --line-strong: #2B4568;
  --text:        #F2F5F9;
  --muted:       #B6C2D1;
  --muted-2:     #8C9CB2;
  --accent:      #3A9BF7;          /* links e ícones */
  --accent-soft: rgba(0, 133, 250, 0.14);
  --header-bg:   #06101E;
  --panel:       #0E1E33;          /* formulário, caixa de orçamento */
  --panel-line:  #2B4568;
  --input-bg:    #06101E;
  --input-text:  #F2F5F9;
  --input-muted: #8C9CB2;
  --input-line:  #2B4568;
  --page-hero:   #0A1829;
  --shadow-card: none;
  --req:         #FF5A5F;

  /* variáveis da base */
  --green:       var(--btn);
  --green-dark:  var(--btn-hover);
  --green-light: var(--accent-soft);
  --dark:        var(--text);
  --darker:      var(--navy);
  --gray:        var(--muted);
  --gray-light:  var(--muted-2);
  --light:       var(--bg-alt);
  --border:      var(--line);
  --radius:      8px;
  --radius-lg:   12px;
  --font-head:   'Sora', 'Montserrat', sans-serif;
  --font-body:   'Inter', 'Open Sans', sans-serif;
  --shadow:      0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg:   0 16px 40px rgba(0, 0, 0, 0.3);
}

html[data-theme="light"] {
  --bg:          #FFFFFF;
  --bg-alt:      #F2F5F9;
  --surface:     #FFFFFF;
  --surface-2:   #F5F7FA;
  --line:        #DCE3EC;
  --line-strong: #C3CEDC;
  --text:        #041427;
  --muted:       #3E4A5C;
  --muted-2:     #5D6A7C;
  --accent:      #006FD6;
  --accent-soft: rgba(0, 111, 214, 0.08);
  --header-bg:   #FFFFFF;
  --panel:       #041427;
  --panel-line:  #041427;
  --input-bg:    #FFFFFF;
  --input-text:  #041427;
  --input-muted: #5D6A7C;
  --input-line:  #FFFFFF;
  --page-hero:   #041427;
  --shadow-card: 0 1px 3px rgba(4, 20, 39, 0.06), 0 6px 18px rgba(4, 20, 39, 0.06);
  --req:         #FF6B6B;
  --shadow:      0 6px 20px rgba(4, 20, 39, 0.08);
  --shadow-lg:   0 12px 32px rgba(4, 20, 39, 0.12);
}

html { background: var(--bg); color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }
body { background: var(--bg); color: var(--muted); font-size: 16px; line-height: 1.7; }
::selection { background: rgba(0, 133, 250, 0.3); }

/* --- Tipografia --- */
h1, h2, h3, h4 { color: var(--text); font-family: var(--font-head); letter-spacing: -0.015em; }
h1 { text-transform: none; font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; }
h2 { font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.18; }
h3 { font-weight: 600; }
p { color: var(--muted); text-align: left; }
strong { color: var(--text); font-weight: 600; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [role="button"]:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

.section { padding: 88px 0; position: relative; background: var(--bg); }
.section-light { background: var(--bg-alt); }
.section-header { margin-bottom: 44px; }
.section-header h2 { position: relative; padding-bottom: 16px; }
.section-header h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 48px; height: 3px;
  transform: translateX(-50%); border-radius: 2px; background: var(--brand);
}
.section-header p { text-align: center; }

/* --- Botões (cores lisas) --- */
.btn {
  justify-content: center; text-transform: none; letter-spacing: 0;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius); padding: 13px 24px; box-shadow: none;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-green { background: var(--btn); color: #fff; border: 1px solid var(--btn); }
.btn-green:hover { background: var(--btn-hover); border-color: var(--btn-hover); transform: none; box-shadow: none; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.45); }
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; color: #fff; }
.btn-outline-green { background: transparent; color: var(--accent); border: 1px solid var(--accent); border-radius: var(--radius); text-transform: none; letter-spacing: 0; font-family: var(--font-head); font-weight: 600; padding: 13px 24px; font-size: 0.95rem; }
.btn-outline-green:hover { background: var(--accent-soft); color: var(--accent); }
.btn-block { width: 100%; }
.btn-wa-outline { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn-wa-outline svg { fill: #25D366; }
.btn-wa-outline:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.08); }

/* --- Faixa superior + tema --- */
.topbar { background: var(--navy); color: #D5DEE9; font-family: var(--font-body); font-weight: 500; font-size: 0.8rem; padding: 6px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar-msg { display: flex; align-items: center; gap: 8px; }
.topbar-msg svg { width: 14px; height: 14px; fill: var(--brand); flex-shrink: 0; }
.theme-switch { display: inline-flex; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.theme-opt { padding: 4px 12px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: #D5DEE9; background: transparent; line-height: 1.4; }
.theme-opt[aria-pressed="true"] { background: #fff; color: var(--navy); }
.theme-opt:not([aria-pressed="true"]):hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

/* --- Header --- */
#site-header {
  position: sticky; top: 0; z-index: 1000; background: var(--header-bg);
  border-bottom: 1px solid var(--line); box-shadow: none; overflow-x: clip;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
#site-header.scrolled { background: var(--header-bg); border-bottom-color: var(--line); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); }
.header-inner { height: 78px; }
.lockup { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; line-height: 1; }
.lockup img { height: 40px; width: auto; display: block; }
.lockup .logo-on-light { display: none; }
html[data-theme="light"] .lockup .logo-on-light { display: block; }
html[data-theme="light"] .lockup .logo-on-dark { display: none; }
.lockup-text { font-family: var(--font-head); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.01em; color: var(--text); white-space: nowrap; }

.nav-link { color: var(--muted); font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; text-transform: none; letter-spacing: 0; padding: 8px 14px; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { box-shadow: inset 0 -2px 0 var(--brand); border-radius: 0; }
.dropdown { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); border-radius: 10px; padding: 6px; }
.dropdown a { text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; color: var(--muted); border-radius: 6px; padding: 10px 14px; }
.dropdown a:hover { background: var(--accent-soft); color: var(--text); }

.header-right { gap: 14px; }
.header-phone { color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.header-phone svg { width: 17px; height: 17px; fill: var(--brand); }
.header-phone:hover { color: var(--accent); }
.header-cta { padding: 11px 18px; font-size: 0.88rem; }
.hamburger span { background: var(--text); }

.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0; bottom: auto;
  height: calc(100vh - 78px); height: calc(100dvh - 78px);
  background: var(--bg); border-top: 1px solid var(--line); visibility: hidden;
}
.mobile-nav.open { visibility: visible; }
.mobile-nav-link, .mobile-dropdown-title { font-family: var(--font-head); font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--text); border-bottom-color: var(--line); }
.mobile-dropdown-items a { text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-size: 0.98rem; color: var(--muted); border-bottom-color: var(--line); }
.mobile-dropdown-items a:hover { color: var(--accent); }
.mobile-dropdown-title svg { fill: var(--muted); }
.mobile-cta .btn-outline-white { color: var(--text); border-color: var(--line-strong); }

@media (max-width: 1100px) {
  .main-nav { gap: 0; }
  .nav-link { padding: 8px 10px; }
  .header-phone span { display: none; }
  .header-phone { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); justify-content: center; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}
@media (max-width: 768px) {
  .header-phone { display: flex; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .lockup-text { display: none; }
  .lockup img { height: 34px; }
  .header-inner { height: 64px; gap: 8px; }
  .mobile-nav { height: calc(100vh - 64px); height: calc(100dvh - 64px); }
  .header-right { gap: 8px; }
  .header-cta { padding: 10px 13px; font-size: 0.82rem; }
  .header-phone { width: 38px; height: 38px; }
  .hamburger { width: 34px; }
  .topbar { font-size: 0.7rem; }
  .topbar-msg svg { display: none; }
  .theme-opt { padding: 4px 9px; font-size: 0.7rem; }
}

/* --- Hero (home) --- */
.hero { min-height: auto; padding-top: 0; background: var(--navy); }
.hero-bg-img { opacity: 1; }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 20, 39, 0.95) 0%, rgba(4, 20, 39, 0.86) 48%, rgba(4, 20, 39, 0.6) 100%); }
.hero::after { display: none; }
.hero-inner { padding: 72px 0 80px; grid-template-columns: 1fr 440px; gap: 56px; }
.hero h1 { color: #fff; text-transform: none; font-weight: 700; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; text-shadow: none; letter-spacing: -0.02em; }
.hero-desc { font-size: 1.1rem; max-width: 560px; color: #D5DEE9; text-shadow: none; }

/* --- Formulário (igual no hero, no pop-up e no contacto) --- */
.hero-form-card {
  background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg);
  padding: 28px 26px 24px; position: relative; overflow: hidden;
  -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.hero-form-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); }
.form-card-head { text-align: center; margin-bottom: 18px; }
.form-card-head h2 { color: #fff; font-size: 1.55rem; font-weight: 700; text-transform: none; letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.15; }
.form-card-head p { color: #C9D4E2; font-family: var(--font-body); font-weight: 500; font-size: 0.88rem; text-align: center; margin: 0; }
.hero-form-group { margin-bottom: 13px; }
.hero-form-group label { color: #E6ECF3; font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; letter-spacing: 0; }
.hero-form-group label .req, .hero-form-check label .req { color: var(--req); }
.hero-form-group input, .hero-form-group textarea {
  background: var(--input-bg); color: var(--input-text); border: 1px solid var(--input-line);
  border-radius: var(--radius); padding: 12px 14px; font-family: var(--font-body);
}
.hero-form-group input::placeholder, .hero-form-group textarea::placeholder { color: var(--input-muted); }
.hero-form-group input:focus, .hero-form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0, 133, 250, 0.25); outline: none; }
.hero-form-check input { accent-color: var(--brand); }
.hero-form-check label { color: #B9C5D4; }
.hero-form-check label a { color: #8CC4FF; }
.hero-form-btn { background: var(--btn); color: #fff; border-radius: var(--radius); padding: 15px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: 0; text-transform: none; box-shadow: none; }
.hero-form-btn:hover { background: var(--btn-hover); transform: none; }
.hero-form-success h3 { color: #fff; }
.hero-form-success p { color: #C9D4E2; text-align: center; }
@media (max-width: 420px) { .hero-form-card { padding: 24px 18px 20px; } }

/* --- Pop-up --- */
.modal-overlay { background: rgba(2, 8, 16, 0.8); -webkit-backdrop-filter: none; backdrop-filter: none; padding: 16px; }
.modal { background: transparent; border: none; padding: 0; max-width: 460px; overflow: visible; }
.modal .hero-form-card { max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow-y: auto; }
.modal-close { top: 12px; right: 12px; z-index: 3; color: #fff; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); width: 34px; height: 34px; font-size: 1.3rem; }

/* --- Marcas --- */
.suppliers { padding: 34px 0 40px; background: var(--bg); border-bottom: 1px solid var(--line); }
.suppliers-label { color: var(--muted-2); margin-bottom: 22px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.12em; }
.suppliers-logos { gap: 28px 60px; }
.supplier-logo img { max-width: none; width: auto; filter: brightness(0) invert(1); opacity: 0.8; }
html[data-theme="light"] .supplier-logo img { filter: none; opacity: 1; }

/* --- Serviços (home) --- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: border-color var(--transition), transform var(--transition); }
.svc-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.svc-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.svc-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.svc-card:hover .svc-card-media img { transform: scale(1.04); }
.svc-card-icon { display: flex; align-items: center; justify-content: center; }
.svc-card-icon svg { width: 64px; height: 64px; fill: var(--brand); }
.svc-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.svc-card-body p { font-size: 0.95rem; margin-bottom: 16px; }
.svc-card-link { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.svc-card-link::after { content: "\2192"; transition: transform var(--transition); }
.svc-card:hover .svc-card-link::after { transform: translateX(4px); }

/* --- Para quem trabalhamos --- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.audience-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.audience-media img { width: 100%; height: 100%; object-fit: cover; }
.audience-body { padding: 20px 22px 24px; }
.audience-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.95rem; margin: 0; }
.audience-card a, .prose a, .about-content a, .areas-text a, .faq-answer a { color: var(--accent); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose a.btn { text-decoration: none; }

/* --- Quem somos (com as características) --- */
.about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.about-img-wrap::before { display: none; }
.about-img { aspect-ratio: auto; max-height: 640px; width: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: none; border: 1px solid var(--line); }
.about-content h2 { margin-bottom: 18px; }
.about-content p { font-size: 1.04rem; }
.about-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0 4px; }
.about-features li { display: flex; gap: 12px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; font-size: 0.93rem; color: var(--muted); line-height: 1.55; box-shadow: var(--shadow-card); }
.about-features li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.about-features svg { width: 22px; height: 22px; fill: var(--brand); flex-shrink: 0; margin-top: 1px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.about-social { margin-top: 22px; }
.about-social a { background: var(--surface); border: 1px solid var(--line); }
.about-social a svg { fill: var(--text); }
.about-social a:hover { background: var(--accent-soft); border-color: var(--brand); transform: none; }

/* --- Como trabalhamos --- */
.steps-title { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 1.05rem; margin-bottom: 16px; }
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 18px; box-shadow: var(--shadow-card); }
.step-num { width: 36px; height: 36px; border-radius: var(--radius); background: var(--btn); color: #fff; font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 0.95rem; box-shadow: none; }
.step p { font-size: 0.93rem; color: var(--text); margin: 0; }
.steps-note { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--flame-red); border-radius: var(--radius); padding: 16px 20px; }
.steps-note::before { display: none; }
.steps-note p { margin: 0; color: var(--text); }
.steps-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/* --- Onde trabalhamos --- */
.areas-text { max-width: 820px; margin: 0 auto 28px; }
.areas-text p { text-align: center; font-size: 1.04rem; }
.areas-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
.area-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); text-transform: none; letter-spacing: 0; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--text); justify-content: center; text-align: center; padding: 12px 14px; box-shadow: var(--shadow-card); }
.area-item svg { fill: var(--brand); }
.area-item:hover { background: var(--accent-soft); border-color: var(--brand); color: var(--text); }
.area-item:hover svg { fill: var(--brand); }

/* --- FAQ --- */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { color: var(--text); font-family: var(--font-head); font-weight: 600; }
.faq-question:hover { color: var(--accent); }
.faq-icon { background: transparent; border: 1px solid var(--line-strong); }
.faq-icon svg { fill: var(--muted); }
.faq-item.open .faq-icon { background: var(--btn); border-color: var(--btn); }
.faq-item.open .faq-icon svg { fill: #fff; }
.faq-answer { color: var(--muted); }
.faq-answer p { margin-bottom: 0.6rem; }

/* --- Contacto (home) --- */
.contact-home { background: var(--bg); border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.contact-home-grid { display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center; }
.contact-home-text h2 { margin-bottom: 16px; }
.contact-home-text > p { font-size: 1.06rem; margin-bottom: 26px; }
.contact-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-tile { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 18px; box-shadow: var(--shadow-card); transition: border-color var(--transition); }
.contact-tile:hover { border-color: var(--brand); }
.contact-tile svg { width: 24px; height: 24px; fill: var(--brand); flex-shrink: 0; }
.contact-tile.wa svg { fill: #25D366; }
.contact-tile strong { display: block; font-family: var(--font-head); color: var(--text); font-size: 0.95rem; word-break: break-word; }
.contact-tile span { font-size: 0.82rem; color: var(--muted-2); }
.contact-tile.wide { grid-column: 1 / -1; }

/* --- Avaliações --- */
.reviews-section { padding: 72px 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.reviews-section .section-header { margin-bottom: 28px; }
.reviews-cta { text-align: center; margin-top: 28px; }
.google-review-btn { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: #202124; font-family: var(--font-head); font-size: 15px; font-weight: 600; padding: 12px 22px; border-radius: var(--radius); border: 1px solid #DADCE0; }

/* --- CTA final (páginas interiores) --- */
.cta-section { position: relative; padding: 72px 0; overflow: hidden; background: var(--navy); border-top: 1px solid var(--line); }
.cta-section::before { display: none; }
.cta-content h2 { color: #fff; }
.cta-content p { color: #C9D4E2; text-align: center; }
.cta-btns { gap: 12px; }

/* --- Cabeçalho das páginas interiores --- */
.page-hero--plain { position: relative; padding: 56px 0 48px; text-align: left; overflow: hidden; background: var(--page-hero); border-bottom: 1px solid var(--line); }
.page-hero--plain::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--brand); }
.page-hero--plain .page-hero-content { align-items: flex-start; }
.page-hero--plain h1 { color: #fff; max-width: 920px; margin-bottom: 20px; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.breadcrumb { justify-content: flex-start; flex-wrap: wrap; color: #9FB0C4; font-family: var(--font-body); font-weight: 500; margin-bottom: 14px; }
.breadcrumb a { color: #C9D4E2; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { fill: #7F90A6; }
.page-hero-btns { justify-content: flex-start; gap: 12px; }
.page-hero-meta { color: #C9D4E2; font-family: var(--font-body); font-weight: 500; font-size: 0.92rem; margin: -6px 0 0; }

/* --- Conteúdo (serviços, zonas, blog) --- */
.section-page { padding: 52px 0 76px; background: var(--bg); }
.content-two-col { grid-template-columns: minmax(0, 1fr) 340px; gap: 52px; }
.content-sidebar { top: 110px; gap: 18px; }
.prose { font-size: 1.04rem; }
.prose h2 { font-size: clamp(1.35rem, 2.3vw, 1.7rem); margin: 42px 0 14px; color: var(--text); }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; color: var(--text); }
.prose p { margin-bottom: 16px; color: var(--muted); line-height: 1.8; }
.prose ul, .prose ol { margin: 0 0 20px 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; line-height: 1.7; color: var(--muted); padding-left: 4px; }
.prose li::marker { color: var(--brand); font-weight: 700; }
.prose strong { color: var(--text); }
.prose em { color: var(--muted-2); }
.prose table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 0.96rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; color: var(--muted); background: var(--surface); }
.prose th { background: var(--surface-2); color: var(--text); font-family: var(--font-head); font-weight: 600; }
.table-wrap { overflow-x: auto; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px; }
.cta-row .btn { padding: 12px 20px; font-size: 0.92rem; }

.page-cover { margin: 0 0 30px; }
.page-cover img, .article-cover img, .inline-figure img { width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: none; }
.page-cover.portrait img, .article-cover.portrait img { width: auto; max-width: 100%; max-height: 600px; margin: 0 auto; }
.inline-figure { margin: 8px 0 26px; }
.article-cover { margin: 0 0 30px; }

.photo-grid { columns: 3 200px; column-gap: 14px; margin: 36px 0 10px; }
.photo-grid .gallery-item { break-inside: avoid; margin-bottom: 14px; aspect-ratio: auto; display: block; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; }
.photo-grid .gallery-item img { width: 100%; height: auto; transition: transform 0.4s ease; }
.photo-grid .gallery-item:hover img { transform: scale(1.03); }

/* Caixa de orçamento (barra lateral) */
.cta-box { background: var(--panel); border: 1px solid var(--panel-line); border-radius: var(--radius-lg); padding: 26px 22px 22px; position: relative; overflow: hidden; box-shadow: none; }
.cta-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); }
.cta-box-title { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff; margin-bottom: 16px; }
.cta-box .btn { width: 100%; margin-bottom: 10px; padding: 14px 16px; font-size: 0.98rem; }
.cta-box .btn:last-child { margin-bottom: 0; }
.btn-box { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); font-size: 1rem; }
.btn-box svg { fill: var(--on-dark-accent); width: 20px; height: 20px; }
.btn-box[href^="https://wa.me"] svg { fill: #25D366; }
.btn-box:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.sidebar-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.sidebar-card h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 10px; }
.sidebar-links a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 500; font-size: 0.93rem; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover, .sidebar-links a[aria-current="page"] { color: var(--accent) !important; }

/* FAQ das páginas */
.faq-section { background: var(--bg-alt); padding: 64px 0; border-top: 1px solid var(--line); }
.faq-section .faq-list { background: var(--surface); border-radius: var(--radius-lg); padding: 4px 26px; border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.faq-section .faq-item:last-child { border-bottom: none; }

/* --- Blog --- */
.blog-grid { gap: 22px; }
.blog-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.blog-card:hover { border-color: var(--brand); box-shadow: var(--shadow-card); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/10; background: var(--surface-2); display: block; }
.blog-card-noimg { display: flex; align-items: center; justify-content: center; }
.blog-card-noimg svg { width: 52px; height: 52px; fill: var(--brand); }
.blog-card-body { display: flex; flex-direction: column; flex: 1; }
.blog-date { color: var(--muted-2); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.blog-card h3 { font-size: 1.08rem; line-height: 1.4; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { color: var(--muted); }
.blog-read { color: var(--accent); margin-top: auto; text-transform: none; letter-spacing: 0; font-family: var(--font-head); font-weight: 600; }
.blog-read svg { fill: var(--accent); }

/* --- Rodapé (azul-marinho do logo nos dois temas) --- */
#site-footer { background: var(--navy); border-top: 1px solid rgba(255, 255, 255, 0.06); color: #B9C5D4; }
.footer-top { padding: 64px 0 40px; }
.footer-grid { grid-template-columns: 1.4fr 1.1fr 1fr 1.2fr; gap: 40px; }
.footer-logo-wrap { display: inline-block; margin-bottom: 16px; }
.footer-logo-wrap img { height: 88px; width: auto; }
.footer-slogan { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; margin-bottom: 8px; }
.footer-tagline { color: #9FB0C4; margin-top: 0; }
.footer-zonas { font-size: 0.82rem; color: #9FB0C4; margin-top: 12px; line-height: 1.6; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.01em; text-transform: none; font-size: 0.95rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-col ul li a, .footer-contact-item, .footer-contact-item a { color: #B9C5D4; }
.footer-col ul li a:hover, .footer-contact-item a:hover { color: #fff; }
.footer-contact-item svg { fill: var(--on-dark-accent); }
.footer-social a { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); }
.footer-social a:hover { background: var(--btn); border-color: var(--btn); }
.footer-cta { margin: 18px 0 10px; padding: 11px 18px; font-size: 0.88rem; }
.footer-links { margin-top: 10px; }
.footer-bottom { border-top-color: rgba(255, 255, 255, 0.1); }
.footer-copy, .footer-legal a { color: #9FB0C4; }
.footer-legal a:hover { color: #fff; }

/* --- Legais --- */
.legal-content { background: var(--bg); }
.legal-content h1, .legal-content h2 { color: var(--text); }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content .updated { color: var(--muted-2); }
.legal-content a { color: var(--accent); }

/* --- Visualizador de fotografias --- */
.lightbox-overlay { background: rgba(2, 8, 16, 0.94); padding: 24px 72px; cursor: default; }
.lightbox-overlay.open { display: flex; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 100%; max-height: 100%; }
.lightbox-img { max-width: 100%; max-height: calc(100vh - 120px); max-height: calc(100dvh - 120px); width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: none; }
.lightbox-caption { display: flex; gap: 16px; justify-content: space-between; align-items: baseline; width: 100%; max-width: 900px; color: #D5DEE9; font-size: 0.88rem; line-height: 1.5; }
.lightbox-count { color: #9FB0C4; white-space: nowrap; font-variant-numeric: tabular-nums; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-nav svg { width: 28px; height: 28px; fill: #fff; }
.lightbox-nav[hidden] { display: none; }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-close { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); }
@media (max-width: 600px) {
  .lightbox-overlay { padding: 56px 10px 80px; }
  .lightbox-nav { top: auto; bottom: 16px; transform: none; width: 44px; height: 44px; }
  .lightbox-prev { left: calc(50% - 56px); }
  .lightbox-next { right: calc(50% - 56px); }
  .lightbox-caption { flex-direction: column; gap: 4px; font-size: 0.82rem; }
}

.wa-float { z-index: 998; }

/* --- Responsivo --- */
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 400px; gap: 36px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-home-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-home-grid .hero-form-card { max-width: 520px; width: 100%; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }
  .content-sidebar { position: static; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 0 52px; gap: 28px; }
  .hero-form-card { max-width: 520px; width: 100%; margin: 0 auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .section-page { padding: 34px 0 56px; }
  .page-hero--plain { padding: 38px 0 34px; }
  .faq-section .faq-list { padding: 4px 16px; }
  .cta-section { padding: 56px 0; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-tiles { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-row .btn, .page-hero-btns .btn, .steps-actions .btn, .about-actions .btn { width: 100%; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .suppliers-logos { gap: 20px 34px; }
  .supplier-logo img { transform: scale(0.8); }
  .photo-grid { columns: 2 140px; column-gap: 10px; }
  .photo-grid .gallery-item { margin-bottom: 10px; }
}

/* Botões com texto longo quebram linha; a coluna de conteúdo nunca alarga para além do ecrã */
.cta-row .btn, .cta-btns .btn, .cta-box .btn, .about-actions .btn, .steps-actions .btn { white-space: normal; text-align: center; line-height: 1.35; }
@media (max-width: 900px) { .content-two-col { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .header-right { gap: 6px; }
  .header-cta { padding: 9px 10px; font-size: 0.78rem; }
  .header-phone { width: 34px; height: 34px; }
  .lockup img { height: 30px; }
  .hamburger { width: 30px; padding: 4px; }
}
@media (max-width: 768px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 360px) { .steps { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 480px) { .hero h1 { font-size: 1.75rem; } .page-hero--plain h1 { font-size: 1.7rem; } }

/* ================================================================
   RONDA 3 — CTA em maiúsculas, interruptor no header, cartões de
   serviço com texto ao passar o rato, certificações na barra lateral
   ================================================================ */

/* Todos os botões "Orçamento grátis" em maiúsculas (o texto no HTML fica normal) */
.open-modal { text-transform: uppercase; letter-spacing: 0.05em; }

/* Header: CTA e telefone com mais destaque */
.header-cta { padding: 13px 22px; font-size: 0.92rem; }
.header-phone { font-size: 1.08rem; gap: 8px; }
.header-phone svg { width: 20px; height: 20px; }
.header-right { gap: 16px; }

/* Interruptor claro/escuro (header em desktop, menu em mobile) */
.theme-switch { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.theme-opt { padding: 7px 11px; font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; color: var(--muted); background: transparent; line-height: 1.3; }
.theme-opt[aria-pressed="true"] { background: var(--text); color: var(--bg); }
.theme-opt:not([aria-pressed="true"]):hover { background: var(--accent-soft); color: var(--text); }
.theme-switch--mobile { display: none; margin: 4px 0 12px; }
.theme-switch--mobile .theme-opt { padding: 9px 18px; font-size: 0.88rem; }
@media (max-width: 1240px) {
  .nav-link { padding: 8px 9px; }
  .header-right { gap: 12px; }
}
@media (max-width: 900px) {
  .theme-switch--header { display: none; }
  .theme-switch--mobile { display: inline-flex; }
}
@media (max-width: 560px) {
  .header-cta { padding: 11px 13px; font-size: 0.8rem; letter-spacing: 0.03em; }
}
@media (max-width: 380px) {
  .header-cta { padding: 10px 10px; font-size: 0.74rem; letter-spacing: 0.02em; }
}

/* Cartões de serviço (home): foto inteira com o nome; o texto aparece ao passar o rato */
.svc-card { position: relative; aspect-ratio: 4 / 3; border: 0; box-shadow: none; background: var(--navy); }
.svc-card:hover { transform: none; }
.svc-card-media { position: absolute; inset: 0; aspect-ratio: auto; }
.svc-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 20, 39, 0.92) 0%, rgba(4, 20, 39, 0.35) 45%, rgba(4, 20, 39, 0.05) 70%);
  transition: background 0.3s ease;
}
.svc-card:hover .svc-card-media::after, .svc-card:focus-visible .svc-card-media::after {
  background: linear-gradient(to top, rgba(4, 20, 39, 0.95) 0%, rgba(4, 20, 39, 0.75) 55%, rgba(4, 20, 39, 0.35) 100%);
}
.svc-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 22px 20px; z-index: 1; flex: none; }
.svc-card-body h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.svc-card-body p, .svc-card-link {
  max-height: 0; opacity: 0; overflow: hidden; margin: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.svc-card-body p { color: #D5DEE9; font-size: 0.93rem; line-height: 1.55; }
.svc-card-link { color: #8CC4FF; display: flex; }
.svc-card:hover .svc-card-body p, .svc-card:focus-visible .svc-card-body p { max-height: 160px; opacity: 1; margin-top: 10px; }
.svc-card:hover .svc-card-link, .svc-card:focus-visible .svc-card-link { max-height: 40px; opacity: 1; margin-top: 12px; }
.svc-card:hover .svc-card-media img { transform: scale(1.05); }
.svc-card-icon svg { position: relative; z-index: 0; }
/* Ecrãs táteis (sem rato): mostra sempre o texto, porque não há "passar por cima" */
/* Ecrãs táteis (sem rato): só a foto e o nome, com uma seta azul a indicar
   que se pode tocar. O texto fica na página do serviço. */
@media (hover: none) {
  .svc-card-body { padding-right: 76px; }
  .svc-card-body p { display: none; }
  .svc-card-link {
    position: absolute; right: 18px; bottom: 16px; width: 42px; height: 42px;
    border-radius: 50%; background: var(--btn); color: #fff;
    max-height: none; opacity: 1; margin: 0; font-size: 0;
    align-items: center; justify-content: center; gap: 0;
  }
  .svc-card-link::after { content: "\2192"; font-size: 1.3rem; line-height: 1; transform: none; }
  .svc-card-media::after { background: linear-gradient(to top, rgba(4, 20, 39, 0.92) 0%, rgba(4, 20, 39, 0.45) 45%, rgba(4, 20, 39, 0.08) 75%); }
}

/* Barra lateral: certificações e marcas */
.trust-list { list-style: none; margin: 0; padding: 0; }
.trust-list li { padding: 9px 0 9px 24px; border-bottom: 1px solid var(--line); color: var(--text); font-size: 0.93rem; position: relative; line-height: 1.45; }
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before { content: "\2713"; position: absolute; left: 0; top: 9px; color: var(--brand); font-weight: 700; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-chips span { background: var(--surface-2); border: 1px solid var(--line); color: var(--text); font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; padding: 6px 12px; border-radius: 6px; }

/* Tablets e portáteis pequenos: menu no hamburger para caberem telefone, CTA e interruptor */
@media (max-width: 1180px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .header-phone { width: auto; height: auto; border: 0; border-radius: 0; }
  .header-phone span { display: inline; }
}
@media (max-width: 380px) {
  .header-inner { gap: 6px; }
  .header-right { gap: 5px; }
  .header-cta { padding: 9px 8px; font-size: 0.7rem; letter-spacing: 0.01em; }
  .lockup img { height: 28px; }
  .header-phone { width: 32px; height: 32px; }
  .header-phone svg { width: 16px; height: 16px; }
}

/* ================================================================
   Cabeçalho das páginas interiores com a foto da página de fundo
   (filtro escuro, conteúdo centrado, CTA ao centro)
   ================================================================ */
.page-hero--photo { position: relative; padding: 96px 0 84px; text-align: center; overflow: hidden; background: var(--navy); }
.page-hero--photo .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero--photo .page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(4, 20, 39, 0.74); }
.page-hero--photo::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; background: var(--brand); z-index: 2; }
.page-hero--photo .page-hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.page-hero--photo .breadcrumb { justify-content: center; color: #C9D4E2; margin-bottom: 16px; }
.page-hero--photo .breadcrumb a { color: #E6ECF3; }
.page-hero--photo h1 { color: #fff; max-width: 980px; margin: 0 auto 18px; font-size: clamp(2rem, 4.4vw, 3.3rem); text-align: center; }
.page-hero-lead { color: #E1E8F0; font-size: 1.1rem; line-height: 1.7; max-width: 760px; margin: 0 auto 8px; text-align: center; }
.page-hero-lead a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.page-hero--photo .page-hero-meta { text-align: center; margin: 0 0 4px; }
.page-hero--photo .page-hero-btns { justify-content: center; margin-top: 26px; }
@media (max-width: 768px) {
  .page-hero--photo { padding: 60px 0 52px; }
  .page-hero-lead { font-size: 1rem; }
}
@media (max-width: 480px) { .page-hero--photo h1 { font-size: 1.75rem; } }

/* Caixa lateral: texto por baixo do título */
.cta-box-title { margin-bottom: 8px; }
.cta-box-text { color: #C9D4E2; font-size: 0.92rem; line-height: 1.55; margin: 0 0 18px; }

/* Título visual sobre a foto quando o H1 está no texto (ex.: instalação) */
.page-hero-title { font-family: var(--font-head); font-weight: 700; color: #fff; letter-spacing: -0.015em; line-height: 1.12; max-width: 980px; margin: 0 auto 18px; font-size: clamp(2rem, 4.4vw, 3.3rem); text-align: center; }
@media (max-width: 480px) { .page-hero-title { font-size: 1.75rem; } }
/* H1 no início do texto */
.prose .page-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 16px; color: var(--text); line-height: 1.2; }

/* ================================================================
   CABEÇALHO SOBRE A FOTO (páginas com hero ou cabeçalho com imagem)
   A foto prolonga-se até ao topo e passa por trás do logo, do menu,
   do telefone, do CTA e do interruptor. Ao rolar, o cabeçalho ganha
   fundo sólido para o texto continuar legível.
   ================================================================ */
:root { --header-h: 78px; }
@media (max-width: 560px) { :root { --header-h: 64px; } }

html.hero-photo #site-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent; box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
html.hero-photo #site-header.scrolled {
  background: var(--header-bg); border-bottom-color: var(--line);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
/* A foto começa no topo; o conteúdo desce o suficiente para não ficar tapado */
html.hero-photo .hero { padding-top: var(--header-h); }
html.hero-photo .page-hero--photo { padding-top: calc(96px + var(--header-h)); }
@media (max-width: 768px) {
  html.hero-photo .page-hero--photo { padding-top: calc(60px + var(--header-h)); }
}
/* Escurecer o topo da foto para destacar o texto do cabeçalho */
html.hero-photo .hero-overlay::before,
html.hero-photo .page-hero-overlay::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: calc(var(--header-h) + 60px);
  background: linear-gradient(to bottom, rgba(2, 9, 20, 0.72) 0%, rgba(2, 9, 20, 0.35) 55%, transparent 100%);
}
/* Texto e ícones a branco enquanto o cabeçalho está sobre a foto */
html.hero-photo #site-header:not(.scrolled) .nav-link,
html.hero-photo #site-header:not(.scrolled) .header-phone,
html.hero-photo #site-header:not(.scrolled) .lockup-text {
  color: #fff; text-shadow: 0 1px 6px rgba(2, 9, 20, 0.55);
}
html.hero-photo #site-header:not(.scrolled) .nav-link:hover,
html.hero-photo #site-header:not(.scrolled) .header-phone:hover { color: #9BCBFF; }
html.hero-photo #site-header:not(.scrolled) .nav-link.active { box-shadow: inset 0 -2px 0 #fff; }
html.hero-photo #site-header:not(.scrolled) .header-phone svg { fill: #fff; }
html.hero-photo #site-header:not(.scrolled) .hamburger span { background: #fff; }
html.hero-photo #site-header:not(.scrolled) .theme-switch { border-color: rgba(255, 255, 255, 0.5); }
html.hero-photo #site-header:not(.scrolled) .theme-opt { color: #fff; }
html.hero-photo #site-header:not(.scrolled) .theme-opt[aria-pressed="true"] { background: #fff; color: var(--navy); }
/* Sobre a foto usa-se sempre o logótipo claro, mesmo no tema claro */
html.hero-photo #site-header:not(.scrolled) .lockup .logo-on-dark { display: block; }
html.hero-photo #site-header:not(.scrolled) .lockup .logo-on-light { display: none; }
@media (max-width: 1180px) {
  html.hero-photo #site-header:not(.scrolled) .header-phone { border-color: rgba(255, 255, 255, 0.5); }
}

/* ================================================================
   BOTÃO "ORÇAMENTO GRÁTIS" — brilho ao passar o rato
   ================================================================ */
.btn-green { position: relative; overflow: hidden; }
.btn-green > * { position: relative; z-index: 1; }
.btn-green::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.btn-green:hover { box-shadow: 0 0 0 3px rgba(0, 133, 250, 0.22), 0 8px 22px rgba(0, 114, 224, 0.4); }
.btn-green:hover::after { opacity: 1; animation: btn-brilho 0.75s ease-out; }
@keyframes btn-brilho {
  from { left: -60%; }
  to { left: 115%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-green:hover::after { animation: none; opacity: 0; }
}

/* Âncoras não ficam tapadas pelo cabeçalho fixo */
html.hero-photo { scroll-padding-top: calc(var(--header-h) + 12px); }

/* Menu mobile aberto: o cabeçalho ganha fundo sólido mesmo sobre a foto */
html.hero-photo #site-header.menu-aberto { background: var(--header-bg); border-bottom-color: var(--line); }
html.hero-photo #site-header.menu-aberto .nav-link,
html.hero-photo #site-header.menu-aberto .header-phone,
html.hero-photo #site-header.menu-aberto .lockup-text { color: var(--text); text-shadow: none; }
html.hero-photo #site-header.menu-aberto .header-phone svg { fill: var(--brand); }
html.hero-photo #site-header.menu-aberto .hamburger span { background: var(--text); }
html[data-theme="light"].hero-photo #site-header.menu-aberto .lockup .logo-on-dark { display: none; }
html[data-theme="light"].hero-photo #site-header.menu-aberto .lockup .logo-on-light { display: block; }

/* ================================================================
   CABEÇALHO — espaçamento, telefone em destaque e proporções do CTA
   ================================================================ */
.header-inner { gap: 24px; }
.logo { margin-right: 20px; }
.main-nav { gap: 6px; justify-content: flex-start; padding-left: 16px; }
.nav-link { padding: 9px 15px; font-size: 0.94rem; }
.header-right { gap: 20px; }

/* Telefone com o azul da marca, alinhado com o menu */
.header-phone {
  color: var(--accent); font-family: var(--font-head); font-weight: 700;
  font-size: 1.06rem; letter-spacing: 0.01em; gap: 9px; line-height: 1;
}
.header-phone svg { width: 19px; height: 19px; fill: var(--accent); }
.header-phone:hover { color: var(--text); }
.header-phone:hover svg { fill: var(--text); }

/* Sobre a foto: azul mais claro para se ler bem, com sombra suave */
html.hero-photo #site-header:not(.scrolled) .header-phone { color: #9BCBFF; text-shadow: 0 1px 6px rgba(2, 9, 20, 0.6); }
html.hero-photo #site-header:not(.scrolled) .header-phone svg { fill: #9BCBFF; }
html.hero-photo #site-header:not(.scrolled) .header-phone:hover,
html.hero-photo #site-header:not(.scrolled) .header-phone:hover svg { color: #fff; fill: #fff; }

/* CTA com proporções mais equilibradas */
.header-cta { padding: 14px 26px; font-size: 0.95rem; letter-spacing: 0.06em; }

@media (max-width: 1280px) {
  .header-inner { gap: 16px; }
  .logo { margin-right: 8px; }
  .main-nav { padding-left: 6px; gap: 2px; }
  .nav-link { padding: 9px 11px; font-size: 0.9rem; }
  .header-right { gap: 14px; }
  .header-cta { padding: 13px 20px; font-size: 0.9rem; }
}
@media (max-width: 1180px) {
  .header-inner { gap: 12px; }
  .logo { margin-right: 0; }
  .header-phone { font-size: 1rem; }
}
@media (max-width: 900px) {
  html.hero-photo #site-header:not(.scrolled) .header-phone { border-color: rgba(155, 203, 255, 0.6); }
}
@media (max-width: 560px) {
  .header-cta { padding: 11px 14px; font-size: 0.82rem; }
}
@media (max-width: 380px) {
  .header-cta { padding: 10px 10px; font-size: 0.74rem; letter-spacing: 0.01em; }
}
@media (max-width: 400px) {
  .header-inner { gap: 6px; }
  .header-right { gap: 6px; }
  .header-cta { padding: 9px 9px; font-size: 0.72rem; letter-spacing: 0.01em; }
  .header-phone { width: 34px; height: 34px; }
  .header-phone svg { width: 17px; height: 17px; }
}
