@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');
:root{
  --bg:#f6f7f9;
  --card: #f3e1dc;
  --text:#1f2937;
  --muted:#6b7280;
  --brand:#2f6f6a;
  --brand2:#245a56;
  --border:#e5e7eb;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar{
  background: rgba(255,255,255,.85);
  border-bottom:1px solid var(--border);
  position: sticky;
  top:0;
  backdrop-filter: blur(8px);
  z-index: 10;
}

.nav{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
}

.menu{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size: 14px;
}
.menu a{
  padding:8px 10px;
  border-radius: 10px;
}
.menu a.active, .menu a:hover{
  background: #e9f3f2;
  text-decoration:none;
}

.hero{
  padding: 54px 0 22px;
}
.hero h1{
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.15;
}
.hero p{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 70ch;
}
.cta{
  display:inline-block;
  background: var(--brand);
  color:white;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}
.cta:hover{
  background: var(--brand2);
  text-decoration:none;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-bottom: 30px;
}

.card{
  padding: 36px;          /* riquadro più grande */
  border-radius: 20px;
  margin-bottom: 24px;       /* lo spazio lo gestiamo con page-section */
}

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

@media (min-width: 820px){
  .card.half{grid-column: span 6;}
  .card.third{grid-column: span 4;}
}

h2{margin: 0 0 10px; font-size: 20px;}
ul{margin: 8px 0 0 18px}
.small{color:var(--muted); font-size: 14px;}
.footer{
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.badge{
  display:inline-block;
  padding: 6px 10px;
  border:1px solid var(--border);
  border-radius: 999px;
  background:white;
  font-size: 13px;
  color: var(--muted);
}
/* --- MENU STYLE (dropdown + contatti button) --- */
.topbar{
  background: rgba(255,255,255,.92);
  border-bottom:1px solid var(--border);
  position: sticky;
  top:0;
  z-index: 20;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 0;
}

.brand{
  font-weight:700;
  letter-spacing:.2px;
  white-space: nowrap;
}

.menu{
  display:flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

/* Link base */
.menu > a, .dropbtn{
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
}

.menu > a:hover, .dropbtn:hover{
  background: #e9f3f2;
  text-decoration: none;
}

/* Active */
.menu a.active{
  background: #e9f3f2;
  text-decoration: none;
}

/* Contatti as button */
.menu a.cta-nav{
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
}
.menu a.cta-nav:hover{
  background: var(--brand2);
}

/* Dropdown */
.dropdown{
  position: relative;
  display: inline-block;
}

.dropbtn{
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.dropdown-content{
  display:none;
  position:absolute;
  right: 0;
  top: 38px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  padding: 6px;
}

.dropdown-content a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--text);
}
.dropdown-content a:hover{
  background: #f3f4f6;
  text-decoration:none;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-content{
  display:block;
}

/* Mobile: stack menu a bit nicer */
@media (max-width: 720px){
  .nav{align-items:flex-start}
  .menu{justify-content:flex-start}
  .dropdown-content{right:auto; left:0;}
}
/* HERO con immagine grande */
.hero-banner{
  min-height: 70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 140px 20px 90px;
min-height: 70vh;
  position: relative;
  color: white;
 background-image:
linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
url("hero.jpg");


  background-size: cover;
  background-position: center;
}

}

.hero-title{
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-sub{
  font-size: 26px;
  margin-top: 10px;
}

/* Menu sopra l’immagine */
.topbar{
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 720px){
  .hero-title{font-size: 34px;}
  .hero-banner{min-height: 60vh; padding-top: 110px;}
}
.brand{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 500;
}
/* FORZA STILE HERO (vince su tutto) */
.hero-banner .hero-title{
  font-family: 'Playfair Display', serif !important;
  font-size: 84px !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

.hero-banner .hero-sub{
  font-size: 28px !important;
  margin-top: 10px !important;
}

/* Citazione più in basso e leggibile */
.hero-banner .hero-quote{
  display: block;
  margin-top: 34px !important;
  font-style: italic;
  font-size: 18px !important;
  opacity: 0.95;
}
/* ====== TIPOGRAFIA PIÙ GRANDE (globale) ====== */
html { font-size: 18px; }                 /* prima era più piccolo */
body { line-height: 1.7; }

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }

.menu a { font-size: 1rem; }             /* voci menu più grandi */
.brand { font-size: 1.05rem; }

/* ====== SEZIONI A SFONDO COLORATO ====== */
.section {
  background: #f4f7fb;
  padding: 20px 0;   /* prima era più grande */
}

.section.alt{
  background: #eaf0f8;   /* azzurro leggermente più intenso */
}

.section .container{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ====== CARD (blocchi interni chiari) ====== */
.card{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
/* SPAZIO UNIFORME TRA I RIQUADRI */
.section .card {
  margin-bottom: 10px;
}

.section .card:last-child {
  margin-bottom: 0;
}
/* ====== GRIGLIA TESTO + FOTO ====== */
.grid-2{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

@media (max-width: 820px){
  .grid-2{ grid-template-columns: 1fr; }
}
.section .card {
  margin-bottom: 12px;   /* spazio tra i riquadri */
}

.section .card:last-child {
  margin-bottom: 0;
}

/* ====== FOTO PROFILO ====== */
.profile-photo{
  width: 100%;
  max-width: 360px;
  border-radius: 22px;   /* angoli morbidi */
  display: block;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.caption{
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 10px;
  text-align: center;
}

/* ====== SPAZIATURE TESTI ====== */
.card p{ margin: 0.8rem 0; }

body{
  font-size: 1.05rem;
  line-height: 1.75;
}

.card p{
  font-size: 1.05rem;
}

/* --- CHI SONO: riquadri più ariosi e azzurri --- */
.page-section{
  margin: 28px auto;              /* spazio tra i riquadri */
}

.card{
  background: rgba(210, 230, 245, 0.75);  /* azzurro leggero */
  border: 1px solid rgba(120, 160, 190, 0.25);
  border-radius: 18px;            /* angoli arrotondati */
  padding: 26px;                  /* riquadro più grande */
  margin: 22px 0;                 /* spazio tra i riquadri */
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* se hai una griglia di riquadri */
.grid{
  gap: 22px;
}

.about-photo{
  display:flex;
  justify-content:center;
  margin: 18px 0 26px;
}

.about-photo img{
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(120,160,190,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.card p{
  font-size: 18px;
  line-height: 1.7;
}

.card h2, .card h3{
  font-size: 28px;
  margin-top: 0;
}
.lead{
  font-size: 18px;
  margin: 8px 0 18px;
  opacity: 0.9;
}
.page-section {
  margin-bottom: 40px;
}
.card {
  background-color: #f3e6e3;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.card h2 {
  margin-top: 0;
  font-size: 22px;
}
.btn-whatsapp{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover{
  opacity: 0.9;
}
.icon-list{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
}
.icon-list li{
  padding: 8px 0;
  font-size: 18px;
}
/* Pulsante WhatsApp nel menu */
.btn-whatsapp-menu{
  margin-left: 18px;
  padding: 8px 14px;
  border-radius: 18px;
  background-color: #25D366;
  color: white !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.page-section {
  display: flex;
  gap: 24px;              /* spazio tra i riquadri */
  flex-wrap: wrap;        /* vanno a capo su schermi piccoli */
  align-items: stretch;
}

/* ogni riquadro */
.page-section .card {
  flex: 1 1 220px;        /* larghezza flessibile */
}


.btn-whatsapp-menu:hover{
  opacity: 0.9;
  transform: scale(1.05);
}

.card h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #5a3b3b; /* marrone rosato */
}

.card p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a2a2a;
}
.page-section {
  margin-top: 50px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
/* GRID AREE DI INTERV.ENTO */
.container.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* CARD DENTRO LA GRID */
.container.grid .card {
  width: 100%;
}
/* AREE DI INTERVENTO: UNA SEZIONE PER RIGA */
.container.grid{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* CARD ORIZZONTALE */
.service-row{
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.service-row h2{
  min-width: 260px;
  margin-top: 0;
}

.service-row .small{
  flex: 1;
}
/* AREE DI INTERVENTO – titolo sopra, testo sotto */
.service-row{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row h2{
  margin: 0;
  font-size: 20px;
}

.service-row .small{
  margin: 0;
  line-height: 1.6;
}
/* MENU – link sempre cliccabili e stessa dimensione */
.menu a {
  font-size: 16px;
  padding: 8px 12px;
  display: inline-block;
}

/* stato attivo (pagina corrente) */
.menu a.active {
  font-weight: 600;
  opacity: 1;
  pointer-events: auto;
}
/* --- CHI SONO: testo + foto affiancati e centrati --- */

.about-grid {
  display: flex;
  gap: 40px;
  align-items: center; /* centra verticalmente la foto */
}

.about-text {
  flex: 2;
}

.about-photo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.page-section{
  margin: 90px 0;
}

.card{
  padding: 36px;
  border-radius: 20px;
}
.card{
  max-width: 860px;   /* ⬅️ riduce la larghezza */
  margin: 0 auto;     /* ⬅️ centra il riquadro */
  padding: 36px;
  border-radius: 20px;
}
/* Spazio più ampio tra i riquadri */
.card {
  margin-bottom: 40px;
}
/* Citazione in Home – font più grande */
.hero p {
  font-size: 26px;
  line-height: 1.6;
}
/* Citazione Home */
.hero > p {
  font-size: 26px;
  line-height: 1.6;
}
.hero .lead {
  font-size: 26px;
  line-height: 1.6;
}
.hero-quote{
  margin-top: 28px;
  font-style: italic;
  font-size: 26px;   /* qui è il “più grande” */
  line-height: 1.6;
  opacity: 0.95;
}
/* Nome in Home – stile firma */
.hero-title{
  font-family: 'Allura', cursive;
  font-size: 64px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
/* =========================
   HOME – HERO
========================= */

.hero-banner {
  text-align: center;
  padding: 90px 20px 80px;
}

.hero-title {
  font-family: 'Allura', 'Brush Script MT', cursive;
  font-size: 68px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 22px;
  margin-bottom: 28px;
}

.hero-quote {
  font-size: 26px;
  font-style: italic;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}
/* =========================
   HOME – HERO
========================= */

.hero-banner {
  text-align: center;
  padding: 90px 20px 80px;
}

.hero-title{
  font-family: 'Allura', 'Brush Script MT', cursive;
  font-style: italic;
  font-size: 68px;
  text-align: center;
  margin: 0 0 18px 0;
}

.hero-sub {
  font-size: 22px;
  margin-bottom: 28px;
}

.hero-quote {
  font-size: 26px;
  font-style: italic;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}
.hero-banner{
  padding: 120px 20px 100px;
  text-align: center;
}

.hero-title{
  font-family: 'Allura', 'Brush Script MT', cursive;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.hero-sub{
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero-quote{
  font-size: 26px;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.4;
  opacity: 0.95;
}
/* FORZA il font firma sulla Home */
.hero-banner .hero-title{
  font-family: 'Allura', 'Brush Script MT', cursive !important;
  font-style: normal !important;     /* Allura è già corsivo */
  font-weight: 400 !important;
  font-size: 78px !important;
  text-align: center;
  background: none !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  letter-spacing: 1px;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
}
/* Sposta il testo della hero più in alto */
.hero-banner > div{
  padding-top: 40px;     /* aumenta se vuoi ancora più su */
  padding-bottom: 120px;
}

/* ========== FIX MENU (non deve spostarsi tra pagine) ========== */

.topbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
}

.container.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  white-space: nowrap;      /* il nome non va a capo */
  flex: 0 0 auto;
}

.menu{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;        /* niente a capo */
  margin-left: auto;        /* spinge il menu a destra */
  white-space: nowrap;
}

.menu a{
  display: inline-block;
  padding: 10px 8px;
}

.btn-whatsapp-menu{
  margin-left: 18px;
  white-space: nowrap;
  flex: 0 0 auto;
}
/* HERO DELLE PAGINE INTERNE */
.page-hero{
  background-image: url("hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;

  /* Qui sposti l’inquadratura: più alto/basso */
  background-position: center 65%;

  height: 260px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 60px;
  position: relative;
}

/* leggero velo per rendere leggibile il testo */
.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.page-hero h1{
  position: relative;
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
}
.section .card:last-child {
  margin-bottom: 0;
}
/* =========================
   PAGINA CONTATTI: riquadri più stretti e più vicini
   ========================= */
.page-contatti .card{
  max-width: 820px;        /* riquadro più stretto */
  margin: 0 auto 12px;     /* centrato + spazio sotto più piccolo */
}

.page-contatti .card:last-child{
  margin-bottom: 0;
}

/* se i riquadri sono in sezioni diverse, riduco il “vuoto” della sezione */
.page-contatti .section{
  padding-top: 18px;
  padding-bottom: 18px;
}

/* se hai 2 sezioni una dopo l’altra, elimina lo spazio sopra la seconda */
.page-contatti .section + .section{
  padding-top: 0;
}
/* =========================
   MOBILE / RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  /* navbar: va a capo in modo ordinato */
  .container.nav{
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand{
    width: 100%;
    text-align: center;
  }

  .menu{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;           /* permette di andare a capo */
    gap: 12px;
    margin-left: 0;
  }

  .btn-whatsapp-menu{
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  /* banner pagine interne */
  .page-hero{
    height: 180px;             /* più basso su mobile */
    background-position: center 35%;
  }

  .page-hero h1{
    font-size: 30px;
    padding: 0 12px;
  }

  /* sezioni e riquadri: più “ariosi” ma compatti */
  .section{
    padding: 14px 0;
  }

  .section .container{
    padding: 0 14px;
  }

  .card{
    padding: 16px;
  }

  .section .card{
    margin-bottom: 10px;       /* coerente con desktop */
  }

  /* griglia testo+foto (Chi sono): da 2 colonne a 1 colonna */
  .grid-2{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* immagini dentro i riquadri: sempre responsive */
  img{
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 420px) {
  /* ancora più piccolo (telefoni stretti) */
  .page-hero{
    height: 160px;
  }
  .page-hero h1{
    font-size: 26px;
  }
}
/* =========================
   CONTATTI – spazi più stretti
   ========================= */
.page-contatti .section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-contatti .card {
  margin-bottom: 8px;
}

.page-contatti .card:last-child {
  margin-bottom: 0;
}
.section {
  padding: 60px 0;
}
/* =========================
   UNIFORMAZIONE TUTTE LE PAGINE
   ========================= */

/* 1) Stesso padding per tutte le sezioni (sia .section che .page-section) */
.section,
.page-section {
  padding: 40px 0;
}

/* 2) Stessa larghezza “leggibile” per i contenuti dentro le sezioni */
.section > .container,
.page-section > .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 18px;
}

/* 3) Riquadri: stessa larghezza e stessi margini su tutte le pagine */
.section .card,
.page-section .card {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* 4) Spazio tra riquadri: uguale ovunque (più stretto) */
.section .card:not(:last-child),
.page-section .card:not(:last-child) {
  margin-bottom: 14px; /* <-- qui regoli “quanto vicini” */
}

/* 5) Se qualche sezione “incolla” troppo sopra/sotto, manteniamo coerenza */
.section:first-child,
.page-section:first-child {
  padding-top: 40px;
}

/* 6) Contatti: testo più leggero (simile a “Aree di intervento”) */
.page-section .card p,
.page-section .card a {
  font-weight: 300;
  color: rgba(0,0,0,0.72);
}

/* 7) Mobile: respiro più compatto e riquadri sempre pieni */
@media (max-width: 640px) {
  .section,
  .page-section {
    padding: 26px 0;
  }

  .section > .container,
  .page-section > .container {
    padding: 0 14px;
  }

  .section .card:not(:last-child),
  .page-section .card:not(:last-child) {
    margin-bottom: 12px;
  }
}
/* =======================
   MOBILE (smartphone)
   ======================= */
@media (max-width: 768px) {

  /* spazio generale pagina */
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* sezioni */
  .section,
  .page-section {
    padding: 24px 0;
  }

  /* contenitore */
  .section .container,
  .page-section .container {
    padding: 0 14px;
  }

  /* riquadri */
  .card {
    padding: 18px;
    margin-bottom: 14px;
  }

  /* titoli nei riquadri */
  .card h2 {
    font-size: 1.3rem;
  }

  /* testi */
  .card p {
    font-weight: 400;
  }

  /* griglia testo + foto (Chi sono) */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* hero */
  .page-hero {
    height: 180px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
    padding: 0 12px;
  }

  /* menu */
  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 0.95rem;
  }

  /* pulsante WhatsApp */
  .btn-whatsapp,
  .btn-whatsapp-menu {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
/* =========================
   ULTIMA RIFINITURA – CONSISTENZA & POLISH
   ========================= */

/* Spazi coerenti tra sezioni e riquadri */
.section,
.page-section{
  padding: 34px 0;
}

.section .card,
.page-section .card{
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

.section .card:not(:last-child),
.page-section .card:not(:last-child){
  margin-bottom: 12px;
}

/* Riquadri: più “premium” ma delicati */
.card{
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Tipografia: più pulita e leggibile */
.card h2{
  margin: 0 0 10px 0;
  font-weight: 500;
  line-height: 1.25;
}

.card p{
  margin: 0 0 10px 0;
  line-height: 1.65;
}

.card p:last-child{
  margin-bottom: 0;
}

/* Link più eleganti */
a{
  text-underline-offset: 3px;
}

/* Barra menu stabile e leggibile */
.topbar{
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
}

.menu a{
  padding: 10px 10px;
  border-radius: 12px;
}

.menu a:hover{
  background: rgba(0,0,0,0.04);
}

/* Pulsanti (WhatsApp ecc.) */
.btn-whatsapp,
.btn-whatsapp-menu{
  border-radius: 14px;
}

/* Banner pagine interne: titolo più leggibile su foto */
.page-hero::before{
  background: rgba(0,0,0,0.28);
}

/* =========================
   MOBILE POLISH
   ========================= */
@media (max-width: 768px){

  .section,
  .page-section{
    padding: 24px 0;
  }

  .card{
    padding: 18px;
    border-radius: 16px;
  }

  .card h2{
    font-size: 1.22rem;
  }

  .page-hero{
    height: 170px;
  }

  .page-hero h1{
    font-size: 1.65rem;
    padding: 0 14px;
  }

  /* tappabilità menu */
  .menu{
    gap: 12px;
  }

  .menu a{
    padding: 12px 12px;
  }

  /* bottoni più comodi */
  .btn-whatsapp,
  .btn-whatsapp-menu{
    padding: 12px 16px;
  }
}

@media (max-width: 420px){
  .page-hero{
    height: 155px;
  }
  .page-hero h1{
    font-size: 1.5rem;
  }
}
.cta-final {
  text-align: center;
  margin: 4rem 1rem 2rem;
}

.btn-cta {
  display: inline-block;
  padding: 12px 26px;
  background-color: transparent;
  color: #4f7c7a;
  border: 1px solid #4f7c7a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #4f7c7a;
  color: #ffffff;
}
