@charset "UTF-8";

/* ========================================
   SONOS — Serveis Audiovisuals
   Brand colors: #02A0B8 (cian), #F20073 (magenta), #7FC31D (verd), #F99CC7 (rosa)
   ======================================== */

/* --- Variables --- */
:root {
  --color-fons: #08080F;
  --color-fons-alt: #0E0E1A;
  --color-fons-card: #121220;
  --color-text: #E8E8F0;
  --color-text-suau: #9090A8;
  --color-border: #1E1E32;
  --color-cian: #02A0B8;
  --color-cian-fosc: #018599;
  --color-magenta: #F20073;
  --color-magenta-fosc: #D10062;
  --color-verd: #7FC31D;
  --color-rosa: #F99CC7;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-ample: 1200px;
  --radi: 12px;
  --transicio: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

:lang(ca),
:lang(es),
:lang(fr) {
  quotes: "\00AB\00A0" "\00A0\00BB";
}

:lang(en) {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

:lang(ca),
:lang(fr) {
  hyphens: auto;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-fons);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-ample);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header / Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(8, 8, 15, 0.85);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transicio);
}

body.menu-open {
  overflow: hidden;
}

.header.scrolled {
  background: rgba(8, 8, 15, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: var(--transicio);
}

.logo:hover {
  color: var(--color-cian);
}

.logo-text {
  white-space: nowrap;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-cian), var(--color-magenta));
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-suau);
  transition: var(--transicio);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-cian);
  transition: var(--transicio);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.lang-switcher {
  display: flex;
  flex-shrink: 0;
  gap: 2px;
  background: var(--color-fons-card);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid var(--color-border);
}

.lang-btn {
  padding: 5px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-text-suau);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transicio);
  font-family: var(--font-sans);
}

.lang-btn:hover {
  color: var(--color-text);
}

.lang-btn.active {
  background: var(--color-cian);
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
  transition: var(--transicio);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(2, 160, 184, 0.25), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(242, 0, 115, 0.15), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(127, 195, 29, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(8,8,15,0.5) 0%, rgba(8,8,15,0.85) 100%);
  z-index: 1;
}

/* Moving spotlight */
.hero-spot {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}

.hero-spot::before,
.hero-spot::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 60%);
  filter: blur(40px);
}

.hero-spot::before {
  width: 400px;
  height: 400px;
  animation: spot-1 20s ease-in-out infinite;
}

.hero-spot::after {
  width: 300px;
  height: 300px;
  animation: spot-2 25s ease-in-out infinite;
}

@keyframes spot-1 {
  0%   { top: 10%; left: 10%; transform: scale(1); }
  25%  { top: 30%; left: 70%; transform: scale(1.3); }
  50%  { top: 60%; left: 50%; transform: scale(0.8); }
  75%  { top: 40%; left: 20%; transform: scale(1.1); }
  100% { top: 10%; left: 10%; transform: scale(1); }
}

@keyframes spot-2 {
  0%   { top: 70%; left: 80%; transform: scale(1.2); }
  33%  { top: 20%; left: 30%; transform: scale(0.7); }
  66%  { top: 50%; left: 60%; transform: scale(1.4); }
  100% { top: 70%; left: 80%; transform: scale(1.2); }
}

/* Equalizer bars */
.hero-eq {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 0 24px;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
}

.hero-eq-bar {
  width: 6px;
  background: var(--color-cian);
  border-radius: 3px 3px 0 0;
  animation: eq-pulse var(--eq-dur, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--eq-del, 0s);
}

@keyframes eq-pulse {
  0% { height: var(--eq-min, 10px); opacity: 0.4; }
  100% { height: var(--eq-max, 80px); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-cian) 50%, var(--color-rosa) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-suau);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radi);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: var(--transicio);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-cian), var(--color-cian-fosc));
  color: #fff;
  box-shadow: 0 4px 20px rgba(2, 160, 184, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(2, 160, 184, 0.45);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-text-suau);
  border-bottom: 2px solid var(--color-text-suau);
  transform: rotate(45deg);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Sections --- */
section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

/* --- Presentació --- */
.presentacio {
  background-color: var(--color-fons-alt);
}

.presentacio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.presentacio-text p {
  color: var(--color-text-suau);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.presentacio-dades {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--color-fons-card);
  border-radius: var(--radi);
  border: 1px solid var(--color-border);
}

.dada {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dada-num {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-cian), var(--color-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dada-label {
  font-size: 0.875rem;
  color: var(--color-text-suau);
}

/* --- Serveis --- */
.serveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servei-card {
  background: var(--color-fons-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radi);
  padding: 36px 28px;
  transition: var(--transicio);
  position: relative;
  overflow: hidden;
}

.servei-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: var(--transicio);
}

.servei-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-cian);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-so::before { background: var(--color-cian); }
.card-il::before { background: var(--color-magenta); }
.card-av::before { background: var(--color-verd); }
.card-disko::before { background: var(--color-rosa); }
.card-karaoke::before { background: var(--color-cian); }

.servei-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.servei-icon svg {
  width: 24px;
  height: 24px;
}

.card-so .servei-icon { background: rgba(2, 160, 184, 0.15); color: var(--color-cian); }
.card-il .servei-icon { background: rgba(242, 0, 115, 0.15); color: var(--color-magenta); }
.card-av .servei-icon { background: rgba(127, 195, 29, 0.15); color: var(--color-verd); }
.card-disko .servei-icon { background: rgba(249, 156, 199, 0.15); color: var(--color-rosa); }
.card-karaoke .servei-icon { background: rgba(2, 160, 184, 0.15); color: var(--color-cian); }

.servei-titol {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.servei-desc {
  font-size: 0.875rem;
  color: var(--color-text-suau);
  line-height: 1.6;
  margin-bottom: 16px;
}

.servei-llista {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.servei-llista li {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-suau);
}

/* --- Galeria / Carousel --- */
.galeria {
  background-color: var(--color-fons-alt);
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  border-radius: var(--radi);
  overflow: hidden;
  background: var(--color-fons-card);
  border: 1px solid var(--color-border);
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.carousel-img.activa {
  opacity: 1;
  pointer-events: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(2, 160, 184, 0.7);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.actiu {
  background: var(--color-cian);
  transform: scale(1.4);
}

/* --- Agenda --- */
.agenda {
  background-color: var(--color-fons);
}

.agenda-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-suau);
  margin-top: -40px;
  margin-bottom: 40px;
}

.agenda-subtitle a {
  color: var(--color-cian);
  transition: var(--transicio);
}

.agenda-subtitle a:hover {
  color: var(--color-magenta);
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.agenda-card {
  background: var(--color-fons-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radi);
  padding: 24px;
  transition: var(--transicio);
  position: relative;
  overflow: hidden;
}

.agenda-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.agenda-cat-musica::before { background: var(--color-cian); }
.agenda-cat-teatre-i-dansa::before { background: var(--color-magenta); }
.agenda-cat-conferencies::before { background: var(--color-verd); }
.agenda-cat-festes-i-tradicions::before { background: var(--color-rosa); }

.agenda-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-cian);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.agenda-encamp {
  border-color: rgba(2, 160, 184, 0.3);
}

.agenda-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.75rem;
  gap: 8px;
}

.agenda-data {
  color: var(--color-cian);
  font-weight: 600;
}

.agenda-poblacio {
  color: var(--color-text-suau);
  text-align: right;
}

.agenda-encamp .agenda-poblacio {
  color: var(--color-rosa);
  font-weight: 600;
}

.agenda-titol {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.agenda-desc {
  font-size: 0.8125rem;
  color: var(--color-text-suau);
  line-height: 1.5;
}

.agenda-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-cian);
  text-decoration: none;
  transition: var(--transicio);
}

.agenda-link:hover {
  color: var(--color-magenta);
}

.agenda-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px;
  color: var(--color-text-suau);
}

.agenda-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-cian);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.agenda-buit {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--color-text-suau);
}

.agenda-buit a {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-cian);
  font-weight: 600;
}

.agenda-buit a:hover {
  color: var(--color-magenta);
}

/* --- Contacte --- */
.contacte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.contacte-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacte-info .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

.contacte-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contacte-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-cian);
  flex-shrink: 0;
  margin-top: 2px;
}

.contacte-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.contacte-item span {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-suau);
}

.contacte-item a {
  color: var(--color-cian);
  transition: var(--transicio);
}

.contacte-item a:hover {
  color: var(--color-magenta);
}

.contacte-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: var(--color-fons-card);
  border-radius: var(--radi);
  border: 1px solid var(--color-border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-suau);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-fons);
  color: var(--color-text);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: var(--transicio);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cian);
  box-shadow: 0 0 0 3px rgba(2, 160, 184, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.form-legal {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-text-suau);
  margin: -4px 0 4px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-cian), var(--color-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--color-text-suau);
  margin-top: 4px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--color-text-suau);
}

.footer-legal {
  flex: 1 1 100%;
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--color-text-suau);
}

.footer-legal p + p {
  margin-top: 8px;
}

.footer-legal a {
  color: var(--color-cian);
}

/* --- Mobile --- */
@media (max-width: 1024px) {
  .serveis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .header {
    background: rgba(8, 8, 15, 0.98);
  }

  .header-inner {
    gap: 10px;
  }

  .logo {
    min-width: 0;
    font-size: 0.95rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lang-switcher {
    display: flex;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
    z-index: 102;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    background: #08080f;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 96px 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  }

  .nav.open {
    display: flex;
  }

  .nav .lang-switcher {
    display: flex;
    position: static;
    transform: none;
    gap: 2px;
    padding: 3px;
    border-radius: 8px;
    margin-top: 8px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
    padding: 10px 0;
  }

  .presentacio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentacio-dades {
    padding: 28px;
    gap: 24px;
  }

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

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

  .carousel {
    aspect-ratio: 3 / 4;
  }

  .carousel-btn {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contacte-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacte-form {
    padding: 24px;
  }

  .hero-spot::before {
    width: 250px;
    height: 250px;
  }

  .hero-spot::after {
    width: 180px;
    height: 180px;
  }

  .hero-eq {
    gap: 3px;
  }

  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

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

  .hero {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .carousel {
    aspect-ratio: 2 / 3;
    border-radius: 8px;
  }

  .carousel-dots {
    gap: 6px;
    bottom: 10px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .hero-spot {
    opacity: 0.06;
  }

  .hero-eq {
    height: 60px;
  }
}
