@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --bg: #2f4257;
  --fg: #f6eccf;
  --fg-inv: #2f4257;
  --primary: #f97315;
  --primary-hover: #db521e;
  --outline: rgba(246, 236, 207, 0.2);
  --glass-bg: rgba(47, 66, 87, 0.85);
  
  /* Radii */
  --radius-sm: 10px;
  --radius-md: 30px;
  --radius-lg: 40px;
  --radius-xl: 50px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-elastic: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s var(--transition-elastic);
  --transition-fast: 0.2s ease;
}

/* Base Styles */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.font-grotesk {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04em;
}

/* Typography Helpers */
.title-hero {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 3rem + 2.5vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.title-section {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Buttons */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85em 2em;
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--fg);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--fg);
  border: 2px solid rgba(246, 236, 207, 0.4);
}

.btn-secondary:hover {
  background-color: rgba(246, 236, 207, 0.05);
  border-color: var(--fg);
}

/* ──────────────────────────
   HEADER (FRAMER DYNAMIC SPLIT)
────────────────────────── */
.header-main {
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 99;
  display: flex;
  justify-content: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease, padding 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 20px;
}

.header-main.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.framer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* Merged State Default Settings */
  background-color: var(--bg);
  border: 1px solid rgba(246, 236, 207, 0.15);
  border-radius: 50px;
  padding: 0;
  height: 60px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05), 0px 8px 16px rgba(0, 0, 0, 0.1);

  width: 100%;
  max-width: 880px;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), gap 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0s 0.1s, border-color 0s 0.1s, box-shadow 0s 0.1s;
}

.nav-side {
  flex: 1;
  transition: flex 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-side.left {
  justify-content: flex-start;
}

.nav-side.right {
  justify-content: flex-end;
}

.framer-nav-left,
.framer-nav-center,
.framer-nav-right {
  display: flex;
  align-items: center;
  border-radius: 50px;
  height: 100%;
  transition: background-color 0s 0.1s, border-color 0s 0.1s, box-shadow 0s 0.1s;
  background-color: transparent;
  border: 1px solid rgba(246, 236, 207, 0);
  box-shadow: none;
}

.framer-nav-left {
  text-decoration: none;
  padding: 0 20px;
}

.framer-nav-center {
  gap: 5px;
  position: relative;
  padding: 0 10px;
}

.framer-nav-right {
  padding: 0 6px;
  gap: 12px;
}

/* === SPLIT STATE (.is-top) === */
.header-main.is-top {
  padding-top: 30px;
}

.header-main.is-top .framer-nav {
  max-width: 1800px;
  padding: 0 40px;
  background-color: transparent;
  border-color: rgba(246, 236, 207, 0);
  box-shadow: none;
  gap: 15px;
  transition: max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), gap 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0s 0s, border-color 0s 0s, box-shadow 0s 0s;
}

.header-main.is-top .nav-side {
  flex: 1;
  /* Pushes center to exact middle */
}

/* Activate borders and backgrounds for sections individually */
.header-main.is-top .framer-nav-left,
.header-main.is-top .framer-nav-center,
.header-main.is-top .framer-nav-right {
  background-color: var(--bg);
  border: 1px solid rgba(246, 236, 207, 0);
  box-shadow: none;
  transition: background-color 0s 0s, border-color 0s 0s, box-shadow 0s 0s;
}

/* Nav Links Logic */
.nav-indicator {
  position: absolute;
  background-color: rgba(246, 236, 207, 0.12);
  border-radius: 40px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.framer-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(246, 236, 207, 0.8);
  font-size: 15px;
  font-weight: 500;
  border-radius: 40px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.framer-nav-link * {
  pointer-events: none;
}

.framer-nav-link .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.7;
  transition: all 0.2s ease;
}

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

.framer-nav-link:hover .material-symbols-outlined,
.framer-nav-link.active .material-symbols-outlined {
  opacity: 1;
  color: #f97315;
}

.header-logo-img {
  height: 35px;
  width: auto;
  display: block;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-main.is-top .header-logo-img {
  height: 43px;
  transform: translateY(-3px);
}

.nav-cta {
  height: 40px;
  padding: 0 18px;
  box-sizing: border-box;
  background-color: #f97315;
  color: var(--fg);
  border: 2px solid #f97315;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  opacity: .9;
}

.nav-cta .material-symbols-outlined {
  font-size: 18px;
}

.nav-cta-secondary {
  height: 40px;
  padding: 0 18px;
  box-sizing: border-box;
  background-color: transparent;
  color: var(--fg);
  border: 2px solid rgba(246, 236, 207, 0.4);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-secondary:hover {
  background-color: rgba(246, 236, 207, 0.05);
  border-color: var(--fg);
}

.header-main:not(.is-top) .nav-cta-secondary:not(#nav-profile-btn) {
  display: none;
}

/* Mobile Menu Base */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0 15px 0 0;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-active {
  opacity: 1;
  pointer-events: all;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 60px;
  font-weight: 300;
  cursor: pointer;
  color: var(--fg);
  line-height: 1;
}

.mobile-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-navigation a {
  font-size: 32px;
  font-weight: 500;
  color: var(--fg);
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.mobile-navigation a:hover {
  opacity: 0.6;
}

/* ─── Responsive Nav ─── */
@media screen and (max-width: 1180px) {
  .framer-nav-center {
    display: none;
  }

  .nav-cta-secondary {
    display: none !important;
  }

  .menu-toggle {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .nav-cta {
    display: none !important;
  }

  .header-main.is-top .framer-nav-left,
  .header-main.is-top .framer-nav-right {
    padding: 0;
    background: transparent;
    border: 1px solid rgba(246, 236, 207, 0);
    box-shadow: none;
    backdrop-filter: none;
  }

  .btn-base { padding: 0.7em 1.5em; font-size: 1rem; }

  .framer-nav {
    padding: 0 15px;
    height: 56px;
    max-width: 92vw;
  }

  .header-main.is-top .framer-nav {
    padding: 0 15px;
  }

  .scroll-tags {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 8px;
    padding: 10px 0;
  }
  .scroll-tags::-webkit-scrollbar { display: none; }
}

/* Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.rounded-card { border-radius: var(--radius-md); }
.cursor-pointer { cursor: pointer; }

/* ──────────────────────────
   FOOTER (FRAMER FOOTER 11)
────────────────────────── */
.gadr-footer {
  width: 100%;
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--bg);
  position: relative;
  z-index: 10;
}

.gadr-footer-section {
  background-color: var(--surface-container-high);
  border-radius: var(--radius-md);
  padding: 60px 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.gadr-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
}

.footer-tagline {
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin-top: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 236, 207, 0.1);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  width: 100%;
}

.newsletter-form:focus-within {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px var(--primary);
}

.newsletter-input {
  background: transparent !important;
  border: none !important;
  padding: 0 16px;
  color: #fff !important;
  font-size: 14px;
  flex: 1;
  outline: none !important;
  box-shadow: none !important;
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(246, 236, 207, 0.4);
}

.newsletter-btn {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 21, 0.2);
}

.newsletter-btn:active {
  transform: translateY(0px);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link:hover {
  color: var(--fg);
}

.gadr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background-color: var(--surface-container-high);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-copyright {
  color: rgba(246, 236, 207, 0.4);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-link {
  color: rgba(246, 236, 207, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-bottom-link:hover {
  color: var(--fg);
}

/* Responsive Footer */
@media screen and (max-width: 1024px) {
  .gadr-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .gadr-footer {
    padding: 60px 20px 20px 20px;
  }
  .gadr-footer-section, .gadr-footer-bottom {
    padding: 40px 24px;
  }
  .gadr-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gadr-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

/* Sala Card V2 - Events Style */
.sala-card-v2 {
  position: relative;
  width: 100%;
  aspect-ratio: 3.5 / 4.6;
  border-radius: 32px;
  overflow: hidden;
  background-color: var(--surface-container-highest);
  transition: transform 0.6s var(--transition-elastic), box-shadow 0.6s ease;
  cursor: pointer;
  border: 1px solid rgba(246, 236, 207, 0.05);
}

.sala-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-color: rgba(246, 236, 207, 0.15);
}

.sala-card-v2-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-elastic);
}

.sala-card-v2:hover .sala-card-v2-img {
  transform: scale(1.1);
}

.sala-card-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(14, 21, 29, 0.98) 0%, 
    rgba(14, 21, 29, 0.7) 40%, 
    rgba(14, 21, 29, 0) 75%,
    rgba(14, 21, 29, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
  z-index: 2;
}

.sala-card-v2-glass {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 95px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 3;
}

.sala-card-v2-price {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.02em;
}

.sala-card-v2-unit {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  opacity: 0.5;
  margin-top: 4px;
}

.sala-card-v2-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(249, 115, 21, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sala-card-v2-title {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.sala-card-v2-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.sala-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sala-card-v2-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.sala-card-v2-meta i {
  font-size: 14px;
}

.sala-card-v2-btn {
  background: #fff;
  color: #141d1d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sala-card-v2:hover .sala-card-v2-btn {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------
   SALA CARD V3 - SPLIT LAYOUT (TOP IMAGE, BOTTOM TEXT)
   --------------------------------------------------------- */
.sala-card-v3 {
  display: flex;
  flex-direction: column;
  background: #f6eccf; /* "Cremita" background */
  border-radius: 40px;
  overflow: hidden;
  transition: all 0.5s var(--transition-elastic);
  cursor: pointer;
  border: 1px solid rgba(246, 236, 207, 0.2);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sala-card-v3:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  border-color: var(--primary);
}

.sala-card-v3-img-ctx {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface-container);
}

.sala-card-v3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sala-card-v3:hover .sala-card-v3-img {
  transform: scale(1.1);
}

.sala-card-v3-price-glass {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(47, 66, 87, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sala-card-v3-price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.sala-card-v3-price-unit {
  font-size: 10px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sala-card-v3-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sala-card-v3-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.sala-card-v3-location span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sala-card-v3-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #2f4257; /* Navy blue text */
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.sala-card-v3-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(47, 66, 87, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  font-weight: 500;
}

.sala-card-v3-divider {
  height: 1px;
  background: rgba(47, 66, 87, 0.1);
  margin: 12px 0;
}

.sala-card-v3-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sala-card-v3-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f4257;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
}

.sala-card-v3-btn {
  width: 52px;
  height: 52px;
  background: #2f4257;
  color: #f6eccf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--transition-elastic);
  box-shadow: 0 4px 12px rgba(47, 66, 87, 0.2);
}

.sala-card-v3:hover .sala-card-v3-btn {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-45deg);
}

.sala-card-v3-eq-tag {
  background: rgba(47, 66, 87, 0.06);
  border: 1px solid rgba(47, 66, 87, 0.08);
  padding: 6px 12px;
  border-radius: 12px;
  color: #2f4257;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sala-card-v3-eq-tag::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
}

/* Mobile Adjustments for Card v3 */
@media (max-width: 640px) {
  .sala-card-v3-content {
    padding: 24px;
    gap: 8px;
  }
  .sala-card-v3-title {
    font-size: 22px;
  }
  .sala-card-v3-desc {
    font-size: 13px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  .sala-card-v3-btn {
    width: 44px;
    height: 44px;
  }
  .sala-card-v3-eq-tag {
    padding: 5px 10px;
    font-size: 9px;
  }
}
