:root {
  --cream: #f6e5bd;
  --cream-light: #fff6df;
  --paper: #fffaf0;
  --orange: #f05a17;
  --orange-dark: #d9470d;
  --blue: #102442;
  --blue-soft: #243b5a;
  --text: #111827;
  --muted: #5f6570;
  --white: #ffffff;
  --line: rgba(16, 36, 66, 0.15);
  --shadow: 0 22px 55px rgba(16, 36, 66, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 96px;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1220px;
  height: 76px;
  margin: 0;
  padding: 0 22px;
  z-index: 99999;
  background: rgba(255, 248, 226, 0.94);
  border: 1px solid rgba(16, 36, 66, 0.10);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 12px 28px rgba(16, 36, 66, 0.12);
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
}

.brand-logo {
  width: 58px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
}

.brand h1 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1;
}

.brand p {
  margin: 7px 0 0;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
}

nav {
  display: flex;
  gap: 34px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--blue-soft);
}

nav a:hover {
  color: var(--orange);
}

.header-btn {
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(16, 36, 66, 0.18);
}

.header-btn:hover {
  background: var(--orange);
}

.hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 86px 24px 70px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.tag,
.small-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 36, 66, 0.12);
  color: var(--orange);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h2 {
  margin: 26px 0 22px;
  color: var(--blue);
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--blue-soft);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 900;
}

.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(240, 90, 23, 0.23);
}

.primary:hover {
  background: var(--orange-dark);
}

.secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--blue);
  border: 1px solid rgba(16, 36, 66, 0.18);
}

.secondary:hover {
  background: var(--white);
}

.hero-image {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  background: var(--white);
  border: none;
  box-shadow: var(--shadow);
}

.hero-image img {
  height: 620px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  background: rgba(16, 36, 66, 0.88);
  color: var(--white);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(12px);
}

.image-label span {
  color: #ffb079;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}

.image-label strong {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
}

.proof-strip {
  max-width: 1320px;
  margin: 0 auto 70px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-strip article {
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(16, 36, 66, 0.12);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 35px rgba(16, 36, 66, 0.06);
}

.proof-strip span {
  color: var(--orange);
  font-weight: 900;
}

.proof-strip h3 {
  color: var(--blue);
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 92px 24px;
}

.section-head {
  max-width: 1320px;
  margin: 0 auto 44px;
}

.section-head h2 {
  max-width: 840px;
  color: var(--blue);
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 20px 0 18px;
}

.section-head p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.services-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 48px;
}

.services-section > .section-head {
  margin-bottom: 30px;
}

.services-section > .section-head h2 {
  max-width: 860px;
  font-size: clamp(2rem, 2.9vw, 3.05rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}

.services-section > .section-head p {
  max-width: 940px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.services-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(16, 36, 66, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 36, 66, 0.08);
}

.service-card img {
  height: 215px;
  object-fit: cover;
}

.service-card div {
  padding: 20px 22px 22px;
}

.service-card h3 {
  color: var(--blue);
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.works-section {
  background: var(--cream);
}

.works-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.work-card {
  min-height: 320px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blue);
}

.work-card.big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 664px;
}

.work-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 36, 66, 0.78), rgba(16, 36, 66, 0.05));
}

.work-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
}

.work-info span {
  color: #ffb079;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.work-info h3 {
  margin: 8px 0 0;
  font-size: 1.55rem;
}

.cta {
  max-width: 1320px;
  margin: 40px auto 92px;
  padding: 54px;
  background: var(--blue);
  color: var(--white);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: var(--shadow);
}

.cta .small-title {
  background: rgba(255, 255, 255, 0.08);
  color: #ffb079;
  border-color: rgba(255, 255, 255, 0.16);
}

.cta h2 {
  margin: 20px 0 12px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.cta p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
  max-width: 620px;
}

.contacts {
  max-width: 1320px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.contact-box,
.contact-box h2 {
  color: var(--blue);
  margin: 0 0 16px;
  font-size: 2.2rem;
}

.contact-box p,
.contact-list {
  margin-top: 24px;
}

.credit {
  font-size: 0.9rem;
  color: var(--blue) !important;
  font-weight: 800;
}

footer {
  background: var(--blue);
  color: var(--white);
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer p {
  margin: 0;
  opacity: 0.82;
}

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .hero-image img {
    height: 520px;
  }

  .services-grid,
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    height: auto;
    padding: 0;
    top: 8px;
  }

  .brand-logo {
    width: 46px;
  }

  .brand h1 {
    font-size: 1rem;
  }

  .brand p {
    font-size: 0.56rem;
  }

  .header-btn {
    padding: 11px 15px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 48px 16px 50px;
    gap: 34px;
  }

  .hero h2 {
    font-size: 3.05rem;
  }

  .hero-image {
    border-width: 7px;
    border-radius: 28px;
  }

  .hero-image img {
    height: 410px;
  }

  .image-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .proof-strip,
  .services-grid,
  .works-grid,
  .contacts {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    padding: 0 16px;
  }

  .section {
    padding: 72px 16px;
  }

  .work-card.big {
    grid-column: span 1;
    min-height: 360px;
  }

  .work-card {
    min-height: 320px;
  }

  .cta {
    margin: 30px 16px 72px;
    padding: 32px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* AJUSTES PEDIDOS — menos bordas, texto menor, fotos sem filtro */
.hero h2 {
  font-size: clamp(2.7rem, 4.9vw, 5rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.05em !important;
}

.hero p {
  max-width: 570px;
}

.hero-image {
  border: 0 !important;
}

.hero-image img {
  height: 560px !important;
}

.image-label {
  background: rgba(16, 36, 66, 0.82);
}

.work-card::after {
  display: none !important;
}

.work-info {
  background: rgba(16, 36, 66, 0.78);
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 14px 16px;
  border-radius: 18px;
  left: 18px;
  right: auto;
  bottom: 18px;
}

.work-card img {
  filter: none !important;
}

.service-card img {
  filter: none !important;
}

/* STRISCIA SCORREVOLE */
.marquee-strip {
  max-width: 1320px;
  margin: 0 auto 28px;
  overflow: hidden;
  border-top: 1px solid rgba(16, 36, 66, 0.18);
  border-bottom: 1px solid rgba(16, 36, 66, 0.18);
  background: rgba(255, 250, 240, 0.52);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.marquee-track span::before {
  content: "•";
  color: var(--orange);
  margin-right: 18px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* CONTATORI */
.stats-strip {
  max-width: 1320px;
  margin: 0 auto 34px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-strip article {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(16, 36, 66, 0.12);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(16, 36, 66, 0.06);
}

.stats-strip strong {
  display: block;
  color: var(--orange);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.stats-strip span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

@media (max-width: 680px) {
  .hero h2 {
    font-size: 2.55rem !important;
  }

  .hero-image img {
    height: 360px !important;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .marquee-track {
    animation-duration: 20s;
  }
}

/* RIMOZIONE CONTATORI — lasciamo solo la striscia servizi */
.stats-strip,
.proof-strip {
  display: none !important;
}

.marquee-strip {
  margin-bottom: 0 !important;
}

/* RITOCCO ESTETICO — font più moderno e titoli meno giganti */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif !important;
}

h1,
h2,
h3,
.brand h1,
.hero h2,
.section-head h2,
.cta h2,
.contact-box h2 {
  font-family: 'Manrope', Arial, Helvetica, sans-serif !important;
}

.hero {
  padding-top: 34px !important;
  padding-bottom: 58px !important;
}

.hero h2 {
  max-width: 620px !important;
  font-size: clamp(2.35rem, 4.1vw, 4.35rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.045em !important;
  font-weight: 800 !important;
}

.hero p {
  max-width: 560px !important;
  font-size: 1.04rem !important;
  line-height: 1.68 !important;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.6rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.service-card h3,
.work-info h3 {
  font-size: 1.18rem !important;
  line-height: 1.25 !important;
}

.brand h1 {
  font-size: 1.18rem !important;
  letter-spacing: -0.02em !important;
}

.brand p {
  letter-spacing: 0.15em !important;
}

.tag,
.small-title {
  font-size: 0.68rem !important;
  letter-spacing: 0.11em !important;
}

.hero-image img {
  height: 535px !important;
}

.image-label strong {
  font-size: 1.35rem !important;
}

@media (max-width: 680px) {
  .hero h2 {
    font-size: 2.35rem !important;
    line-height: 1.06 !important;
  }

  .hero p {
    font-size: 1rem !important;
  }
}

/* ANIMAZIONE BANNER — entra da destra */
.hero-image {
  animation: bannerEnterRight 1.05s ease-out both;
}

@keyframes bannerEnterRight {
  from {
    opacity: 0;
    transform: translateX(80px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Piccola animazione anche per l'etichetta dentro la foto */
.image-label {
  animation: labelEnterUp 1s ease-out 0.35s both;
}

@keyframes labelEnterUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rispetta utenti che preferiscono meno movimento */
@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .image-label {
    animation: none !important;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 18px) !important;
    margin: 8px auto 0 !important;
    padding: 10px 12px !important;
    border-radius: 20px !important;
    gap: 8px !important;
  }

  .brand {
    min-width: 0 !important;
    gap: 9px !important;
    flex: 1 !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }

  .brand h1 {
    font-size: 0.95rem !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .brand p {
    font-size: 0.55rem !important;
    letter-spacing: 0.12em !important;
    line-height: 1.25 !important;
    max-width: 150px !important;
  }

  .header-btn {
    padding: 10px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 999px !important;
    flex-shrink: 0 !important;
  }

  .hero {
    padding: 38px 16px 42px !important;
    gap: 26px !important;
  }

  .tag,
  .small-title {
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
    padding: 8px 12px !important;
    max-width: 100% !important;
    line-height: 1.25 !important;
  }

  .hero h2 {
    font-size: 2.05rem !important;
    line-height: 1.07 !important;
    letter-spacing: -0.035em !important;
    margin-top: 22px !important;
  }

  .hero p {
    font-size: 0.98rem !important;
    line-height: 1.62 !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .btn {
    width: 100% !important;
    min-height: 50px !important;
    border-radius: 14px !important;
  }

  .hero-image {
    border-radius: 24px !important;
  }

  .hero-image img {
    height: 330px !important;
  }

  .image-label {
    display: none !important;
  }
}

/* SEZIONI NUOVE — vivendas, apartamentos, construção civil e materiais */
.services-grid.expanded {
  grid-template-columns: repeat(4, 1fr) !important;
}

.materials-section {
  background: var(--cream);
  padding-top: 82px;
  padding-bottom: 82px;
}

.materials-wrap {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--blue);
  color: var(--white);
  border-radius: 36px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
}

.materials-text .small-title {
  background: rgba(255,255,255,0.08);
  color: #ffb079;
  border-color: rgba(255,255,255,0.18);
}

.materials-text h2 {
  margin: 22px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
}

.materials-text p {
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 680px;
}

.materials-note {
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.58) !important;
}

.materials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.materials-list span {
  display: inline-flex;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 0.86rem;
  font-weight: 800;
}

.materials-list span:last-child {
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 1050px) {
  .services-grid.expanded {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .materials-wrap {
    grid-template-columns: 1fr;
  }
}

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

  .materials-section {
    padding: 60px 16px !important;
  }

  .materials-wrap {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .materials-text h2 {
    font-size: 2.1rem !important;
  }
}

/* Ajustes finais - site 4 páginas */
nav a.active { color: #d89232; font-weight: 800; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
.footer-links a { color: inherit; text-decoration: none; opacity: .85; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }


/* Organização da página Trabalhos por projeto */
.project-block {
  margin-top: 48px;
}

.project-title {
  max-width: 860px;
  margin-bottom: 24px;
}

.project-title h2 {
  margin: 8px 0 0;
}

@media (max-width: 760px) {
  body {
    padding-top: 128px;
  }

  .site-header {
    height: auto;
    min-height: 110px;
    padding: 12px 18px;
    flex-wrap: wrap;
    gap: 12px;
  }
}














/* OVERRIDE ICONE STRISCIA SERVIZI */
.marquee-track {
  gap: 34px !important;
  padding: 15px 0 !important;
}

.marquee-track span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.marquee-track span::before {
  content: "" !important;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0 !important;
  border-radius: 999px;
  background: rgba(255, 90, 24, 0.10);
  color: var(--orange);
  border: 1px solid rgba(255, 90, 24, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

/* ordem dos 8 serviços repetidos na faixa */
.marquee-track span:nth-child(8n+1)::before { content: "◆" !important; } /* Impermeabilizações */
.marquee-track span:nth-child(8n+2)::before { content: "▦" !important; } /* Pavimentos */
.marquee-track span:nth-child(8n+3)::before { content: "▱" !important; } /* Terraços */
.marquee-track span:nth-child(8n+4)::before { content: "⌂" !important; } /* Fachadas */
.marquee-track span:nth-child(8n+5)::before { content: "≈" !important; } /* Piscinas */
.marquee-track span:nth-child(8n+6)::before { content: "⚒" !important; } /* Remodelações */
.marquee-track span:nth-child(8n+7)::before { content: "✓" !important; } /* Acabamentos */
.marquee-track span:nth-child(8n+8)::before { content: "▣" !important; } /* Construção civil */

@media (max-width: 680px) {
  .marquee-track {
    gap: 28px !important;
  }

  .marquee-track span::before {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }
}


/* OVERRIDE ICONE FLAT STRISCIA SERVIZI */
.marquee-track span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.marquee-track span::before {
  content: "" !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin-right: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* ordem: Impermeabilizações, Pavimentos, Terraços, Fachadas, Piscinas, Remodelações, Acabamentos, Construção civil */
.marquee-track span:nth-child(8n+1)::before { content: "≋" !important; color: #ff6a1a !important; }   /* Impermeabilizações */
.marquee-track span:nth-child(8n+2)::before { content: "▦" !important; color: #0b2b57 !important; }   /* Pavimentos */
.marquee-track span:nth-child(8n+3)::before { content: "▱" !important; color: #ff6a1a !important; }   /* Terraços */
.marquee-track span:nth-child(8n+4)::before { content: "⌂" !important; color: #0b2b57 !important; }   /* Fachadas */
.marquee-track span:nth-child(8n+5)::before { content: "∿" !important; color: #ff6a1a !important; }   /* Piscinas */
.marquee-track span:nth-child(8n+6)::before { content: "⚒" !important; color: #0b2b57 !important; }   /* Remodelações */
.marquee-track span:nth-child(8n+7)::before { content: "✓" !important; color: #ff6a1a !important; }   /* Acabamentos */
.marquee-track span:nth-child(8n+8)::before { content: "▣" !important; color: #0b2b57 !important; }   /* Construção civil */

@media (max-width: 680px) {
  .marquee-track span::before {
    font-size: 0.88rem !important;
  }
}

/* HERO FINALE ORDINATA */
.hero-full-bg {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 470px !important;
  margin: 0 !important;
  padding: 56px 6vw 22px !important;
  display: grid !important;
  grid-template-columns: minmax(440px, 0.95fr) minmax(430px, 0.85fr) !important;
  align-items: start !important;
  gap: 46px !important;
  overflow: hidden !important;
  background-image:
    linear-gradient(90deg,
      rgba(255, 239, 190, 0.80) 0%,
      rgba(255, 239, 190, 0.60) 34%,
      rgba(255, 248, 226, 0.42) 68%,
      rgba(255, 248, 226, 0.30) 100%
    ),
    url("../img/hero/hero-construcao-alicerce.png") !important;
  background-position: center top !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.hero-visual-cards,
.hero-text-panel {
  position: relative !important;
  z-index: 2 !important;
}

.hero-visual-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: 225px 165px !important;
  gap: 14px !important;
  min-height: 410px !important;
  margin-top: 0 !important;
  align-self: start !important;
}

.hero-mini-card {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  float: none !important;
  border-radius: 24px !important;
  background: transparent !important;
  box-shadow: 0 14px 28px rgba(16, 36, 66, 0.15) !important;
}

.hero-mini-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.hero-mini-card-obra {
  grid-column: 1 / 3 !important;
  grid-row: 1 !important;
}

.hero-mini-card-terraco {
  grid-column: 1 !important;
  grid-row: 2 !important;
}

.hero-mini-card-piscina {
  grid-column: 2 !important;
  grid-row: 2 !important;
}

.hero-text-panel {
  max-width: 590px !important;
  margin-left: 22px !important;
  justify-self: end !important;
  align-self: start !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.hero-text-panel .tag {
  white-space: nowrap !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.075em !important;
  padding: 8px 14px !important;
  max-width: none !important;
  margin-bottom: 12px !important;
}

.hero-text-panel h2 {
  white-space: nowrap !important;
  max-width: none !important;
  margin: 0 0 18px !important;
  font-size: clamp(2.08rem, 2.55vw, 2.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.052em !important;
}

.hero-text-panel p {
  max-width: 585px !important;
  margin: 0 !important;
  color: #061a35 !important;
  font-size: 1.055rem !important;
  line-height: 1.66 !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 12px rgba(255, 248, 226, 0.65) !important;
}

.hero-text-panel .hero-actions {
  margin-top: 82px !important;
  gap: 36px !important;
}

@media (max-width: 1050px) {
  .hero-full-bg {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 68px 24px 28px !important;
    gap: 28px !important;
  }

  .hero-visual-cards {
    grid-template-rows: 210px 150px !important;
    min-height: 380px !important;
    max-width: 680px !important;
  }

  .hero-text-panel {
    margin-left: 0 !important;
    justify-self: start !important;
    max-width: 760px !important;
  }

  .hero-text-panel h2 {
    white-space: normal !important;
  }

  .hero-text-panel .hero-actions {
    margin-top: 42px !important;
    gap: 22px !important;
  }
}

@media (max-width: 680px) {
  .hero-full-bg {
    padding: 114px 16px 30px !important;
  }

  .hero-visual-cards {
    grid-template-columns: 1fr !important;
    grid-template-rows: 170px 130px 130px !important;
    min-height: auto !important;
    gap: 10px !important;
  }

  .hero-mini-card-obra,
  .hero-mini-card-terraco,
  .hero-mini-card-piscina {
    grid-column: 1 !important;
  }

  .hero-mini-card-obra { grid-row: 1 !important; }
  .hero-mini-card-terraco { grid-row: 2 !important; }
  .hero-mini-card-piscina { grid-row: 3 !important; }

  .hero-text-panel h2 {
    white-space: normal !important;
    font-size: 2.2rem !important;
  }
}
/* FIM HERO FINALE ORDINATA */








/* OVERRIDE SOLO PILLOLA CITTA PIU A DESTRA */
.hero-text-panel .tag {
  display: flex !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}


/* OVERRIDE CENTRO REALE PILLOLA E TITOLO */
.hero-text-panel .tag {
  display: flex !important;
  width: fit-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.hero-text-panel h2 {
  display: block !important;
  width: max-content !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  white-space: nowrap !important;
}




/* HERO PUNTI FORTI */
.hero-text-panel p {
  max-width: 590px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  font-size: 1.04rem !important;
  line-height: 1.62 !important;
  font-weight: 500 !important;
  color: #061a35 !important;
}

.hero-points {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 610px;
  margin: 26px auto 0;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 248, 226, 0.70);
  border: 1px solid rgba(16, 36, 66, 0.12);
  color: #061a35;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(16, 36, 66, 0.06);
}

.hero-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
}

.hero-text-panel .hero-actions {
  margin-top: 54px !important;
  gap: 38px !important;
  justify-content: center !important;
}

@media (max-width: 680px) {
  .hero-points {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .hero-points span {
    font-size: 0.74rem;
  }

  .hero-text-panel .hero-actions {
    margin-top: 34px !important;
    gap: 16px !important;
  }
}
/* FIM HERO PUNTI FORTI */


/* OVERRIDE SFONDO HERO MENO VISIBILE */
.hero-full-bg {
  background-image:
    linear-gradient(180deg,
      rgba(255, 248, 226, 0.10) 0%,
      rgba(255, 248, 226, 0.34) 100%
    ),
    linear-gradient(90deg,
      rgba(255, 239, 190, 0.82) 0%,
      rgba(255, 239, 190, 0.64) 34%,
      rgba(255, 248, 226, 0.55) 68%,
      rgba(255, 248, 226, 0.48) 100%
    ),
    url("../img/hero/hero-construcao-alicerce.png") !important;
}


/* OVERRIDE PILLOLE HERO SENZA PUNTINI */
.hero-points span {
  position: relative !important;
  padding: 11px 16px 13px !important;
  gap: 0 !important;
}

.hero-points span::before {
  display: none !important;
  content: none !important;
}

.hero-points span::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 90, 24, 0.75);
}


/* OVERRIDE ANIMAZIONE FOTO HERO */
.hero-mini-card {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  animation: heroPhotoIn 0.9s cubic-bezier(.2,.8,.2,1) forwards;
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    filter 0.38s ease;
  will-change: transform;
}

.hero-mini-card-obra {
  animation-delay: 0.08s;
}

.hero-mini-card-terraco {
  animation-delay: 0.22s;
}

.hero-mini-card-piscina {
  animation-delay: 0.34s;
}

.hero-mini-card img {
  transition: transform 0.55s ease, filter 0.4s ease;
}

.hero-mini-card:hover {
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 22px 46px rgba(16, 36, 66, 0.22) !important;
  filter: brightness(1.03);
}

.hero-mini-card:hover img {
  transform: scale(1.045);
}

@keyframes heroPhotoIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* FIM OVERRIDE ANIMAZIONE FOTO HERO */


/* HOME SERVIÇOS ORDINADA */
.home-services {
  max-width: 1320px;
  margin: 46px auto 68px;
  padding: 0 24px;
}

.home-services-inner {
  padding: 42px 46px 46px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 239, 190, 0.52));
  border: 1px solid rgba(16, 36, 66, 0.10);
  box-shadow: 0 18px 42px rgba(16, 36, 66, 0.08);
}

.home-services-head {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-services-head .small-title {
  margin-left: auto;
  margin-right: auto;
}

.home-services-head h2 {
  margin: 14px auto 14px;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 850px;
}

.home-services-head p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(16, 36, 66, 0.82);
  font-size: 1.04rem;
  line-height: 1.68;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-services-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 36, 66, 0.10);
  box-shadow: 0 12px 28px rgba(16, 36, 66, 0.06);
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.home-services-grid article.service-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s cubic-bezier(.2,.8,.2,1),
    transform 0.75s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.home-services-grid article.service-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-services-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(16, 36, 66, 0.12);
  border-color: rgba(255, 90, 24, 0.22);
}

.service-mark {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 90, 24, 0.25));
}

.home-services-grid article:nth-child(even) .service-mark {
  background: linear-gradient(90deg, var(--blue), rgba(16, 36, 66, 0.18));
}

.home-services-grid h3 {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.home-services-grid p {
  margin: 0;
  color: rgba(16, 36, 66, 0.76);
  font-size: 0.96rem;
  line-height: 1.62;
}

@media (max-width: 1050px) {
  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-services-inner {
    padding: 38px 30px;
  }
}

@media (max-width: 680px) {
  .home-services {
    margin: 42px auto 56px;
    padding: 0 16px;
  }

  .home-services-inner {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-services-head h2 {
    font-size: 2rem;
  }
}
/* FIM HOME SERVIÇOS ORDINADA */


/* PAINEL ICONE SERVICOS */
.services-icons-panel {
  margin: 34px 0 42px;
  padding: 48px 34px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(11, 43, 87, 0.94), rgba(16, 36, 66, 0.96)),
    url("assets/img/hero/hero-construcao-alicerce.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(16, 36, 66, 0.16);
  overflow: hidden;
}

.services-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 32px;
}

.services-icons-grid article {
  text-align: center;
  color: #fff;
  transform: translateY(0);
  transition: transform 0.28s ease;
}

.services-icons-grid article:hover {
  transform: translateY(-7px);
}

.service-round-icon {
  width: 126px;
  height: 126px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 3px solid rgba(86, 207, 255, 0.80);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.service-round-icon svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-round-icon svg path:nth-child(even) {
  stroke: var(--orange);
}

.services-icons-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .services-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .services-icons-panel {
    padding: 34px 18px;
    border-radius: 28px;
  }

  .services-icons-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-round-icon {
    width: 108px;
    height: 108px;
  }

  .service-round-icon svg {
    width: 60px;
    height: 60px;
  }
}
/* FIM PAINEL ICONE SERVICOS */

/* PROCESSO SERVICOS */
.process-section {
  background: var(--cream);
  padding-top: 78px;
}

.process-section > .section-head {
  margin-bottom: 36px;
}

.process-section > .section-head h2 {
  max-width: 1180px;
  font-size: clamp(2.15rem, 3.1vw, 3.25rem) !important;
  line-height: 1.08 !important;
}

.process-section > .section-head p {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.process-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid article {
  background: var(--white);
  border: 1px solid rgba(16, 36, 66, 0.10);
  border-radius: 26px;
  padding: 28px 24px;
  box-shadow: 0 16px 34px rgba(16, 36, 66, 0.07);
}

.process-grid span {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 122, 54, 0.25));
}

.process-grid article:nth-child(even) span {
  background: linear-gradient(90deg, var(--blue), rgba(16, 36, 66, 0.18));
}

.process-grid h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.25;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

@media (max-width: 1050px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .process-section {
    padding-top: 60px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}
/* FIM PROCESSO SERVICOS */

/* MINI FASCIA SERVICOS */
.services-bridge {
  max-width: 1320px;
  margin: 0 auto 30px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 36, 66, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 14px 32px rgba(16, 36, 66, 0.06);
}

.services-bridge p {
  margin: 0;
  color: var(--blue);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 700;
}

.services-bridge div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.services-bridge span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 122, 54, 0.10);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .services-bridge {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-bridge div {
    justify-content: flex-start;
  }
}
/* FIM MINI FASCIA SERVICOS */

/* CONTADOR ANIMADO SERVICOS */
.services-counters {
  max-width: 1320px;
  margin: 44px auto 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-counters article {
  background: var(--white);
  border: 1px solid rgba(16, 36, 66, 0.10);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 14px 32px rgba(16, 36, 66, 0.07);
  text-align: center;
}

.services-counters strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.counter-suffix {
  color: var(--orange);
}

.services-counters article > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .services-counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-counters {
    grid-template-columns: 1fr;
  }
}
/* FIM CONTADOR ANIMADO SERVICOS */

/* TRABALHOS - GRIGLIA 2 FOTO */
.works-grid-two {
  max-width: 660px;
  grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 760px) {
  .works-grid-two {
    max-width: 100%;
    grid-template-columns: 1fr !important;
  }
}
/* FIM TRABALHOS - GRIGLIA 2 FOTO */\n
\n

/* CONTACTOS V2 LIMPO */
.contact-page-v2 {
  padding: 104px 24px 96px !important;
  background: linear-gradient(180deg, var(--cream), #fff9ec) !important;
}

.contact-v2-head {
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(16, 36, 66, 0.08);
}

.contact-v2-head h2 {
  margin: 18px 0 10px;
  max-width: 880px;
  color: var(--blue);
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-v2-head p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-v2-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.contact-v2-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(16, 36, 66, 0.11);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: 0 14px 30px rgba(16, 36, 66, 0.06);
}

.contact-v2-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 1.42rem;
  line-height: 1.18;
}

.contact-v2-note {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-v2-list {
  display: grid;
  gap: 13px;
}

.contact-v2-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(16, 36, 66, 0.09);
}

.contact-v2-list strong,
.contact-v2-zone strong {
  display: block;
  color: var(--blue);
  font-size: 1.02rem;
}

.contact-v2-list p,
.contact-v2-zone p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.contact-v2-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 122, 54, 0.12);
  color: var(--orange);
  font-weight: 900;
  white-space: nowrap;
}

.contact-v2-zone {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 36, 66, 0.10);
}

.contact-v2-zone a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 16px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(255, 122, 54, 0.24);
  text-decoration: none;
}

.contact-v2-form {
  display: grid;
  gap: 16px;
}

.contact-v2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-v2-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-v2-form input,
.contact-v2-form select,
.contact-v2-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(16, 36, 66, 0.18);
  border-radius: 16px;
  padding: 14px 14px;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  outline: none;
}

.contact-v2-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-v2-form input:focus,
.contact-v2-form select:focus,
.contact-v2-form textarea:focus {
  border-color: rgba(255, 122, 54, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 122, 54, 0.10);
}

.contact-v2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-v2-actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact-v2-primary,
.contact-v2-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.contact-v2-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(255, 122, 54, 0.24);
}

.contact-v2-secondary {
  background: rgba(16, 36, 66, 0.06);
  color: var(--blue);
  border: 1px solid rgba(16, 36, 66, 0.12) !important;
}

@media (max-width: 980px) {
  .contact-v2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-page-v2 {
    padding: 92px 16px 70px !important;
  }

  .contact-v2-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-v2-form-row,
  .contact-v2-list article {
    grid-template-columns: 1fr;
  }

  .contact-v2-list a,
  .contact-v2-zone a,
  .contact-v2-primary,
  .contact-v2-secondary {
    width: 100%;
  }
}
/* FIM CONTACTOS V2 LIMPO */

/* FOOTER PROFISSIONAL */
.site-footer {
  background: var(--blue) !important;
  color: #ffffff !important;
  padding: 34px 32px 18px !important;
}

.footer-main {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col p {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
  font-size: 0.92rem;
}

.footer-col a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links-col > a:not(.footer-help-btn) {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.88);
  line-height: 1.35;
}

.footer-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--orange);
  color: #ffffff !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(255, 82, 28, 0.22);
}

.footer-bottom {
  max-width: 1180px;
  margin: 24px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    padding: 34px 22px 18px !important;
  }
}
/* FIM FOOTER PROFISSIONAL */


/* FIX FOOTER BLU COMPATTO FINALE */
.site-footer {
  display: block !important;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 30px 32px 16px !important;
  text-align: left !important;
}

.site-footer .footer-main {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1.25fr !important;
  gap: 42px !important;
  align-items: start !important;
}

.site-footer .footer-col h3 {
  margin: 0 0 10px !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.08em !important;
}

.site-footer .footer-col p {
  margin: 0 0 7px !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
}

.site-footer .footer-help-btn {
  min-height: 42px !important;
  padding: 0 18px !important;
  margin-bottom: 14px !important;
  border-radius: 12px !important;
}

.site-footer .footer-links-col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  column-gap: 24px !important;
  row-gap: 7px !important;
  align-items: start !important;
}

.site-footer .footer-links-col .footer-help-btn,
.site-footer .footer-links-col h3 {
  grid-column: 1 / -1 !important;
}

.site-footer .footer-links-col > a:not(.footer-help-btn) {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.35 !important;
}

.site-footer .footer-bottom {
  max-width: 1180px !important;
  margin: 22px auto 0 !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255,255,255,0.16) !important;
  text-align: left !important;
}

.site-footer .footer-bottom p {
  margin: 0 !important;
  font-size: 0.84rem !important;
  color: rgba(255,255,255,0.72) !important;
}

@media (max-width: 900px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .site-footer .footer-links-col {
    grid-template-columns: 1fr !important;
  }
}
/* FIM FIX FOOTER BLU COMPATTO FINALE */


/* FIX HOME MOBILE - HERO ORDINATA */
@media (max-width: 680px) {
  .hero-full-bg {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 38px 16px 46px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero-text-panel {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-text-panel .tag {
    margin: 0 auto 16px !important;
    max-width: 100% !important;
    justify-content: center !important;
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  .hero-text-panel h2 {
    font-size: 2.25rem !important;
    line-height: 1.02 !important;
    letter-spacing: -0.04em !important;
    margin: 0 0 16px !important;
  }

  .hero-text-panel p {
    max-width: 100% !important;
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    margin: 0 auto !important;
  }

  .hero-points {
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  .hero-points span {
    font-size: 0.72rem !important;
    padding: 8px 10px !important;
  }

  .hero-actions {
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 22px !important;
  }

  .hero-actions .btn {
    min-height: 46px !important;
    padding: 0 18px !important;
    font-size: 0.84rem !important;
  }

  .hero-visual-cards {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    display: block !important;
    position: relative !important;
  }

  .hero-mini-card {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-mini-card img {
    height: 190px !important;
    object-fit: cover !important;
    border-radius: 22px !important;
  }

  .hero-mini-card-terraco,
  .hero-mini-card-piscina {
    display: none !important;
  }
}
/* FIM FIX HOME MOBILE - HERO ORDINATA */

/* FIX HOME MOBILE - HERO CON 3 FOTO ORDINATE */
@media (max-width: 680px) {
  .hero-full-bg {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 34px 16px 46px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .hero-text-panel {
    order: 1 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .hero-visual-cards {
    order: 2 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    min-height: 0 !important;
    margin: 0 !important;
    position: relative !important;
  }

  .hero-mini-card {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .hero-mini-card-obra {
    grid-column: 1 / -1 !important;
  }

  .hero-mini-card-terraco,
  .hero-mini-card-piscina {
    display: block !important;
  }

  .hero-mini-card img {
    width: 100% !important;
    height: 135px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
  }

  .hero-mini-card-obra img {
    height: 190px !important;
  }
}
/* FIM FIX HOME MOBILE - HERO CON 3 FOTO ORDINATE */

/* HAMBURGER MOBILE PULITO */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 1050px) {
  .mobile-menu-btn {
    display: inline-flex !important;
    width: 46px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: var(--blue);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 10px 22px rgba(16, 36, 66, 0.18);
    flex: 0 0 auto;
  }

  .mobile-menu-btn span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header .header-btn {
    display: none !important;
  }

  .site-header nav {
    display: none !important;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    background: rgba(255, 248, 226, 0.98);
    border: 1px solid rgba(16, 36, 66, 0.12);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 18px 38px rgba(16, 36, 66, 0.18);
    backdrop-filter: blur(10px);
    z-index: 100000;
  }

  .site-header nav.is-open {
    display: grid !important;
    gap: 6px;
  }

  .site-header nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    color: var(--blue);
    font-weight: 900;
  }

  .site-header nav a.active,
  .site-header nav a:hover {
    background: rgba(255, 122, 54, 0.12);
    color: var(--orange);
  }
}

@media (max-width: 680px) {
  body {
    padding-top: 96px !important;
  }

  .site-header {
    width: calc(100% - 22px) !important;
    max-width: none !important;
    height: 76px !important;
    min-height: 76px !important;
    top: 8px !important;
    padding: 10px 12px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    border-radius: 22px !important;
  }

  .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
    gap: 8px !important;
  }

  .brand-logo {
    width: 44px !important;
    height: 40px !important;
  }

  .brand h1 {
    font-size: 1rem !important;
    white-space: nowrap !important;
  }

  .brand p {
    font-size: 0.5rem !important;
    letter-spacing: 0.12em !important;
    line-height: 1.12 !important;
    max-width: 150px !important;
  }
}
/* FIM HAMBURGER MOBILE PULITO */


/* FIX MOBILE HERO TITLE - titolo troppo largo su telefono */
@media (max-width: 480px) {
  .hero-text-panel h2 {
    font-size: clamp(30px, 8.4vw, 36px) !important;
    line-height: 1.05 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-text-panel {
    overflow: hidden !important;
  }
}
/* FIM FIX MOBILE HERO TITLE */


/* PAGINAS LEGAIS */
.legal-main {
  background: linear-gradient(180deg, rgba(255, 247, 224, 0.92), rgba(255, 255, 255, 0.96));
  padding: 54px 16px 76px;
}

.legal-page {
  width: min(960px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(9, 37, 73, 0.12);
  border-radius: 28px;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: 0 22px 70px rgba(9, 37, 73, 0.10);
}

.legal-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(9, 37, 73, 0.14);
  color: #f15a24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fff;
}

.legal-page h2 {
  margin: 0 0 8px;
  color: #092549;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-page h3 {
  margin: 30px 0 10px;
  color: #092549;
  font-size: 20px;
}

.legal-page p {
  margin: 0 0 14px;
  color: #40506a;
  font-size: 17px;
  line-height: 1.75;
}

.legal-page a {
  color: #f15a24;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  font-weight: 800;
  color: #718096 !important;
}

@media (max-width: 560px) {
  .legal-main {
    padding: 32px 12px 54px;
  }

  .legal-page {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .legal-page h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .legal-page p {
    font-size: 15.5px;
  }
}
/* FIM PAGINAS LEGAIS */


/* NETLIFY FORM HONEYPOT */
.netlify-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
/* FIM NETLIFY FORM HONEYPOT */


/* MENSAGEM FORMULARIO CONTACTOS */
.form-status {
  display: none;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(19, 111, 74, 0.10);
  color: #136f4a;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: rgba(220, 38, 38, 0.10);
  color: #b91c1c;
}
/* FIM MENSAGEM FORMULARIO CONTACTOS */


/* FIX FINALE FOTO HERO MOBILE - 1 GRANDE + 2 PICCOLE */
@media (max-width: 680px) {
  .hero-full-bg {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 34px 16px 46px !important;
    overflow: hidden !important;
  }

  .hero-visual-cards {
    order: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
  }

  .hero-mini-card {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    overflow: hidden !important;
    border-radius: 22px !important;
  }

  .hero-mini-card-obra {
    grid-column: 1 / 3 !important;
    grid-row: 1 !important;
  }

  .hero-mini-card-terraco {
    grid-column: 1 / 2 !important;
    grid-row: 2 !important;
  }

  .hero-mini-card-piscina {
    grid-column: 2 / 3 !important;
    grid-row: 2 !important;
  }

  .hero-mini-card img {
    display: block !important;
    width: 100% !important;
    height: 138px !important;
    object-fit: cover !important;
    border-radius: 22px !important;
  }

  .hero-mini-card-obra img {
    height: 190px !important;
  }
}
/* FIM FIX FINALE FOTO HERO MOBILE */


/* BARRA CONTATTO MOBILE FIXA */
.mobile-contact-bar {
  display: none;
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(255, 248, 226, 0.96);
    border: 1px solid rgba(9, 37, 73, 0.12);
    box-shadow: 0 18px 45px rgba(9, 37, 73, 0.24);
    backdrop-filter: blur(10px);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 18px;
    font-size: 0.86rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-contact-bar a:first-child {
    background: #092549;
    color: #ffffff;
  }

  .mobile-contact-bar a:last-child {
    background: #f15a24;
    color: #ffffff;
  }
}
/* FIM BARRA CONTATTO MOBILE FIXA */

