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

@font-face {
  font-family: 'BLAGOVEST Regular';
  src: url('fonts/BLAGOVEST.woff2') format('woff2'),
       url('fonts/BLAGOVEST.woff') format('woff'),
	   url('fonts/BLAGOVEST.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --base-font: 'Bahnschrift', 'Segoe UI', sans-serif;
  --heading-font: 'BLAGOVEST Regular', serif;
  --gold: #C8A84B;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0D0D0D;
  --black-soft: #1A1A1A;
  --white: #F5F2EC;
  --white-pure: #FFFFFF;
  --gray-mid: #2A2A2A;
  --gray-light: #999;
  --red: #a51513
}


::-webkit-scrollbar {width:12px;}   
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background: var(--red);}  
::-webkit-scrollbar-thumb {background: #fff;}
::selection {
  background-color: var(--red); /* Цвет фона выделения */
  color: var(--white-pure); /* Цвет текста при выделении */
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--base-font);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-emblem {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text { line-height: 1.2; }
.logo-text .name {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.04em;
}
.logo-text .city {
  font-size: 11px;
  color: #000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
nav a:hover { color: #000; background: rgba(0,0,0,0.08); }

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid rgba(0,0,0,0.45);
  border-radius: 3px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #000;
  transition: all 0.25s;
  font-family: var(--base-font);
  font-weight: 500;
}
.social-btn:hover,.footer-inner .social-btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-inner .social-btn {
	color: rgba(245, 242, 236, 0.45);
}
/* ─── BANNER ─────────────────────────────────── */
.banner {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background: #a51513;
  background: radial-gradient(circle,rgba(165, 21, 19, 1) 0%, rgba(153, 18, 15, 1) 50%, rgba(140, 21, 17, 1) 100%);
}

.banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(200,168,75,1) 39px, rgba(200,168,75,1) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(200,168,75,1) 39px, rgba(200,168,75,1) 40px);
}

.banner-ornament-left,
.banner-ornament-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  opacity: 0.08;
}
.banner-ornament-left { left: -20px; }
.banner-ornament-right { right: -20px; transform: translateY(-50%) scaleX(-1); }

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0;
  max-width: 800px;
}

.banner-overline {
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.banner-overline::before,
.banner-overline::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  opacity: 0.6;
}

.banner-emblem {
  width: 196px;
 /* height: 196px; 
  margin: 0 auto 2.5rem;*/
  margin-bottom: 10px;
  filter: drop-shadow(0 0 30px rgba(200,168,75,0.2));
}

.banner-title {
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--white-pure);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.banner-title span {
  color: #fff;
  display: block;
}

.banner-city {
  font-family: var(--base-font);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 300;
}

.banner-tagline {
  font-family: var(--base-font);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245,242,236,0.65);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.banner-cta {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--base-font);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.banner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}
.banner-cta:hover { color: var(--black); }
.banner-cta:hover::before { transform: scaleX(1); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: pulse 2.5s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
}

@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:0.7} }

/* ─── SECTIONS COMMON ────────────────────────── */
section { padding: 4rem 2rem 7rem ; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 16px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
	content: '';
    width: 30px;
    height: 2px;
    background: #000;
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.gold-divider-line {
  flex: 1;
  height: 2px;
  background: #000;
  max-width: 80px;
}
.gold-divider-diamond {
  display: none;
  width: 8px;
  height: 8px;
  background: #a51513;
  transform: rotate(45deg);
}

/* ─── О НАС ──────────────────────────────────── */
#about {
  background: #fff;
  color: #000;
}

#about .section-label,
#about .section-title {
  color: #000;
}

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

.about-text p {
  font-family: var(--base-font);
  font-size: 1.15rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 1.5rem;
}

.about-emblem-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-emblem-ring {
  width: 260px;
  height: 260px;
  /* border: 1px solid rgb(165 21 19 / 30%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-emblem-ring::before {
  content: '';
  position: absolute;
  inset: 12px;
  /* border: 1px solid rgba(165 21 19 / 0.15); */
  border-radius: 50%;
}
.about-emblem-ring img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.about-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  color: #a51513;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: #a51513;
  display: block;
}
.stat-num.cifra {
    font-family: var(--base-font);
    font-size: 3.1rem;
    margin-top: 3px;
    margin-bottom: -4px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}

/* ─── ЦЕЛИ ───────────────────────────────────── */
#goals { background: #d3d2d2; }

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.goal-card {
  background: #a51513;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.goal-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(245, 242, 236, 0.55);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.goal-card:hover { background: #b70b0b; }
.goal-card:hover::before { transform: scaleY(1); }

.goal-num {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245, 242, 236, 0.55);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.goal-icon-tit {
	display: flex;
    align-items: center;
}
.goal-card:hover .goal-num { color: rgba(245, 242, 236, 0.55); }
.goal-icon { margin:  0 10px 10px 0; }
.goal-icon svg, .goal-icon img { height: 40px; width: 50px; }

.goal-title {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.goal-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245,242,236,0.55);
  letter-spacing: 0.02em;
}

/* ─── НАПРАВЛЕНИЯ ────────────────────────────── */
#directions { background: #fff; }

.directions-grid {
    display: flex;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.dir-card {
  background: var(--black);
  padding: 2.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  /* border-top: 2px solid transparent; */
}
.dir-card:hover {
  background: #151515;
  border-top-color: #a51513;
}

.dir-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(200,168,75,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.dir-card:hover .dir-icon {
  border-color: #a51513;
  background: rgba(200,168,75,0.08);
}
.dir-card.drj {
    background: url(img/drj.jpg) center no-repeat;
    background-size: cover;
}
.dir-card.prv {
    background: url(img/prv.jpg) center -20px no-repeat;
    background-size: cover;
}
.dir-card.spt {
    background: url(img/sport.jpg) center no-repeat;
    background-size: cover;
}
.dir-card.rd {
    background: url(img/rd.jpg) center no-repeat;
    background-size: cover;
}
.dir-card.vol {
    background: url(img/vol.jpg) center no-repeat;
    background-size: cover;
}
.dir-icon svg { width: 26px; height: 26px; color: #a51513; }

.dir-name {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white-pure);
  margin-bottom: 0.8rem;
}

.dir-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-pure);
}

/* ─── УСТАВ ──────────────────────────────────── */
#ustav { background: var(--gray-light); }

.ustav-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ustav-block {
  border: 1px solid rgba(200,168,75,0.2);
  padding: 3.5rem 4rem;
  position: relative;
  background: var(--white-pure);
}
.ustav-block::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, #a51513, transparent);
}

.ustav-intro {
  font-family: var(--base-font);
  font-size: 1.1rem;
  line-height: 1.9;
  color: #000;
  margin-bottom: 2.5rem;
}

.ustav-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.ustav-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #000;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(200,168,75,0.08);
}
.ustav-item:last-child { border-bottom: none; padding-bottom: 0; }

.ustav-item-num {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #a51513;
  min-width: 28px;
  padding-top: 0.1rem;
}

.ustav-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid #a51513;
  color: #a51513;
  font-family: var(--base-font);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
}
.ustav-download:hover {
  background: #a51513;
  color: var(--black);
}
.ustav-download svg { width: 16px; height: 16px; }

/* ─── ФОРМА ──────────────────────────────────── */
#join { 
	background: var(--red); 
	background: url(img/hod.jpg) center no-repeat;
	background-size: cover;
	position: relative;
/* 	backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5); */
}
#join .container {
    z-index: 1;
    position: relative;
}
.dir-fon.vstup {
	top: 0;
	left: 0;
	background: var(--red);
	opacity: 0.85;
	z-index: 0;
}
.join-inner {
  max-width: 680px;
  margin: 0 auto;
}
.join-inner .section-label {
	color: #fff;
}
.join-inner .section-label::before {
    background: #fff;
}
.join-inner .gold-divider-line {
    background: #fff;
}
.join-inner .section-title {
    color: #fff;
}
.join-intro {
  font-family: var(--base-font);
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(245,242,236,0.65);
  margin-bottom: 3rem;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a51513;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,75,0.25);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--base-font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #a51513;
  background: rgba(200,168,75,0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245,242,236,0.25); }

.form-select option { background: #1A1A1A; color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  padding: 18px 48px;
  background: #fff;
  color: var(--black);
  font-family: var(--base-font);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.form-submit:hover {color: #fff;}
.form-submit:hover::before { transform: scaleX(1); }
.form-submit span { position: relative; z-index: 1; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(200,168,75,0.3);
  background: rgba(200,168,75,0.05);
}
.form-success svg { width: 48px; height: 48px; color: #a51513; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: #a51513;
  margin-bottom: 0.8rem;
}
.form-success p { font-size: 0.9rem; color: var(--gray-light); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: #080808;
  border-top: 1px solid rgba(200,168,75,0.15);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  /* margin-bottom: 3rem; */
}

.footer-brand .logo-text .name { font-size: 20px; }
.footer-brand .logo-emblem {
  filter: brightness(0) invert(1);
}
.footer-brand .logo {
    opacity: 0.5;
}
.footer-brand .name, .footer-brand .city{
    color: rgba(245,242,236,0.8);
}
.footer-brand p {
  font-family: var(--base-font);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,242,236,0.45);
  margin-top: 1.2rem;
}


.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.8rem;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a51513;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.45);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: #a51513; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,168,75,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(245,242,236,0.25);
  letter-spacing: 0.05em;
}

.footer-motto {
  font-family: var(--heading-font);
  /* font-style: italic; */
  font-size: 13px;
  color: #a51513;
  opacity: 0.7;
}

/* ─── TO TOP BUTTON ──────────────────────────── */
.to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  cursor: pointer;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-btn:hover {
  background: rgba(255, 255, 255, 0.75);
}

.to-top-btn svg {
  width: 24px;
  height: 24px;
  color: #000;
}


/* ─── FADE IN ANIMATION ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
    transform: translateY(0);
}
.dir-card.reveal.visible {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 33%;
	height: 300px;
}
.dir-card.reveal.visible.w50 {
    width: 49.6%;
}
.dir-fon {
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
	/* backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5); для не размытых картинок*/
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
	.header-inner {padding: 0 1rem;}
	.logo {gap: 5px;}
	.social-btn {padding: 8px}
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-emblem-block { order: -1; }
  .goals-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  nav { display: none; }
  .ustav-block { padding: 2.5rem 2rem; }
}

@media (max-width: 820px) {
	.stat-num.cifra {margin-bottom: -6px;}
	.dir-card.prv {background: url(img/prv.jpg) center 0px no-repeat; background-size: cover;}
	.dir-desc {padding: 0 5px;}
	.footer-inner {display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly;}
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .banner-cta { padding: 14px 32px; }
  .header-social .social-btn span { display: none; }
  .social-btn { padding: 8px 10px; }
  section { padding: 5rem 1.5rem; }
  .to-top-btn {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 420px) {
	.header-inner {gap: 0rem;}
	.header-social {gap: 5px;}
	.logo-emblem {width: 60px; }
	.logo-text .name {font-size: 15px;}
	.social-btn {padding: 6px; border: none;}
    #home {padding: 3rem 1.5rem 7rem;}
	section {padding: 3rem 1.5rem;}
	.social-btn svg {width: 20px; height: 20px;}
	.stat-num.cifra {margin-bottom: -5px;}
	.dir-card.reveal.visible.w50, .dir-card.reveal.visible {width: 100%; height: 200px;}
}

@media (max-width: 360px) {
	.logo-text {width: 100px;}
	.logo-text .city {padding-top: 3px;}
	footer {padding: 1.5rem;}
	.footer-social {gap: 5px;}
}
