/* =============================================
   BARBADOS CLUB – styles.css
   Paleta: Negro (#000) + Dorado (#FFC300)
   Tipografías: Playfair Display + Barlow
   ============================================= */

/* ── RESET & VARIABLES ─────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #FFC300;
  --gold-dark: #d4a200;
  --gold-light: #FFD54F;
  --black: #000000;
  --black-soft: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #555555;
  --gray-light: #aaaaaa;
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --font-cond: 'Barlow Condensed', Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 4px 24px rgba(255, 195, 0, 0.25);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ── UTILIDADES ─────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-accent {
  color: var(--gold);
}

.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 500px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}


/* ── BOTONES ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 195, 0, 0.12);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header__logo {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transition: var(--transition);

}

.header__logo img {
  width: 66px;
  height: 66px;

}

.header__logo:hover .header__logo-img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(90%) saturate(500%) hue-rotate(5deg);
}

.header__logo-text {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
}

/* NAV */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  color: var(--gray-light);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 195, 0, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 195, 0, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #000 100%);
}

/* Textura sutil */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 60px,
      rgba(255, 195, 0, 0.025) 60px,
      rgba(255, 195, 0, 0.025) 61px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 60px,
      rgba(255, 195, 0, 0.025) 60px,
      rgba(255, 195, 0, 0.025) 61px);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}

.hero__eyebrow {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero__title--accent {
  color: var(--gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}

/* Decorador lateral */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
  animation: fadeIn 1.5s 0.8s ease both;
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gray), transparent);
  animation: expandLine 1.5s 1.2s ease both;
  transform-origin: left;
}

/* ── VALUES STRIP ────────────────────────────── */
.values-strip {
  background: var(--gold);
  padding: 1rem 5%;
  overflow: hidden;
}

.values-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.values-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

.values-strip__icon {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.45);
}

/* ── ABOUT ───────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--dark);
}

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

.about__text {
  padding-right: 2rem;
}

.about__body {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.35rem;
}

/* Visual lado derecho */
.about__visual {
  display: flex;
  justify-content: center;
}

.about__img-frame {
  position: relative;
  width: 380px;
  height: 440px;
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 195, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  img {
    width: 90%;
    height: 80%;
    border-radius: 20px;

  }
}
.stat__number,
.stat__suffix {
  display: inline;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__top {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.about__logo-big {
  width: 80%;
  filter: brightness(0) invert(1);
  opacity: 0.15;
}

/* Borde dorado decorativo */
.about__img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 6px);
  border: 1px solid rgba(255, 195, 0, 0.2);
}

.about__badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 195, 0, 0.4);
}

.about__badge-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

/* ── TEAM ────────────────────────────────────── */
.team {
  padding: 8rem 0;
  background: var(--black-soft);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
  margin-top: 1rem;
}

.team-card:hover {
  border-color: rgba(255, 195, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.team-card__photo {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__photo--1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.team-card__photo--2 {
  background: linear-gradient(135deg, #141414 0%, #222 100%);
}

.team-card__photo--3 {
  background: linear-gradient(135deg, #111 0%, #1e1e1e 100%);
}

.team-card__photo--4 {
  background: linear-gradient(135deg, #181818 0%, #252525 100%);
}

.team-card__photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.1);
  border: 2px solid rgba(255, 195, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.team-card:hover .team-card__photo-placeholder {
  background: rgba(255, 195, 0, 0.18);
  border-color: var(--gold);
}

.team-card__initials {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.team-card__info {
  padding: 1.5rem;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.team-card__role {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-card__desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────── */
.services {
  padding: 8rem 0;
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover {
  border-color: rgba(255, 195, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.service-card--featured {
  border-color: rgba(255, 195, 0, 0.4);
  background: linear-gradient(135deg, #1a1600 0%, #1a1a1a 100%);
}

.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  flex: 1;
}

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.service-card__from {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.service-card__cta {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  align-self: flex-start;
}

.service-card__cta:hover {
  color: var(--gold-light);
  letter-spacing: 0.12em;
}

/* ── PRODUCTS ────────────────────────────────── */
.products {
  padding: 8rem 0;
  background: var(--black-soft);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  border-color: rgba(255, 195, 0, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.product-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img--1 {
  background: linear-gradient(135deg, #1c1800 0%, #252000 100%);
}

.product-card__img--2 {
  background: linear-gradient(135deg, #0d1a0d 0%, #112211 100%);
}

.product-card__img--3 {
  background: linear-gradient(135deg, #180d00 0%, #221200 100%);
}

.product-card__img--4 {
  background: linear-gradient(135deg, #000d1a 0%, #001122 100%);
}

.product-card__img-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 195, 0, 0.08);
  border: 1px solid rgba(255, 195, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.product-card:hover .product-card__img-inner {
  background: rgba(255, 195, 0, 0.15);
  border-color: var(--gold);
  transform: scale(1.08);
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.product-card__btn {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 195, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 195, 0, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-top: 1rem;
}

.product-card__btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #0d0900 0%, #1a1200 50%, #0d0900 100%);
  border-top: 1px solid rgba(255, 195, 0, 0.15);
  border-bottom: 1px solid rgba(255, 195, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 195, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-banner__subtitle {
  font-size: 1rem;
  color: var(--gray-light);
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 5rem 0 3rem;
}

.footer__logo {
  width: 64px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__brand img {
  width: 66px;
  height: 66px;

 
}
.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.footer__address p {
  margin-bottom: 0.75rem;
}

.footer__address a {
  color: var(--gray-light);
  transition: var(--transition);
}

.footer__address a:hover {
  color: var(--gold);
}

.footer__hours {
  font-size: 0.83rem !important;
  color: var(--gray) !important;
}

.footer__hours strong {
  color: var(--white) !important;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

/* Mapa */
.footer__map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  filter: grayscale(1) invert(0.85) brightness(0.5);
  transition: filter var(--transition);
}

.footer__map:hover {
  filter: grayscale(0.5) brightness(0.7);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ── ANIMACIONES ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__text {
    padding-right: 0;
  }

  .about__visual {
    display: none;
  }

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

@media (max-width: 768px) {

  /* Header mobile */
  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 195, 0, 0.12);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav__list.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    width: 100%;
    text-align: center;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Secciones */
  .about {
    padding: 5rem 0;
  }

  .team {
    padding: 5rem 0;
  }

  .services {
    padding: 5rem 0;
  }

  .products {
    padding: 5rem 0;
  }

  .services__grid,
  .products__grid {
    grid-template-columns: 1fr;
  }

  .about__stats {
    gap: 1.5rem;
  }

  /* CTA */
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Values strip */
  .values-strip__inner {
    gap: 1.25rem;
  }

  .hero__title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* ── SELECCIÓN DE TEXTO ──────────────────────── */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── CSS-ONLY HAMBURGER (sin JavaScript) ─────── */
.nav__toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav__toggle:checked~.nav__list {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__toggle:checked+.nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle:checked+.nav__hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav__toggle:checked+.nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.nav__hamburger-label {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__hamburger {
    display: none;
  }

  .nav__hamburger-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 100;
  }

  .nav__hamburger-label span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav__toggle:checked~.nav__hamburger-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle:checked~.nav__hamburger-label span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle:checked~.nav__hamburger-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ──────────────────────────────────────────────
   DRAWER MENU MOBILE
────────────────────────────────────────────── */

/* ──────────────────────────────────────────────
   DRAWER MENU MOBILE
────────────────────────────────────────────── */

/* Elimina estilos viejos del checkbox */
.nav__toggle,
.nav__hamburger-label { display: none !important; }

/* Botón hamburguesa */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
  z-index: 1200;
  position: relative;
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.32s ease, opacity 0.32s ease;
  transform-origin: center;
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  top: 72px;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.nav__drawer {
  position: fixed;
  top: 72px; right: 0; bottom: 0;
  width: 72%;
  max-width: 280px;
  background: #000;
  border-left: 1px solid rgba(255, 195, 0, 0.2);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 0 32px;
  overflow-y: auto;
}

.nav__drawer.is-open {
  transform: translateX(0);
}

/* Links del drawer */
.nav__drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  position: relative;
  opacity: 0;
  transform: translateX(20px);
  transition: color 0.2s, background 0.2s,
              opacity 0.32s ease, transform 0.32s ease;
}

.nav__drawer.is-open .nav__drawer-link { opacity: 1; transform: translateX(0); }
.nav__drawer.is-open .nav__drawer-link:nth-child(1) { transition-delay: 0.06s; }
.nav__drawer.is-open .nav__drawer-link:nth-child(2) { transition-delay: 0.11s; }
.nav__drawer.is-open .nav__drawer-link:nth-child(3) { transition-delay: 0.16s; }
.nav__drawer.is-open .nav__drawer-link:nth-child(4) { transition-delay: 0.21s; }
.nav__drawer.is-open .nav__drawer-link:nth-child(5) { transition-delay: 0.26s; }

/* Línea dorada al hover */
.nav__drawer-link::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.2s ease;
}

.nav__drawer-link:hover {
  color: var(--white);
  background: rgba(255, 195, 0, 0.05);
}

.nav__drawer-link:hover::before { transform: scaleY(1); }

.nav__drawer-icon {
  font-size: 12px;
  opacity: 0.45;
}

/* Botón CTA dentro del drawer */
.nav__drawer-cta {
  display: block;
  margin: 20px 20px 0;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.32s,
              transform 0.3s ease 0.32s,
              background 0.2s;
}

.nav__drawer.is-open .nav__drawer-cta {
  opacity: 1;
  transform: translateY(0);
}

.nav__drawer-cta:hover { background: var(--gold-light); }

/* Bloque inferior del drawer */
.nav__drawer-bottom {
  margin-top: auto;
  padding: 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease 0.38s;
}

.nav__drawer.is-open .nav__drawer-bottom { opacity: 1; }

.nav__drawer-brand {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 4px;
}

.nav__drawer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: #444;
  margin-bottom: 14px;
}

.nav__drawer-socials {
  display: flex;
  gap: 8px;
}

.nav__drawer-social {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.nav__drawer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Solo mostrar hamburguesa en mobile */
@media (max-width: 768px) {
  .nav__hamburger { display: flex; }

  /* Ocultar la nav list de desktop */
  .nav__list { display: none !important; }
}

@media (min-width: 769px) {
  /* Ocultar drawer y overlay en desktop */
  .nav__drawer,
  .nav__overlay { display: none !important; }
}
.team-card__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* ──────────────────────────────────────────────
   BOTÓN WHATSAPP FLOTANTE
────────────────────────────────────────────── */
#bc-whatsapp {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 899;
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease,
              transform 0.3s ease, background 0.2s;
}

#bc-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#bc-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

#bc-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* Tooltip al hacer hover */
#bc-whatsapp::before {
  content: 'Escríbenos';
  position: absolute;
  right: 52px;
  background: #000;
  color: #fff;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#bc-whatsapp:hover::before {
  opacity: 1;
}
/* ──────────────────────────────────────────────
   STATS MOBILE — GRID 2+1
────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 1rem;
  }

  /* 8+ izquierda arriba */
  .about__stats .stat:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    align-items: left;
  }

  /* 6K+ derecha arriba */
  .about__stats .stat:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    align-items: right;
  }

  /* 6 Barberos — abajo centrado ocupando las 2 columnas */
  .about__stats .stat:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: center;
    align-items: center;
  }

  .about__stats .stat:nth-child(3) .stat__top {
    justify-content: center;
  }
  .about__stats .stat:nth-child(1),
  .about__stats .stat:nth-child(2) {
    text-align: center;
    align-items: center;
  }

  .about__stats .stat:nth-child(1) .stat__top,
  .about__stats .stat:nth-child(2) .stat__top {
    justify-content: center;
  }

}
/* ──────────────────────────────────────────────
   GOOGLE REVIEWS
────────────────────────────────────────────── */
.reviews {
  padding: 6rem 0;
  background: var(--black-soft);
  overflow: hidden;
}

.reviews__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
}

/* Columna puntuación */
.reviews__score { text-align: center; }

.reviews__badge {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.reviews__stars {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.reviews__stars .half {
  position: relative;
  display: inline-block;
  color: rgba(255,195,0,0.25);
}

.reviews__stars .half::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.reviews__count {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.reviews__count strong { color: var(--white); }

.reviews__google-logo { display: flex; justify-content: center; }

/* Carrusel de reseñas */
.reviews__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviews__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0.5rem 0.25rem;
  flex: 1;
}

.reviews__track::-webkit-scrollbar { display: none; }

/* Cards de reseña */
.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: rgba(255,195,0,0.25);
  transform: translateY(-3px);
}

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

.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,195,0,0.15);
  border: 1px solid rgba(255,195,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.review-card__meta span {
  font-size: 0.75rem;
  color: var(--gray);
}

.review-card__g { flex-shrink: 0; }

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.65rem;
}

.review-card__text {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.65;
  font-style: italic;
}

/* Flechas */
.reviews__arrow {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,195,0,0.3);
  background: transparent;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}

.reviews__arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.reviews__arrow:disabled {
  opacity: 0.2;
  pointer-events: none;
}

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

body {
  overflow-x: hidden;
}
/* Mobile */
@media (max-width: 768px) {

  .reviews {
    overflow: hidden;
  }

  .reviews__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    overflow: hidden;
  }

  .reviews__score {
    width: 100%;
    text-align: center;
    margin: 0 auto -10px auto;
  }

  .reviews__carousel-wrap {
    width: 100%;
    overflow: hidden;
    gap: 0.5rem;
    justify-content: center;
  }

  .reviews__track {
    width: 100%;
    overflow-x: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .review-card {
    flex: 0 0 85%;
    max-width: 85%;
    min-height: 220px;
  }

  .reviews__arrow {
    display: none;
  }

}
/* ===== FIX GOOGLE REVIEWS ===== */

.review-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.review-card__avatar {
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.reviews__track {
  scroll-behavior: smooth;
}

.review-card__stars {
  min-height: 20px;
}

.review-card__header {
  align-items: flex-start;
}

.review-card__meta strong {
  display: block;
  line-height: 1.2;
}

.review-card__meta span {
  margin-top: 2px;
}

@media (max-width: 768px) {

  .review-card {
    flex: 0 0 85%;
    min-height: 220px;
  }

  .reviews__inner {
    gap: 1.5rem;
  }

  .reviews__score {
    margin-bottom: -10px;
  }

  .reviews__arrow {
    display: none;
  }

}

body {
  overflow-x: hidden;
}
/* ──────────────────────────────────────────────
   BARRA STICKY "RESERVA AQUÍ" — SOLO MOBILE
────────────────────────────────────────────── */
/* ──────────────────────────────────────────────
   BARRA STICKY "RESERVA AQUÍ"
────────────────────────────────────────────── */

/* ──────────────────────────────────────────────
   FOOTER ALIADOS
────────────────────────────────────────────── */
.footer__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.footer__gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 10px 8px;
  transition: border-color var(--transition), background var(--transition);
  min-height: 70px;
}

.footer__gallery-item:hover {
  border-color: rgba(255,195,0,0.3);
  background: rgba(255,255,255,0.06);
}

.footer__gallery-item img {
  width: 100%;
  height: auto;
  max-height: 55px;
  object-fit: contain;  /* ← contain para que no recorte logos */
  display: block;
  filter: brightness(1.1) contrast(1);
  transition: filter var(--transition), transform var(--transition);
}

.footer__gallery-item:hover img {
  filter: brightness(1.25);
  transform: scale(1.04);
}

/* La Crema Innata tiene fondo negro/oscuro — lo mantenemos */
.footer__gallery-item:nth-child(2) {
  background: #000;
  border-color: rgba(255,255,255,0.12);
}

/* Gobierno de Colombia — ocupa las 2 columnas centrado */
.footer__gallery-item--full {
  grid-column: 1 / -1;
  background: #000;   /* fondo azul oscuro del logo */
  border-color: rgba(0,80,180,0.3);
  padding: 10px 16px;
  min-height: 56px;
}

.footer__gallery-item--full img {
  max-height: 42px;
  width: auto;
  max-width: 100%;
}

.footer__gallery-item--full:hover {
  border-color: rgba(0,120,255,0.5);
  background: #002060;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .footer__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer__gallery-item {
    min-height: 65px;
    padding: 10px 6px;
  }

  .footer__gallery-item img {
    max-height: 48px;
  }

  .footer__gallery-item--full {
    padding: 10px 14px;
    min-height: 50px;
  }

  .footer__gallery-item--full img {
    max-height: 36px;
  }
}
/* =========================================
   MOBILE HERO GALLERY
========================================= */
/* =========================================
   FIX HERO MOBILE GALLERY
========================================= */

@media (max-width: 768px) {

 .hero {
  flex-direction: column;
}
  .hero__content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 5rem;
  }

  .hero-mobile-gallery {
    display: block;
    width: 100%;
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .hero-mobile-gallery__track {
    display: flex;
    width: 600%;
    animation: heroGallerySlide 24s infinite linear;
  }

  .hero-mobile-gallery__track img {
    width: 100vw;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 18px;

    filter: grayscale(40%) sepia(20%) contrast(1.1) brightness(0.9);
  }
}

  @keyframes heroGallerySlide {

  0%,15% {
    transform: translateX(0);
  }

  16%,31% {
    transform: translateX(-100vw);
  }

  32%,47% {
    transform: translateX(-200vw);
  }

  48%,63% {
    transform: translateX(-300vw);
  }

  64%,79% {
    transform: translateX(-400vw);
  }

  80%,95% {
    transform: translateX(-500vw);
  }

  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 3rem;
  }

}
/* Galería mobile del hero — solo visible en mobile */
.hero-mobile-gallery {
  display: none;
}

@media (max-width: 768px) {
  .hero-mobile-gallery {
    display: block;
  }
}
.team-card__info .product-card__btn {
  display: inline-block;
  margin-top: 1rem;
}
.service-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.about__body {
  text-align: justify;
}
/* ──────────────────────────────────────────────
   BADGE DE CALIFICACIÓN EN FOTO DE PROFESIONAL
────────────────────────────────────────────── */
.team-card__photo {
  position: relative;
}

.team-card__rating {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #000;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

.team-card__rating-star {
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
}

.team-card__rating-value {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}