:root {
  --bg: #0b0b0b;
  --bg2: #121212;
  --card: #101010;
  --stroke: #242424;
  --text: #f5f5f5;
  --muted: #b7b7b7;

  --accent: #e10600;
  --accent2: #b30500;

  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);

  --navH: 76px;
  --heroMinH: 72vh;
  --heroPadY: 48px;
}

/* =========================
   BASE
========================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container { max-width: 1280px; }

main { padding-top: var(--navH); }
section { scroll-margin-top: 92px; }

.section-divider { position: relative; }
.section-divider::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.10), transparent);
}

/* =========================
   NAV (estilo)
========================= */
.nav-aguilera {
  min-height: var(--navH);
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  z-index: 1030;
}

.nav-logo { width: 52px; height: 52px; object-fit: contain; }

.brand-text {
  font-family: Anton, Impact, system-ui;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  text-transform: uppercase;
  line-height: 1;
}
.brand-sub {
  color: rgba(245, 245, 245, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-toggler {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.48rem 0.6rem;
}

.nav-aguilera .nav-link {
  position: relative;
  color: rgba(245, 245, 245, 0.82);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.nav-aguilera .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}
.nav-aguilera .nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.22rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-aguilera .nav-link:hover::after { transform: scaleX(1); }
.nav-aguilera .nav-link.active { color: var(--accent); }
.nav-aguilera .nav-link.active::after { transform: scaleX(1); }

/* =========================
   OFFCANVAS (mobile)
========================= */
.offcanvas-aguilera {
  background: var(--bg) !important;
  color: var(--text) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  --bs-offcanvas-width: 320px;

  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-height: 100dvh;
}

.offcanvas-aguilera .offcanvas-header {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-aguilera .offcanvas-title {
  color: rgba(245, 245, 245, 0.92) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.offcanvas-aguilera .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.9;
}

.offcanvas-aguilera .offcanvas-body {
  padding: 16px 18px 22px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.offcanvas-aguilera .navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.offcanvas-aguilera .navbar-nav .nav-link {
  width: 100%;
  text-align: center;
  color: rgba(245, 245, 245, 0.92) !important;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px !important;
}

.offcanvas-aguilera .navbar-nav .nav-link::after { display: none !important; }

.offcanvas-aguilera .navbar-nav .nav-link:hover {
  background: rgba(225, 6, 0, 0.1);
  border-color: rgba(225, 6, 0, 0.35);
  color: #fff !important;
}

.offcanvas-backdrop.show { opacity: 0.75; }

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: calc(var(--heroMinH) - var(--navH));
  padding: var(--heroPadY) 0;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.06) saturate(0.92) brightness(0.95);
  transform: scale(1.02);
}

.hero-img {
  object-position: center 15%;
  filter: contrast(1.06) saturate(0.92) brightness(0.96);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.70) 32%,
      rgba(0, 0, 0, 0.42) 55%,
      rgba(0, 0, 0, 0.18) 72%,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      1100px 650px at 55% 40%,
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.55) 70%
    );
}

.hero-content { position: relative; z-index: 2; padding-top: 25px; }

.hero-eyebrow {
  color: rgba(245, 245, 245, 0.82);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-title {
  font-family: Anton, Impact, system-ui;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 3.4rem;
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.hero-title span { display: block; color: rgba(245, 245, 245, 0.92); }

.hero-subtitle {
  color: rgba(245, 245, 245, 0.80);
  max-width: 640px;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.hero .btn { border-radius: 14px; }

.hero .btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.92);
}
.hero .btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
}

.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(245, 245, 245, 0.92);
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}
.chip i { color: var(--accent); }

.hero-logo-card {
  display: inline-block;
  padding: 20px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}
.hero-logo-card::before,
.hero-logo-card::after { content: none !important; }

.hero-logo {
  width: min(240px, 70vw);
  height: auto;
  object-fit: contain;
}

.hero-note {
  color: rgba(245, 245, 245, 0.72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* =========================
   TEAM
========================= */
.team-section{
  position: relative;
  background:
    radial-gradient(900px 420px at 10% 35%, rgba(225, 6, 0, 0.10), transparent 60%),
    radial-gradient(900px 420px at 90% 70%, rgba(225, 6, 0, 0.06), transparent 60%),
    linear-gradient(180deg, #0c0c0c 0%, #0f1114 100%);
}

.team-divider{
  width: 90px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, rgba(225,6,0,.9), transparent);
  opacity: .85;
}

.team-copy{
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}

.team-title{ text-transform: none; letter-spacing: .02em; }

.team-photo-wrap{
  position: relative;
  max-width: 490px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 26px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 70px rgba(0,0,0,0.85);
  overflow: hidden;
}
.team-photo-wrap::before{
  content:"";
  position:absolute;
  inset:-60%;
  background: radial-gradient(circle at 50% 45%, rgba(225,6,0,0.22), transparent 58%);
  filter: blur(60px);
  opacity: .55;
  z-index:0;
}

.team-photo{
  position: relative;
  z-index:2;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,1);
  filter: contrast(1.05) saturate(1.02);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-photo-wrap:hover .team-photo{
  transform: scale(1.02);
  box-shadow: 0 34px 90px rgba(0,0,0,1);
}

.team-pill{
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: all .2s ease;

  padding: 12px 12px;        /* 🔥 más chico */
  min-height: 48px;          /* 🔥 altura controlada */
}

.team-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(225,6,0,0.35);
  background: rgba(225,6,0,0.06);
  box-shadow: 0 16px 32px rgba(0,0,0,0.45);
}

.team-ico{
  font-size: 0.95rem;        /* 🔥 ícono más chico */
}
.team-ico{ color: var(--accent); }
.team-pill-text{ color: rgba(245,245,245,0.92); letter-spacing: .02em; }
.team-credencial{
  border-radius: 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(225,6,0,.35);
  color: rgba(245,245,245,.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.team-credencial i{
  color: var(--accent);
}
/* =========================
   ENTRENAMIENTOS
========================= */
.entreno-card{
  position: relative;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
  padding-top: 64px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.entreno-card::before{
  content:"";
  position:absolute;
  inset:-60%;
  background: radial-gradient(circle at 35% 30%, rgba(225,6,0,.22), transparent 55%);
  filter: blur(55px);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.entreno-card:hover{
  transform: translateY(-3px);
  border-color: rgba(225,6,0,.40);
  background: rgba(0,0,0,.28);
  box-shadow: 0 26px 60px rgba(0,0,0,.60);
}
.entreno-card:hover::before{ opacity: .85; }

.entreno-card--featured{
  border-color: rgba(225,6,0,.32);
  box-shadow: 0 26px 60px rgba(0,0,0,.58), 0 0 28px rgba(225,6,0,.10);
}

.entreno-badge{
  position:absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
}

.entreno-ico{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.entreno-ico i{ color: var(--accent); }

.entreno-btn{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.28);
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.18);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.entreno-btn:hover{
  background: rgba(225,6,0,.10);
  border-color: rgba(225,6,0,.45);
  transform: translateY(-1px);
}

.btn-main-compact{
  background: var(--accent);
  border: none;
  color: #fff;
  height: 46px;
  padding: 0 28px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-main-compact:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(225,6,0,.35);
}

.btn-outline-compact{
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.9);
  background: transparent;
  height: 46px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: .95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.btn-outline-compact:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.6);
}

/* =========================
   CÓMO ENTRENAMOS
========================= */
.metodo-section{
  position: relative;
  background: linear-gradient(180deg, #14171b 0%, #111316 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}
.metodo-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 30%, rgba(225,6,0,.06), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(225,6,0,.04), transparent 55%);
  opacity:.6;
  pointer-events:none;
}
.metodo-section .container{ position: relative; z-index: 2; }

.section-divider-mini{
  width: 92px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, rgba(225,6,0,.85), transparent);
  opacity: .85;
}

.metodo-card{
  position: relative;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.metodo-card::before{
  content:"";
  position:absolute;
  inset:-70%;
  background: radial-gradient(circle at 40% 35%, rgba(225,6,0,.18), transparent 55%);
  filter: blur(60px);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.metodo-card:hover{
  transform: translateY(-3px);
  border-color: rgba(225,6,0,.35);
  background: rgba(0,0,0,.28);
  box-shadow: 0 26px 60px rgba(0,0,0,.60);
}
.metodo-card:hover::before{ opacity: .9; }

.metodo-card--featured{
  border-color: rgba(225,6,0,.26);
  box-shadow: 0 22px 55px rgba(0,0,0,.55), 0 0 24px rgba(225,6,0,.10);
}

.metodo-ico{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 18px;
}
.metodo-ico i{ font-size: 1.5rem; color: var(--accent); }

/* =========================
   LOGROS
========================= */
.logros-section {
  background: #23282c; /* lo dejé como venías */
}

.logros-card {
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
}

.logros-ico-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logros-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/5;
  background: #111;
}

.logros-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.logros-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* =========================
   GALERÍA (SIN FILTROS)
========================= */
.galeria-section{
  background: #0b0b0b;
  position: relative;
}
.galeria-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 30%, rgba(225,6,0,.06), transparent 55%),
    radial-gradient(900px 420px at 85% 70%, rgba(225,6,0,.04), transparent 60%);
  opacity:.75;
  pointer-events:none;
}
.galeria-section .container{
  position: relative;
  z-index: 2;
}

/* Título */
.galeria-title{ letter-spacing: .14em; }
.galeria-line{
  display:block;
  width: 92px;
  height: 2px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(to right, transparent, rgba(225,6,0,.85), transparent);
  opacity: .9;
}

/* Card */
.galeria-card{
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.galeria-card img{
  width: 100%;
  height: 260px; /* altura fija como pediste */
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.galeria-cap{
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(8px);
}

.galeria-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
  opacity:.85;
  pointer-events:none;
}

.galeria-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
}

/* Modal armónica */
.galeria-modal-content{
  background: rgba(12,12,12,.95);
  border: 1px solid rgba(225,6,0,.25);
  box-shadow: 0 28px 120px rgba(0,0,0,.65);
}

.galeria-modal-img{
  max-height: 80vh;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
}
/* Carrusel en mobile: controles más finos y armonía */
#galeriaCarousel .carousel-control-prev,
#galeriaCarousel .carousel-control-next{
  width: 12%;
  opacity: .95;
}

#galeriaCarousel .carousel-control-prev-icon,
#galeriaCarousel .carousel-control-next-icon{
  filter: invert(1);
  opacity: .9;
}
/* =========================
   TIENDA
========================= */
.tienda-section { color: #fff; }

.tienda-badge {
  background: rgba(225, 6, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ffccd3;
}

.tienda-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tienda-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 6, 0, 0.45) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.tienda-media {
  height: 260px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at top, rgba(225, 6, 0, 0.14), rgba(0, 0, 0, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tienda-img {
  max-height: 210px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  filter: contrast(1.05) saturate(1.05);
}

.tienda-body { padding: 18px 18px 20px; }

.tienda-title { font-weight: 800; margin: 0 0 8px; font-size: 1.05rem; }

.tienda-desc {
  margin: 0 0 12px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tienda-meta { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

.tienda-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
   CONTACTO
========================= */
.contacto-section {
  background: linear-gradient(135deg, #1c1f24, #232831);
  color: #fff;
}

.contacto-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contacto-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 6, 0, 0.15);
  border: 1px solid rgba(225, 6, 0, 0.4);
  color: #ffccd3;
  flex-shrink: 0;
}

.contacto-map {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  min-height: 380px;
}

.contacto-iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
}

/* =========================
   FOOTER - Mylo Soul
========================= */
.footer-mylosoul-logo {
  width: 40px;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-mylosoul-link:hover .footer-mylosoul-logo {
  transform: scale(1.08);
  opacity: 0.9;
}

.footer-mylosoul-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.footer-social {
  align-items: center;
}

.footer-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(225,6,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all .25s ease;
}

.footer-icon:hover {
  background: #e10600;
  border-color: #e10600;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(225,6,0,0.35);
}
/* =========================
   RESET DESKTOP (>=992)
========================= */
@media (min-width: 992px) {
  .offcanvas-aguilera {
    background: transparent !important;
    border-left: 0 !important;
    --bs-offcanvas-width: auto;
  }

  .offcanvas-aguilera .offcanvas-header { display: none !important; }

  .offcanvas-aguilera .offcanvas-body {
    padding: 0 !important;
    overflow: visible !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .offcanvas-aguilera .navbar-nav {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 0.25rem;
  }

  .offcanvas-aguilera .navbar-nav .nav-link {
    width: auto;
    text-align: left;
    background: transparent;
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 0.75rem !important;
  }

  .offcanvas-aguilera .navbar-nav .nav-link::after {
    display: block !important;
  }
}