/* ============================================================
   Centre de Fisioteràpia Castelldefels — componenti

   Generato leggendo il CSS degli HTML con un parser vero, non
   con espressioni regolari: la versione precedente aveva perso
   il wrapper di @keyframes lasciando `from` e `to` orfani, e
   l'animazione dell'hero non partiva mai. Il testo restava a
   opacity 0, cioè invisibile.

   Non ci sono selettori di elemento nudo (nav, footer, *):
   colpirebbero anche il markup che genera Kadence.
   ============================================================ */

html { scroll-behavior: smooth; }

/* ═══ HERO ═══════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* l'immagine arriva dallo style inline del blocco HTML, così ogni
     pagina ha la sua. Qui NON uso la scorciatoia `background:`, che
     azzererebbe il colore di sotto: serve come rete di sicurezza,
     perché se l'immagine non carica il testo bianco deve restare
     leggibile invece di sparire su fondo trasparente. */
  background-color: var(--negro);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,191,178,0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 80%, rgba(232,168,32,0.05) 0%, transparent 50%);
}
.hero:hover .hero-bg {
  transform: scale(1);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 60px 0 48px;
  text-align: right;
}
.hero-content h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 28px;
}
.hero-content h1 .aqui {
  font-weight: 600;
  color: var(--amarillo);
  font-style: italic;
}
.hero-content .hero-desc {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 36px;
}
.hero-content > * {
  /* nessun opacity: 0 qui: se l'animazione non parte — foglio non
     caricato, keyframes mancante, browser che le blocca — il testo
     deve restare visibile invece di sparire. L'opacity iniziale sta
     dentro il fotogramma `from`, dove non fa danni. */
  animation: fadeUp 0.8s ease both;
}
.hero-content .btn-reservar {
  animation-delay: 0.8s;
}

/* ═══ BARRA DATI ═══════════════════════════════════ */
.stats-bar {
  background: var(--amarillo);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--amarillo);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

/* ═══ ETICHETTE ═══════════════════════════════════ */
.section-label {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turquesa);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.label-highlight {
  color: var(--turquesa);
  font-weight: 700;
}
.label-grey {
  color: #888;
  font-weight: 400;
}
.title-highlight {
  color: var(--turquesa);
}
.title-highlight-white {
  color: #fff;
}
.label-grey-dark {
  color: rgba(13,13,13,0.5);
  font-weight: 400;
}
.label-highlight-dark {
  color: var(--negro);
  font-weight: 700;
}
.label-highlight-white {
  color: #fff;
  font-weight: 700;
}
.metodo-label {
  color: var(--negro) !important;
  font-weight: 700;
}
.metodo-label::before, .metodo-label::after {
  background: var(--negro) !important;
  opacity: 0.3;
}
.section-label::before, .section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--turquesa);
  opacity: 0.35;
}
.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

/* ═══ BOTTONI ═══════════════════════════════════ */
.btn-reservar {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--amarillo);
  color: var(--negro);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-reservar:hover {
  background: #d49618;
  transform: translateY(-1px);
}
.btn-mas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amarillo);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,168,32,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-mas:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-mas::after {
  content: "→";
}
.btn-reservar-small {
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amarillo);
  color: var(--negro);
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-reservar-small:hover {
  background: #d49618;
}

/* ═══ TRATTAMENTI ═══════════════════════════════════ */
.tratamientos {
  padding: 100px 48px 120px;
  background: var(--blanco-roto);
}
.tratamientos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 48px;
}
.trat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 16px;
  cursor: pointer;
  min-height: 320px;
  isolation: isolate;
}
.trat-card-base {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: opacity 0.35s;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.15) 70%, transparent 100%);
}
.trat-card:hover .trat-card-base {
  opacity: 0;
}
.trat-card h3 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.trat-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.trat-hint {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--amarillo);
  text-transform: uppercase;
}
.trat-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.93);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}
.trat-card:hover .trat-card-hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.trat-card-hover h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--turquesa);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.subtrat {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-left: 2px solid rgba(0,191,178,0.35);
  line-height: 1.3;
  transition: border-color 0.2s, color 0.2s;
}
.subtrat:hover {
  border-color: var(--amarillo);
  color: #fff;
}
.tratamientos-cta {
  text-align: center;
  margin-top: 48px;
}
.trat-page {
  padding: 80px 48px 100px;
  background: var(--blanco-roto);
}
.trat-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.categ-card {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.categ-card-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.categ-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.categ-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
}
.categ-card-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.categ-card-sub {
  font-size: 15px;
  color: var(--turquesa);
  font-weight: 500;
  margin-bottom: 10px;
}
.categ-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 620px;
}
.categ-accord-list {
  list-style: none;
  padding: 0 48px;
  background: var(--blanco-roto);
}

/* ═══ ACCORDION ═══════════════════════════════════ */
.accord-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.accord-item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}
.accord-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--negro);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.accord-trigger:hover {
  color: var(--turquesa);
}
.accord-trigger.open {
  color: var(--turquesa);
}
.accord-arrow {
  font-size: 24px;
  color: var(--turquesa);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}
.accord-trigger.open .accord-arrow {
  transform: rotate(45deg);
}
.accord-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accord-body.open {
  max-height: 500px;
}
.accord-inner {
  padding: 8px 0 32px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: start;
}
.accord-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.accord-photo {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--beis);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accord-photo span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 8px;
}

/* ═══ METODO ═══════════════════════════════════ */
.metodo {
  padding: 100px 48px;
  background: var(--turquesa);
}
.metodo .section-label {
  color: var(--negro);
}
.metodo .section-label::before, .metodo .section-label::after {
  background: var(--negro);
}
.metodo .section-title {
  color: var(--negro);
  font-weight: 700;
}
.pasos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pasos::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: rgba(13,13,13,0.15);
}
.paso {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.paso-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(13,13,13,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--negro);
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, border-color 0.3s;
}
.paso:hover .paso-num {
  background: var(--negro);
  color: var(--turquesa);
  border-color: var(--negro);
}
.paso h4 {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--negro);
  margin-bottom: 12px;
  font-weight: 600;
}
.paso p {
  font-size: 13px;
  color: rgba(13,13,13,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.paso .btn-mas {
  color: var(--negro);
  border-color: rgba(13,13,13,0.4);
}
.paso .btn-mas:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.pasos-page {
  padding: 56px 48px 80px;
  background: var(--turquesa);
}
.pasos-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
}
.paso-card {
  background: rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 40px 32px;
  cursor: default;
  transition: background 0.35s, transform 0.35s;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  overflow: hidden;
}
.paso-card:hover {
  background: #fff;
  transform: translateY(-6px);
}
.paso-card:hover .paso-num {
  border-color: var(--negro);
  color: var(--negro);
  background: rgba(13,13,13,0.06);
}
.paso-titulo {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--negro);
  transition: color 0.35s;
}
.paso-texto {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.paso-card:hover .paso-texto {
  max-height: 300px;
  opacity: 1;
}
.paso-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquesa);
  text-decoration: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
  margin-top: auto;
}
.paso-card:hover .paso-cta {
  max-height: 40px;
  opacity: 1;
}
.paso-cta::after {
  content: "→";
}

/* ═══ TECNOLOGIA ═══════════════════════════════════ */
.tecnologia {
  padding: 100px 48px;
  background: var(--blanco-roto);
}
.maquinaria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.maq-flip-card {
  perspective: 1000px;
  height: 190px;
  cursor: pointer;
}
.maq-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.maq-flip-card:hover .maq-flip-inner {
  transform: rotateY(180deg);
}
.maq-front, .maq-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
}
.maq-front {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}
.maq-flip-card:hover .maq-front {
  border-color: var(--turquesa);
}
.maq-icon {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}
.maq-name {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--negro);
}
.maq-hint {
  font-size: 18px;
  color: var(--turquesa);
  font-weight: 300;
  line-height: 1;
  position: absolute;
  bottom: 14px;
  right: 18px;
  opacity: 0.6;
}
.maq-back {
  background: var(--blanco-roto);
  transform: rotateY(180deg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.maq-icon-small {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.maq-back-name {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquesa);
  text-align: center;
}
.maq-back-text {
  font-family: "Outfit", sans-serif;
  font-size: 12.5px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  text-align: center;
}

/* ═══ TECNICHE ═══════════════════════════════════ */
.tecnicas {
  padding: 80px 48px;
  background: var(--blanco-roto);
}
.tecnicas-grupos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.tec-grupo {
  padding: 28px 28px;
  border-left: 1px solid rgba(13,13,13,0.1);
}
.tec-grupo:nth-child(3n/**/+1) {
  border-left: none;
}
.tec-grupo-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 10px;
}
.tec-grupo-items {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.tec-item span {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--negro);
  letter-spacing: 0.02em;
}

/* ═══ TEAM ═══════════════════════════════════ */
.equipo-page {
  padding: 80px 48px 100px;
  background: var(--blanco-roto);
}
.equipo-page-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.equipo-intro-text {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.equipo-intro-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.85;
}
.equipo-values {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 72px;
}
.equipo-value {
  background: #fff;
  border-radius: 50px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.equipo-value-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--turquesa);
  flex-shrink: 0;
}
.equipo-value span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--negro);
}
.equipo-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 48px;
  color: var(--negro);
}
.equipo-title span {
  color: var(--turquesa);
}
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.equipo-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.25s;
}
.equipo-card:hover {
  border-color: var(--turquesa);
  transform: translateY(-4px);
}
.equipo-card-photo {
  width: 100%;
  height: 200px;
  background: var(--beis) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipo-card-photo span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.equipo-card-body {
  padding: 24px 28px 32px;
}
.equipo-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 4px;
}
.equipo-card-spec {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 14px;
}
.equipo-card-text {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}

/* ═══ RECENSIONI ═══════════════════════════════════ */
.testimonios {
  padding: 100px 48px;
  background: var(--blanco-roto);
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 56px auto 0;
}
.testimonio {
  background: #fff;
  padding: 40px 36px;
  position: relative;
  border-top: 3px solid var(--turquesa);
}
.testimonio::before {
  content: "\"";
  font-family: "Outfit", sans-serif;
  font-size: 80px;
  color: var(--turquesa);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}
.testimonio p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gris-medio);
  margin-bottom: 24px;
  padding-top: 16px;
}
.testimonio-autor {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--negro);
  font-weight: 600;
}
.testimonio-source {
  font-size: 11px;
  color: var(--gris-claro);
  margin-top: 2px;
}
.estrellas {
  color: var(--amarillo);
  font-size: 13px;
  margin-bottom: 16px;
}

/* ═══ CONTATTI ═══════════════════════════════════ */
.contacto {
  padding: 100px 48px;
  background: var(--negro);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.contacto-info .section-label {
  color: var(--turquesa);
  justify-content: flex-start;
}
.contacto-info .section-label::after {
  display: none;
}
.contacto-info .section-label::before {
  display: none;
}
.contacto-info h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 36px;
  line-height: 1.15;
}
.contacto-dato {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contacto-dato-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  opacity: 0.4;
  margin-top: 2px;
}
.contacto-dato p {
  font-size: 15px;
  color: var(--gris-medio);
  line-height: 1.6;
}
.contacto-dato a {
  color: var(--gris-medio);
  text-decoration: none;
}
.contacto-dato a:hover {
  color: var(--turquesa);
}
.contacto-map {
  background: var(--gris-medio);
  height: 400px;
  position: relative;
  overflow: hidden;
}
.contacto-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) contrast(1.1);
}
.contacto-wrap {
  background: var(--blanco-roto);
  padding: 100px 48px;
}
.contacto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ═══ IMPAGINAZIONE ═══════════════════════════════════ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.funciona-intro {
  padding: 80px 48px 0;
  background: var(--blanco-roto);
}
.funciona-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.funciona-intro p {
  font-size: 17px;
  line-height: 1.85;
  color: #444;
}
.funciona-intro strong {
  color: var(--negro);
  font-weight: 600;
}

/* ═══ ALTRO ═══════════════════════════════════════════ */
:root {
  --amarillo: #E8A820;
  --turquesa: #00BFB2;
  --beis: #C4B9A8;
  --blanco-roto: #F3F2EE;
  --negro: #0D0D0D;
  --gris-medio: #666;
  --gris-claro: #999;
}
.nav-logo img {
  height: 64px;
  background: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--turquesa);
}
.nav-links a.active {
  color: var(--turquesa) !important;
}

/* ═══ ANIMAZIONI ═══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

