/* ============================================================
   PIACERI DI ZUCCHERO — Stylesheet principale
   Mobile-first, breakpoint principale a 768px
   Palette estratta da img/color palette.avif
   ============================================================ */

/* ---- Variabili CSS ---------------------------------------- */
:root {
  /* Colori dalla palette ufficiale */
  --accent:       #eaa416;   /* oro ambra — colore principale brand */
  --accent-dark:  #ba6311;   /* arancione bruciato — hover / elementi scuri */
  --dark:         #3d1f0a;   /* marrone molto scuro — navbar / footer / titoli */
  --bg:           #fdf8f2;   /* crema calda — sfondo pagina */
  --soft:         #fef3e2;   /* crema chiara — sfondo sezioni alternate */
  --text:         #2a2a2a;   /* testo corpo */
  --text-muted:   #7a6a5a;   /* testo secondario / meta */
  --gray-light:   #e6e6e6;   /* grigio neutro dalla palette — bordi / divisori */

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Lato', system-ui, sans-serif;

  --radius:     12px;
  --shadow:     0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: 0.2s ease;

  --max-width:       1100px;
  --padding-section: 5rem 1.25rem;
  --navbar-height:   68px;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--navbar-height);
}

/* ---- Reset base ------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Utilità globali -------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Etichetta piccola sopra i titoli di sezione */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* Variante chiara per sezioni su sfondo scuro */
.section-label--light {
  color: var(--accent);
  opacity: 0.9;
}

/* Bottone principale */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
  border: none;
}

.btn--primary {
  background-color: var(--accent);
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  outline: none;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}

.navbar--scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.navbar__logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}

.navbar__logo:hover {
  color: var(--accent);
}

/* Hamburger — visibile su mobile */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.navbar__hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Menu dropdown su mobile */
.navbar__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--gray-light);
  padding: 1rem 1.25rem 1.5rem;
}

.navbar__menu.is-open {
  display: block;
}

.navbar__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.navbar__link {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--dark);
  transition: color var(--transition);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--accent);
  outline: none;
}

/* Desktop: menu in linea */
@media (min-width: 768px) {
  .navbar__hamburger {
    display: none;
  }

  .navbar__menu {
    display: block;
    position: static;
    border: none;
    padding: 0;
    background: none;
  }

  .navbar__list {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .navbar__list { gap: 1rem; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay: --dark a 55% */
.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(61, 31, 10, 0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.25rem;
  color: #fff;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  opacity: 0.9;
}


/* ============================================================
   GALLERY — carousel foto subito dopo l'hero
   ============================================================ */
.gallery {
  padding: var(--padding-section);
  background-color: var(--soft);
}

.gallery__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery__title {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--dark);
  margin-top: 0.25rem;
}

.gallery__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.gallery__wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery__track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery__slide {
  flex: 0 0 100%;
  position: relative;
}

.gallery__slide-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery__slide-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
}

.gallery__slide-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery__slide-text {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__btn:hover {
  background: #fff;
}

.gallery__btn--prev {
  left: -20px;
}

.gallery__btn--next {
  right: -20px;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.gallery__dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}

.gallery__dot--active {
  background: var(--accent);
}

@media (max-width: 767px) {
  .gallery__btn--prev { left: -10px; }
  .gallery__btn--next { right: -10px; }
  .gallery__slide-body { padding: 1.5rem 1rem 1rem; }
  .gallery__slide-title { font-size: 1.1rem; }
}


/* ============================================================
   SERVIZI — 3 card orizzontali su desktop, verticali su mobile
   Prima sezione dopo l'hero
   ============================================================ */
.servizi {
  padding: var(--padding-section);
  background-color: var(--bg);
}

.servizi__header {
  text-align: center;
  margin-bottom: 3rem;
}

.servizi__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-top: 0.25rem;
}

/* 1 col mobile → 3 col desktop */
.servizi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .servizi__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card con foto di sfondo — pattern identico all'hero */
.servizio-card {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
  min-height: 380px;
  transition: transform var(--transition), box-shadow var(--transition);
  background-color: var(--dark); /* fallback se l'img non carica */
}

/* Foto di sfondo — nessun z-index, DOM order gestisce lo stacking */
.servizio-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay — secondo in DOM, sovrasta l'img senza z-index */
.servizio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 15, 5, 0.10) 0%,
    rgba(40, 15, 5, 0.45) 50%,
    rgba(40, 15, 5, 0.78) 100%
  );
}

/* Icona e testo sopra tutto — z-index: 1 basta */
.servizio-card__icon,
.servizio-card__body {
  position: relative;
  z-index: 1;
}

.servizio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.servizio-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  /* Cerchio semitrasparente accent per contrasto sulla foto */
  background-color: rgba(234, 164, 22, 0.25);
  border: 1.5px solid rgba(234, 164, 22, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servizio-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.servizio-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* Spinge il corpo verso il basso dove l'overlay è più scuro */
  margin-top: auto;
}

.servizio-card__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.servizio-card__text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}


/* ============================================================
   SERATE E MUSICA DAL VIVO
   Sezione su sfondo scuro solido + layout due colonne
   La foto reale è dentro il riquadro con bordo arancione
   ============================================================ */
.serate {
  padding: 5rem 0;
  background-color: var(--dark);
}

.serate__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .serate__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.serate__content {
  color: #fff;
}

.serate__title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  margin-top: 0.25rem;
}

.serate__lead {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.serate__text {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Lista punti salienti */
.serate__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.93rem;
  opacity: 0.9;
}

.serate__feature-icon {
  margin-right: 0.5rem;
}

/* Foto laterale con bordo dorato */
.serate__img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--accent), var(--shadow);
  /* Su mobile la foto viene dopo il testo */
}

.serate__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .serate__img {
    aspect-ratio: auto;
    height: 440px;
  }
}


/* ============================================================
   LA PROPRIETARIA — sezione standalone
   Foto a sinistra, testo a destra su desktop; stack su mobile
   ============================================================ */
.proprietaria {
  padding: var(--padding-section);
  background-color: var(--soft);
}

.proprietaria__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .proprietaria__grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

.proprietaria__img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.proprietaria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.proprietaria__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.proprietaria__text p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1rem;
}

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


/* ============================================================
   LA NOSTRA STORIA — header + griglia foto 2x2
   ============================================================ */
.storia {
  padding: var(--padding-section);
  background-color: var(--bg);
}

.storia__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.storia__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.storia__intro {
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ============================================================
   LINEA DEL TEMPO — verticale su mobile, orizzontale su desktop
   ============================================================ */

/* ---- Mobile: verticale (default) ---- */
.timeline-h {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Linea verticale sul lato sinistro */
.timeline-h::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(234, 164, 22, 0.15));
  border-radius: 2px;
}

.timeline-h__item {
  position: relative;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

.timeline-h__item:last-child {
  padding-bottom: 0;
}

/* Pallino sulla linea — posizionato in assoluto rispetto all'item */
.timeline-h__marker {
  position: absolute;
  left: -2.07rem;
  top: 1.55rem; /* scende sotto l'etichetta dell'anno */
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
  flex-shrink: 0;
}

.timeline-h__marker--oggi {
  width: 18px;
  height: 18px;
  left: -2.18rem;
  background-color: var(--accent-dark);
  box-shadow: 0 0 0 3px var(--accent-dark);
}

.timeline-h__anno {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem; /* spazio per il marker */
}

.timeline-h__anno--oggi {
  color: var(--accent-dark);
}

.timeline-h__titolo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.timeline-h__testo {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.timeline-h__foto {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- Desktop: orizzontale (≥768px) ---- */
@media (min-width: 768px) {
  .timeline-h {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 0;
    max-width: 100%;
    gap: 0;
    /* La linea orizzontale è gestita da ::before */
  }

  /* Linea orizzontale che collega i 4 pallini:
     left/right = metà larghezza del primo/ultimo item (100% / 8 = 12.5%) */
  .timeline-h::before {
    left: calc(100% / 8);
    right: calc(100% / 8);
    top: 2.05rem; /* allineata al centro del marker: anno (1.3rem) + metà marker (7px) */
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--accent), rgba(234, 164, 22, 0.4), var(--accent));
  }

  .timeline-h__item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 0 0.75rem 0;
    text-align: center;
  }

  .timeline-h__item:last-child {
    padding-bottom: 0;
  }

  /* Sul desktop il marker è nel flusso normale (non assoluto) */
  .timeline-h__marker {
    position: static;
    margin-bottom: 1.25rem;
    width: 14px;
    height: 14px;
    left: auto;
    top: auto;
  }

  .timeline-h__marker--oggi {
    position: static;
    left: auto;
    top: auto;
    width: 18px;
    height: 18px;
  }

  .timeline-h__anno {
    margin-bottom: 0.5rem;
    /* altezza fissa così tutti i marker sono allineati sulla linea */
    min-height: 1.3rem;
    display: block;
  }

  .timeline-h__testo {
    font-size: 0.88rem;
  }

  .timeline-h__foto {
    aspect-ratio: 4 / 3;
    margin-top: 0.75rem;
  }
}


/* ============================================================
   RECENSIONI
   ============================================================ */
.recensioni {
  padding: var(--padding-section);
  background-color: var(--soft);
}

.recensioni__header {
  text-align: center;
  margin-bottom: 3rem;
}

.recensioni__title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--dark);
  margin-top: 0.25rem;
}

.stars {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

/* 1 col → 2 col → 3 col */
.recensioni__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .recensioni__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .recensioni__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background-color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.review-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.review-card__text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}


/* ============================================================
   CONTATTI
   ============================================================ */
.contatti {
  padding: var(--padding-section);
  background-color: var(--bg);
}

.contatti__title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 2.5rem;
}

.contatti__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contatti__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contatti__orari h3,
.contatti__info h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.orari-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.orari-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.orari-table td:first-child {
  font-weight: 700;
  color: var(--dark);
  width: 40%;
}

.orari-table__row--chiuso td {
  color: #c0392b;
  font-weight: 700;
}

.contatti__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contatti__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.contatti__link {
  color: var(--accent);
  font-weight: 700;
  transition: color var(--transition);
}

.contatti__link:hover {
  color: var(--accent-dark);
}

.contatti__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  transition: opacity var(--transition), transform var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn:hover,
.social-btn:focus-visible {
  opacity: 0.88;
  transform: translateY(-2px);
  outline: none;
}

.social-btn--instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn--facebook  { background-color: #1877f2; }
.social-btn--whatsapp  { background-color: #25d366; }
.social-btn--tiktok    { background-color: #010101; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 1.25rem 2rem;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__map {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.footer__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
}

.footer__link {
  color: var(--accent);
  transition: color var(--transition);
}

.footer__link:hover {
  color: #fff;
}

.footer__sep {
  opacity: 0.4;
}
