/* ============================================
   SISTEMLUX — Components
   Navbar, botones, cards, formulario, footer
   ============================================ */

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: var(--z-navbar);
  background: var(--navbar-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.navbar--scrolled {
  background: var(--navbar-bg-scroll);
  border-bottom-color: var(--border-primary);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ── Logo ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  z-index: calc(var(--z-navbar) + 1);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar__logo-icon svg {
  width: 100%;
  height: 100%;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  letter-spacing: var(--ls-tight);
}

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

/* ── Nav Links ── */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--text-accent);
}

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

/* ── Actions (Theme Toggle) ── */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.navbar__theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-secondary);
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
  cursor: pointer;
}

.navbar__theme-toggle:hover {
  color: var(--text-accent);
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

.navbar__theme-toggle svg {
  width: 20px;
  height: 20px;
}

/* Theme icon visibility */
.navbar__theme-toggle .icon-sun {
  display: none;
}

.navbar__theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .navbar__theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .navbar__theme-toggle .icon-moon {
  display: none;
}

/* ── Hamburger ── */
.navbar__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-navbar) + 1);
  padding: 0;
}

.navbar__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

/* Hamburger → X animation */
.navbar__hamburger--active .navbar__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger--active .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger--active .navbar__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu ── */
@media (max-width: 767px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    background: var(--bg-primary);
    border-left: 1px solid var(--border-primary);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: var(--z-navbar);
  }

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

  .navbar__link {
    font-size: var(--fs-lg);
  }

  .navbar__overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay-bg);
    z-index: calc(var(--z-navbar) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
  }

  .navbar__overlay--visible {
    opacity: 1;
    pointer-events: all;
  }
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  box-shadow: var(--shadow-gold);
}

.btn--secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}

.btn--secondary:hover {
  background: rgba(187, 152, 88, 0.1);
  box-shadow: var(--shadow-glow);
}

.btn--lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--fs-base);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════
   CARDS (Base)
   ══════════════════════════════════════════════ */

.card {
  background: var(--glass-card-bg);
  border: 1px solid var(--glass-card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: var(--z-base);
  max-width: 720px;
}

.hero__label {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-gold);
}

.hero__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-tight);
}

.hero__title span {
  color: var(--color-gold);
}

.hero__description {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero decorative background */
.hero__bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(187, 152, 88, 0.12) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  pointer-events: none;
}

/* ══════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════ */

.service-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(187, 152, 88, 0.1);
  color: var(--color-gold);
  transition: background-color var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: rgba(187, 152, 88, 0.2);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.service-card__description {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════
   TEAM CARDS
   ══════════════════════════════════════════════ */

.team-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
  overflow: hidden;
  border: 3px solid var(--border-primary);
  transition: border-color var(--transition-base);
  position: relative;
}

.team-card:hover .team-card__avatar {
  border-color: var(--color-gold);
}

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

/* Placeholder con iniciales */
.team-card__avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy));
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
}

[data-theme="light"] .team-card__avatar-placeholder {
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
  color: var(--color-brown);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  margin-bottom: var(--space-2xs);
}

.team-card__role {
  font-size: var(--fs-sm);
  color: var(--color-gold);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover overlay with portfolio link */
.team-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__overlay-name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
}

.team-card__overlay-role {
  font-size: var(--fs-sm);
  color: var(--color-gold);
  font-weight: var(--fw-medium);
}

.team-card__portfolio-link {
  margin-top: var(--space-sm);
}

.team-card__portfolio-soon {
  font-size: var(--fs-sm);
  color: var(--text-tertiary);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ══════════════════════════════════════════════
   STATS / COUNTERS
   ══════════════════════════════════════════════ */

.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-primary);
  border-bottom: 1px solid var(--border-primary);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact__info-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.contact__info-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(187, 152, 88, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
}

.contact__info-label {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-2xs);
}

.contact__info-value {
  font-size: var(--fs-base);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
}

/* ── Project Cards ── */
.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
  height: 100%;
}

.project-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-secondary);
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-gold);
  opacity: 0.6;
}

.project-card__placeholder svg {
  width: 48px;
  height: 48px;
}

.project-card__placeholder span {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.project-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.project-card__description {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-secondary);
  gap: var(--space-md);
}

.project-card__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-gold);
  background: rgba(187, 152, 88, 0.1);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-full);
}

@media (max-width: 640px) {
  .project-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  color: var(--input-text);
  font-size: var(--fs-base);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--input-placeholder);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--input-focus-border);
  box-shadow: 0 0 0 3px rgba(187, 152, 88, 0.15);
}

.form__textarea {
  min-height: 140px;
}

/* ── Form Feedback (PHP Script) ── */
.php-email-form .loading {
    display: none;
    background: var(--bg-card);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    color: var(--color-gold);
}

.php-email-form .error-message {
    display: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid #ef4444;
}

.php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.php-email-form .loading.d-block,
.php-email-form .error-message.d-block,
.php-email-form .sent-message.d-block {
    display: block;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form__error {
  font-size: var(--fs-xs);
  color: #e74c3c;
  display: none;
  align-items: center;
  gap: var(--space-2xs);
}

.form__error--visible {
  display: flex;
}

.form__error svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

/* Input states */
.form__input--error,
.form__textarea--error {
  border-color: #e74c3c;
}

.form__input--valid,
.form__textarea--valid {
  border-color: #2ecc71;
}

/* Submit button loading */
.btn--loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn--loading .btn__text {
  visibility: hidden;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

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

/* Toast */
.toast {
  position: fixed;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  z-index: var(--z-modal);
  opacity: 0;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
  white-space: nowrap;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast--success {
  background: #2ecc71;
  color: #ffffff;
}

.toast--error {
  background: #e74c3c;
  color: #ffffff;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════ */

.whatsapp-btn {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: var(--z-whatsapp);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */

.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-primary);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
}

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

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  min-width: 16px;
}

.footer__bottom {
  border-top: 1px solid var(--border-secondary);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
