:root {
  --verde: #0cc29b;
  --verde-scuro: #076b56;
  --bg: #f4faf8;
  --bianco: #ffffff;
  --grigio: #5f6f6b;
  --scuro: #03241d;
  --bordo: #dde7e4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4faf8;
  color: var(--scuro);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 37px; /* <-- aggiungi questa riga */

}

/* NAVBAR SEMPLICE (VERSIONE ORIGINALE) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 10px;
  background: rgba(4, 64, 52, 0.96);
  color: #e8fffa;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  margin-bottom: 10px; /* spazio sotto il menu */

}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone {
  font-size: 0.78rem;
  color: #e8fffa;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;          /* fa andare a capo i link se serve */
  justify-content: center;  /* centra tutti i link */
  gap: 8px;
  margin-top: 6px;
  padding-bottom: 2px;
}


.nav-links a {
  flex: 1 1 auto; /* ogni link occupa spazio proporzionato */
  text-align: center;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links {
    margin-top: 0;
  }
}

/* HEADER */
header {
  padding: 90px 14px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0cc29b, #0a8167);
  color: #fff;
}

.logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

header p {
  font-size: 0.95rem;
  margin: 2px 0;
}

.hero-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 0.82rem;
  background: rgba(0,0,0,0.1);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-main {
  background: #ffffff;
  color: var(--verde-scuro);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.25);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.btn-ghost {
  font-size: 0.82rem;
  color: #e7f9f5;
  text-decoration: none;
}

/* CONTENITORE GENERALE */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 150px 16px 80px; /* più spazio sotto il menu */
}

.page-without-header .container {
  padding-top: 90px;
}

section {
  margin-bottom: 40px;
}

h2 {
  text-align: center;
  color: var(--verde-scuro);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--verde);
  margin: 8px auto 0;
  border-radius: 3px;
}

.section-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grigio);
  max-width: 620px;
  margin: 0 auto 18px;
}

/* BOX SEZIONE */
.section-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 14px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
}

@media (min-width: 900px) {
  .section-box {
    padding: 22px 24px 26px;
  }
}

/* INTRO + MENU RAPIDO */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.intro-text {
  background: #f9fdfc;
  border-radius: 14px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(221,231,228,0.8);
  font-size: 0.9rem;
  color: var(--grigio);
}

.intro-text h3 {
  font-size: 1rem;
  color: var(--verde-scuro);
  margin-bottom: 6px;
}

.intro-text p + p {
  margin-top: 6px;
}

.quick-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 0.86rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
}

.quick-card a {
  text-decoration: none;
  color: var(--verde-scuro);
  font-weight: 600;
  display: block;
}

.quick-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--grigio);
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* GRID CARD SERVIZI */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: var(--bianco);
  border-radius: 14px;
  padding: 13px 12px 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  position: relative;
  border: 1px solid rgba(221,231,228,0.9);
}

.price {
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--verde);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--verde-scuro);
  margin-bottom: 4px;
}

.desc {
  font-size: 0.86rem;
  color: var(--grigio);
  margin-bottom: 5px;
}

.meta {
  font-size: 0.78rem;
  color: #96a39f;
}

/* CALENDARIO CON ORARI */
.calendar-wrapper {
  max-width: 520px;
  margin: 4px auto 0;
  background: var(--bianco);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.85rem;
  border: 1px solid rgba(221,231,228,0.9);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.day {
  padding: 8px 6px;
  border-radius: 10px;
  border: none;
  background: rgba(12,194,155,0.12);
  color: var(--verde-scuro);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.day:hover {
  background: rgba(12,194,155,0.25);
  transform: translateY(-1px);
}

.day.disabled {
  background: #e8f0ed;
  color: #96a39f;
  cursor: not-allowed;
}

.day-prelievi::after {
  content: " · prelievi";
  font-weight: 400;
  font-size: 0.78rem;
  color: #0b8c71;
}

.time-slots {
  margin-top: 14px;
}

.time-slots h3 {
  font-size: 0.95rem;
  color: var(--scuro);
  margin-bottom: 6px;
}

.slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}

.slot {
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid rgba(12,194,155,0.4);
  background: rgba(12,194,155,0.08);
  color: var(--verde-scuro);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slot:hover {
  background: rgba(12,194,155,0.22);
}

.back-btn {
  background: var(--verde-scuro);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
}

.back-btn:hover {
  background: var(--verde);
}

.calendar-info {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--grigio);
  text-align: center;
}

.calendar-info strong {
  color: var(--verde-scuro);
}


.tariffe-table th,
.tariffe-table td {
  padding: 9px 11px;
}

.tariffe-table thead {
  background: linear-gradient(120deg, #0cc29b, #0a8167);
  color: #f5fffb;
  font-size: 0.8rem;
}

.tariffe-table tbody tr:nth-child(odd) {
  background: #f7fbfa;
}

.tariffe-table tbody tr:hover {
  background: #e6f5f0;
}

/* CONTATTI */
.contatti-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
}

.contatti-card {
  background: var(--bianco);
  border-radius: 14px;
  padding: 13px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.86rem;
  border: 1px solid rgba(221,231,228,0.9);
}

.contatti-card h3 {
  font-size: 0.96rem;
  margin-bottom: 6px;
  color: var(--verde-scuro);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(12,194,155,0.12);
  font-size: 0.8rem;
  margin-top: 4px;
}

.chip a {
  color: var(--verde-scuro);
  text-decoration: none;
  font-weight: 600;
}

.note {
  font-size: 0.78rem;
  color: #96a39f;
  margin-top: 7px;
}

@media (max-width: 768px) {
  .contatti-grid {
    grid-template-columns: 1fr;
  }
}

/* BACHECA NEWS */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.news-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
  font-size: 0.9rem;
}

.news-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

.news-title {
  font-weight: 600;
  color: #076b56;
  font-size: 0.98rem;
}

.news-date {
  font-size: 0.78rem;
  color: #96a39f;
  white-space: nowrap;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(12,194,155,0.12);
  color: #076b56;
  margin-bottom: 4px;
}

.news-body {
  font-size: 0.88rem;
  color: #5f6f6b;
  margin-top: 4px;
}

/* RECENSIONI */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
  font-size: 0.86rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.review-name {
  font-weight: 600;
  color: #076b56;
  font-size: 0.9rem;
}

.review-stars {
  color: #f4b400;
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-date {
  font-size: 0.75rem;
  color: #96a39f;
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.86rem;
  color: #5f6f6b;
}

.google-cta {
  text-align: center;
  margin-top: 18px;
}

.google-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dde7e4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 0.88rem;
  color: #076b56;
}

/* WHATSAPP FLOATING */
.whatsapp {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #25D366;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 99;
}

/* FOOTER */
footer {
  background: #03241d;
  color: #cde3dd;
  text-align: center;
  padding: 16px 10px;
  font-size: 0.8rem;
  border-top: 1px solid #021813;
}

footer strong {
  color: var(--verde);
}
:root {
  --verde: #0cc29b;
  --verde-scuro: #076b56;
  --bg: #f4faf8;
  --bianco: #ffffff;
  --grigio: #5f6f6b;
  --scuro: #03241d;
  --bordo: #dde7e4;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4faf8;
  color: var(--scuro);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR SEMPLICE (VERSIONE ORIGINALE) */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 8px 10px;
  background: rgba(4, 64, 52, 0.96);
  color: #e8fffa;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-phone {
  font-size: 0.78rem;
  color: #e8fffa;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.nav-links a {
  color: #e8fffa;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.78rem;
  white-space: nowrap;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav-links {
    margin-top: 0;
  }
}

/* HEADER */
header {
  padding: 90px 14px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0cc29b, #0a8167);
  color: #fff;
}

.logo {
  max-width: 140px;
  height: auto;
  margin: 0 auto 14px;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

header p {
  font-size: 0.95rem;
  margin: 2px 0;
}

.hero-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 0.82rem;
  background: rgba(0,0,0,0.1);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-main {
  background: #ffffff;
  color: var(--verde-scuro);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.25);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.btn-ghost {
  font-size: 0.82rem;
  color: #e7f9f5;
  text-decoration: none;
}

/* CONTENITORE GENERALE */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 14px 70px; /* 90px per lasciare spazio al menu fisso */
}

.page-without-header .container {
  padding-top: 90px;
}

section {
  margin-bottom: 40px;
}

h2 {
  text-align: center;
  color: var(--verde-scuro);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--verde);
  margin: 8px auto 0;
  border-radius: 3px;
}

.section-sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grigio);
  max-width: 620px;
  margin: 0 auto 18px;
}

/* BOX SEZIONE */
.section-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 14px 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
}

@media (min-width: 900px) {
  .section-box {
    padding: 22px 24px 26px;
  }
}

/* INTRO + MENU RAPIDO */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.intro-text {
  background: #f9fdfc;
  border-radius: 14px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(221,231,228,0.8);
  font-size: 0.9rem;
  color: var(--grigio);
}

.intro-text h3 {
  font-size: 1rem;
  color: var(--verde-scuro);
  margin-bottom: 6px;
}

.intro-text p + p {
  margin-top: 6px;
}

.quick-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 8px;
  font-size: 0.86rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
}

.quick-card a {
  text-decoration: none;
  color: var(--verde-scuro);
  font-weight: 600;
  display: block;
}

.quick-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--grigio);
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* GRID CARD SERVIZI */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: var(--bianco);
  border-radius: 14px;
  padding: 13px 12px 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  position: relative;
  border: 1px solid rgba(221,231,228,0.9);
}

.price {
  position: absolute;
  top: 8px;
  right: 10px;
  background: var(--verde);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--verde-scuro);
  margin-bottom: 4px;
}

.desc {
  font-size: 0.86rem;
  color: var(--grigio);
  margin-bottom: 5px;
}

.meta {
  font-size: 0.78rem;
  color: #96a39f;
}

/* CALENDARIO */
.calendar-wrapper {
  max-width: 520px;
  margin: 4px auto 0;
  background: var(--bianco);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.8rem;
  border: 1px solid rgba(221,231,228,0.9);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.calendar-header h3 {
  font-size: 0.96rem;
  color: var(--scuro);
}

.calendar-nav-btn {
  border: none;
  background: rgba(12,194,155,0.1);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--verde-scuro);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.calendar-day-name {
  text-align: center;
  font-weight: 600;
  color: var(--grigio);
}

.calendar-cell {
  text-align: center;
  padding: 6px 0;
  border-radius: 6px;
  min-height: 26px;
  font-size: 0.8rem;
}

.calendar-cell.available {
  background: rgba(12,194,155,0.12);
  color: var(--verde-scuro);
  cursor: pointer;
}

.calendar-cell.available:hover {
  background: rgba(12,194,155,0.25);
}

.calendar-cell.today {
  border: 1px solid var(--verde-scuro);
  font-weight: 600;
}

.calendar-info {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--grigio);
  text-align: center;
}

.calendar-info strong {
  color: var(--verde-scuro);
}

/* TABELLA TARIFFE GENERALI */
.tariffe-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bianco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.82rem;
  border: 1px solid rgba(221,231,228,0.9);
}

.tariffe-table th,
.tariffe-table td {
  padding: 9px 11px;
}

.tariffe-table thead {
  background: linear-gradient(120deg, #0cc29b, #0a8167);
  color: #f5fffb;
  font-size: 0.8rem;
}

.tariffe-table tbody tr:nth-child(odd) {
  background: #f7fbfa;
}

.tariffe-table tbody tr:hover {
  background: #e6f5f0;
}

/* CONTATTI */
.contatti-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 16px;
}

.contatti-card {
  background: var(--bianco);
  border-radius: 14px;
  padding: 13px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-size: 0.86rem;
  border: 1px solid rgba(221,231,228,0.9);
}

.contatti-card h3 {
  font-size: 0.96rem;
  margin-bottom: 6px;
  color: var(--verde-scuro);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(12,194,155,0.12);
  font-size: 0.8rem;
  margin-top: 4px;
}

.chip a {
  color: var(--verde-scuro);
  text-decoration: none;
  font-weight: 600;
}

.note {
  font-size: 0.78rem;
  color: #96a39f;
  margin-top: 7px;
}

@media (max-width: 768px) {
  .contatti-grid {
    grid-template-columns: 1fr;
  }
}

/* BACHECA NEWS */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.news-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
  font-size: 0.9rem;
}

.news-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 4px;
}

.news-title {
  font-weight: 600;
  color: #076b56;
  font-size: 0.98rem;
}

.news-date {
  font-size: 0.78rem;
  color: #96a39f;
  white-space: nowrap;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(12,194,155,0.12);
  color: #076b56;
  margin-bottom: 4px;
}

.news-body {
  font-size: 0.88rem;
  color: #5f6f6b;
  margin-top: 4px;
}

/* RECENSIONI */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid rgba(221,231,228,0.9);
  font-size: 0.86rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.review-name {
  font-weight: 600;
  color: #076b56;
  font-size: 0.9rem;
}

.review-stars {
  color: #f4b400;
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-date {
  font-size: 0.75rem;
  color: #96a39f;
  margin-bottom: 6px;
}

.review-text {
  font-size: 0.86rem;
  color: #5f6f6b;
}

.google-cta {
  text-align: center;
  margin-top: 18px;
}

.google-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dde7e4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-size: 0.88rem;
  color: #076b56;
}

/* WHATSAPP FLOATING */
.whatsapp {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #25D366;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 99;
}

/* FOOTER */
footer {
  background: #03241d;
  color: #cde3dd;
  text-align: center;
  padding: 16px 10px;
  font-size: 0.8rem;
  border-top: 1px solid #021813;
}

footer strong {
  color: var(--verde);
}
