/* =========================================================
   SERFOSA · Imprenta & Diseño — styles.css
   Organizado por secciones, siguiendo el orden del HTML
   ========================================================= */

@import url('variables.css');




/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--color-background);
  color: var(--color-gray-900);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ELEMENTOS COMPARTIDOS: badges y botones ===== */
.badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-background);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.section__badge {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-background);
  box-shadow: var(--shadow-btn);
}

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

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

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.1rem 3rem;
  font-size: 1.05rem;
}

/* ===== ENCABEZADO DE SECCIÓN (usado en Servicios, Trayectoria, Contacto) ===== */
.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--color-gray-600);
}

/* =========================================================
   NAVBAR
   ========================================================= */
/* =========================================================
   NAVBAR CORPORATIVA - Diseño serio y profesional
   ========================================================= */

/* =========================================================
   NAVBAR CORPORATIVA - Diseño serio y profesional
   ========================================================= */

/* =========================================================
   NAVBAR CORPORATIVA - Diseño serio y profesional
   ========================================================= */

.navbar {
  position: absolute;  /* cámbialo a fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 20px 0;
  background: transparent;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* ===== BRAND CORPORATIVA ===== */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.navbar__brand:hover {
  opacity: 0.85;
}

.navbar__logo {
  height: 48px;
  width: auto;
  display: block;
  /* ELIMINADO: filter: brightness(0) invert(1); */
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar__brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar__brand-tagline {
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== BOTÓN HAMBURGUESA CORPORATIVO ===== */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 220;
  transition: all 0.3s ease;
}

.navbar__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 1px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar__hamburger:hover .navbar__hamburger-line {
  background: rgba(255, 255, 255, 0.8);
}

/* Animación a X */
.navbar__hamburger.is-active .navbar__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

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

/* ===== MENÚ DE NAVEGACIÓN ===== */
.navbar__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 210; /* por encima del navbar (z-index: 200) */

}

.navbar__item {
  position: relative;
}

.navbar__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 450;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  border-radius: 4px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #B8A9C9;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__link:hover {
  color: #ffffff;
}

.navbar__link:hover::after {
  width: 60%;
}

/* ===== CTA COTIZAR ===== */
.navbar__link-cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  background: var(--color-secondary);
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.navbar__link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: var(--color-secondary-dark);
}

/* ===== OVERLAY ===== */
.navbar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* =========================================================
   RESPONSIVE - Menú hamburguesa corporativo
   ========================================================= */

/* Tablets y móviles */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 0;
  }



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

  .navbar__logo {
    height: 40px;
  }

  .navbar__brand-name {
    font-size: 1rem;
  }

  .navbar__brand-tagline {
    font-size: 0.5rem;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Menú desplegable corporativo */
  .navbar__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #1A1028;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 100px 40px 60px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar__links.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .navbar__item {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .navbar__links.is-open .navbar__item {
    opacity: 1;
    transform: translateX(0);
  }

  /* Stagger animation */
  .navbar__links.is-open .navbar__item:nth-child(1) { transition-delay: 0.05s; }
  .navbar__links.is-open .navbar__item:nth-child(2) { transition-delay: 0.10s; }
  .navbar__links.is-open .navbar__item:nth-child(3) { transition-delay: 0.15s; }
  .navbar__links.is-open .navbar__item:nth-child(4) { transition-delay: 0.20s; }

  .navbar__link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 18px 0;
    border-radius: 0;
    text-transform: uppercase;
  }

  .navbar__link::after {
    bottom: 0;
    left: 0;
    transform: none;
    height: 2px;
    background: #B8A9C9;
  }

  .navbar__link:hover {
    color: #ffffff;
    background: transparent;
  }

  .navbar__link:hover::after {
    width: 40px;
  }

  /* CTA dentro del menú móvil */
  .navbar__item-cta {
    border-bottom: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar__links.is-open .navbar__item-cta {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
  }

  .navbar__link-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
    background: var(--color-secondary);
  }

  .navbar__link-cta:hover {
    transform: translateY(-2px);
    background: var(--color-secondary-dark);
  }

  body.no-scroll {
    overflow: hidden;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .navbar__brand-name {
    font-size: 0.85rem;
  }

  .navbar__brand-tagline {
    font-size: 0.45rem;
  }

  .navbar__logo {
    height: 34px;
  }

  .navbar__links {
    max-width: 100%;
    padding: 80px 28px 40px;
  }

  .navbar__link {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .navbar__hamburger {
    width: 24px;
    height: 17px;
  }

  .navbar__hamburger.is-active .navbar__hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

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

/* Tablets medianas */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar__links {
    gap: 4px;
  }

  .navbar__link {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .navbar__link-cta {
    padding: 8px 18px;
    font-size: 0.75rem;
  }
}
/* =========================================================
   HOME / HERO (slider de fotos con overlay morado)
   ========================================================= */
.home {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.06);
}

.home__slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home__slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.home__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 55em;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-primary); /* se ve mientras la foto carga */
}

.home__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--color-primary-rgb), 0.75) 0%,
    rgba(var(--color-primary-rgb), 0.55) 50%,
    rgba(var(--color-primary-rgb), 0.75) 100%
  );
}

.home__grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.home__content {
  max-width: 780px;
  text-align: center;
}

.home__slide .badge {
  background-color: var(--color-secondary);
}

.home__title {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--color-background);
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.home__highlight {
  color: var(--color-secondary);
}

.home__description {
  font-size: 1.25rem;
  color: rgba(249, 251, 254, 0.9);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.home__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.home__actions .btn--secondary:hover {
  background-color: var(--color-background);
  color: var(--color-primary);
}

/* --- Flechas de navegación del slider --- */
.home__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-background);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  backdrop-filter: blur(4px);
}

.home__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.home__arrow--prev { left: 24px; }
.home__arrow--next { right: 24px; }

/* --- Puntos indicadores del slider --- */
.home__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.home__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  padding: 0;
}

.home__dot.is-active {
  background: var(--color-secondary);
}

@media (prefers-reduced-motion: reduce) {
  .home__slider-track {
    transition: none;
  }
}

/* =========================================================
   SERVICIOS (bento de 3 destacados + lista de 6)
   ========================================================= */
.services {
  padding: 80px 0 70px;
  background-image: url(/assets/img/bg-services.jpg);
}

/* --- Bento: 3 tarjetas grandes con foto de fondo --- */
.services__bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
  height: 560px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-primary);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card--large {
  grid-row: 1 / 3;
}

.bento-card:hover {
  transform: scale(1.01);
}

.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(var(--color-primary-rgb), 0.92) 0%,
    rgba(var(--color-primary-rgb), 0.45) 45%,
    rgba(var(--color-primary-rgb), 0.05) 75%
  );
  transition: background 0.4s ease;
}

.bento-card:hover .bento-card__overlay {
  background: linear-gradient(
    0deg,
    rgba(var(--color-primary-rgb), 0.96) 0%,
    rgba(var(--color-primary-rgb), 0.55) 50%,
    rgba(var(--color-primary-rgb), 0.1) 78%
  );
}

.bento-card__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}

.bento-card--large .bento-card__title {
  font-size: 1.9rem;
}

.bento-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-background);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.bento-card__description {
  font-size: 0.92rem;
  color: rgba(249, 251, 254, 0.85);
  max-width: 340px;
  line-height: 1.5;
}

/* --- Lista: 6 tarjetas compactas con miniatura --- */
.services__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.list-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-service);
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.05);
  transition: all 0.3s ease;
}

.list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(var(--color-secondary-rgb), 0.18);
}

.list-card__thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.list-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.list-card__description {
  font-size: 0.82rem;
  color: var(--color-gray-700);
  opacity: 0.8;
  line-height: 1.5;
}

/* =========================================================
   TRAYECTORIA
   ========================================================= */
.about {
  padding: 80px 0 70px;
  background: var(--color-background);
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.05);
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.05);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Collage de fotos con esquina cortada --- */
.about__visual {
  position: relative;
  min-height: 480px;
}

.about__dots {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(var(--color-secondary-rgb), 0.5) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 1;
}

.about__img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 24px 48px -16px rgba(20, 10, 40, 0.35);
}

.about__img--main {
  top: 0;
  right: 0;
  width: 72%;
  height: 360px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%);
}

.about__img--secondary {
  bottom: 0;
  left: 0;
  width: 55%;
  height: 260px;
  z-index: 3;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%, 0 22%);
  border: 4px solid var(--color-white);
}

.about__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about__text {
  font-size: 1.05rem;
  color: var(--color-gray-700);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list__item {
  font-size: 1rem;
  padding: 0.5rem 0;
  color: var(--color-gray-800);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-list__item::before {
  content: "—";
  color: var(--color-secondary);
  font-weight: 300;
  font-size: 1.4rem;
}

/* NOTA: el <div class="about__stats"> en tu HTML está vacío actualmente
   (sin tarjetas de 15+/9/100% adentro). Dejo el contenedor con su
   layout por si decides rellenarlo pronto; si ya no lo vas a usar,
   puedes borrar el <div> del HTML y esta regla también. */
.about__stats {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================================
   CONTACTO (formulario + mapa)
   ========================================================= */
.contact {
  padding: 80px 0;
  background: var(--color-background);
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.05);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact__form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--color-primary-rgb), 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.contact__field-row {
  display: flex;
  gap: 1rem;
}

.contact__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.contact__field input,
.contact__field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(var(--color-primary-rgb), 0.12);
  background: var(--color-background);
  color: var(--color-gray-900);
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.contact__submit {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.contact__map-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact__map {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 70px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(249, 251, 254, 0.10);
}

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

.footer__logo {
  height: 5em;
  width: 15em;
}

.footer__subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.footer__desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.6;
  max-width: 320px;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__list li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 260px;
}

.footer__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-background);
  opacity: 0.45;
  margin-bottom: 4px;
}

.footer__link-plain {
  color: var(--color-background);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__link-plain:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 25px;
}

.footer__copy {
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.5;
}

.footer__credit {
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.5;
}

.footer__agency {
  font-weight: 600;
  color:#E58F18;
  
  text-decoration: none;
}

.footer__agency :hover{
  color:#ecb604;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__brand,
  .footer__desc,
  .footer__list li {
    max-width: none;
  }
}

@media (max-width: 650px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .home__slide {
    min-height: 680px;
  }

  .home__title {
    font-size: 2.8rem;
  }

  .services__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .bento-card {
    height: 280px;
  }

  .bento-card--large {
    grid-row: auto;
    height: 320px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__text {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list {
    display: inline-block;
    text-align: left;
  }

  .about__stats {
    justify-content: center;
  }

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

  .contact__field-row {
    flex-direction: column;
  }

  .contact__map {
    min-height: 320px;
  }
}

@media (max-width: 650px) {
  .navbar__container {
    flex-direction: row;
    
  }

  .navbar__links {
    gap: 20px;
  }

  .home__slide {
    min-height: 560px;
  }

  .home__arrow {
    display: none;
  }

  .home__title {
    font-size: 2.2rem;
  }

  .section__title {
    font-size: 2.2rem;
  }

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

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

  .footer__brand {
    align-items: center;
  }

  .footer__contact {
    align-items: center;
  }
}

@media (max-width: 450px) {
  .home__slide {
    min-height: 480px;
  }

  .home__title {
    font-size: 1.9rem;
  }

  .navbar__links {
    gap: 14px;
    font-size: 0.9rem;
  }
}