@charset "UTF-8";
/* ==========================================================================
   VARIABLES / TOKENS - BRICKELL LAB (V2 - Hindu Palette)
   ========================================================================== */
/* ==========================================================================
   FONT-FACE DECLARATIONS - BRICKELL LAB
   ========================================================================== */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-v20-latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-300italic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-v38-latin-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* ==========================================================================
   RESET & GLOBAL WRAPPER - BRICKELL LAB
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: #0A0D0A;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.1;
}

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

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

ul {
  list-style: none;
}

/* --- LOGICA DE CONTENT WRAPPER --- */
.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wrapper-narrow {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   1. ESTRUCTURA BASE (HEADER & WRAPPER)
   ========================================================================== */
.main-header {
  height: 60px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.main-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.main-header__wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header__logo {
  height: 25px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}
.main-header__logo:hover {
  opacity: 0.8;
}
.main-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 25px;
}

/* ==========================================================================
   2. NAV ESCRITORIO (Desktop Only)
   ========================================================================== */
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.main-nav__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: #0A0D0A;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.main-nav__link:hover {
  color: #6d6c6c;
}

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.socials__icon {
  width: 22px;
  height: 22px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.socials__icon:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   3. OFF CANVAS (Full Width - Estilo Instagram con Iconos Propios)
   ========================================================================== */
.off-canvas {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #FFFFFF;
  z-index: 999;
  padding: 4rem 2rem;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.off-canvas.is-open {
  right: 0;
}
.off-canvas__nav {
  flex: none;
}
.off-canvas__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.off-canvas__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.off-canvas__item:nth-child(1) .off-canvas__link::before {
  background-image: url("../../assets/static/img/servicios.png");
}
.off-canvas__item:nth-child(2) .off-canvas__link::before {
  background-image: url("../../assets/static/img/proyectos.png");
}
.off-canvas__item:nth-child(3) .off-canvas__link::before {
  background-image: url("../../assets/static/img/nosotros.png");
}
.off-canvas__item:nth-child(4) .off-canvas__link::before {
  background-image: url("../../assets/static/img/correo.png");
}
.off-canvas__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #0A0D0A;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.off-canvas__link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  filter: grayscale(1);
}
.off-canvas__sub {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: rgba(242, 242, 242, 0.4);
}
.off-canvas__sub.is-visible {
  max-height: 500px;
  padding: 10px 0 15px 35px;
}
.off-canvas__sub li a {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  padding: 12px 0;
  color: #222621;
  display: block;
  text-transform: uppercase;
}
.off-canvas__sub li a:active {
  color: #A62D85;
}
.off-canvas__footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-shrink: 0;
}
.off-canvas__footer .socials__icon {
  width: 30px;
  height: 30px;
}
.off-canvas__overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 13, 10, 0.1);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 998;
}
.off-canvas__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   4. RESPONSIVE (Hamburguesa & Control de Pantalla)
   ========================================================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 25px;
  height: 25px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1100;
}
.menu-toggle__bar {
  width: 100%;
  height: 2px;
  background-color: #0A0D0A;
  transition: all 0.3s ease;
  display: block;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #D95555;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #D95555;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-height: 500px) and (max-width: 1024px) {
  .off-canvas {
    padding-top: 2rem;
  }
  .off-canvas__link {
    padding: 15px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .off-canvas {
    width: 400px;
    right: -400px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }
}
body.no-scroll {
  overflow: hidden;
}

.srv-wrap {
  scroll-margin-top: 60px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #0A0D0A;
  color: #fff;
}
.footer__top {
  padding: 2.5rem 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo-link {
  display: inline-flex;
}
.footer__logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer__logo:hover {
  opacity: 1;
}
.footer__nav {
  display: flex;
  gap: 2rem;
}
.footer__nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.1);
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  display: block;
}
.footer__social-link:hover {
  opacity: 1;
}
.footer__bottom {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }
  .footer__divider {
    display: none;
  }
  .footer__nav {
    order: 3;
    grid-column: 1/-1;
    gap: 1.5rem;
  }
  .footer__socials {
    justify-content: flex-end;
  }
}
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer__socials {
    justify-content: flex-start;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .footer__legal {
    gap: 1rem;
  }
}
/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  height: calc(100vh - 60px);
  min-height: 520px;
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: 100%;
  align-items: stretch;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2;
  padding: 3rem 0;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__eyebrow::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #A62D85;
  flex-shrink: 0;
  animation: expandLine 0.6s 0.5s ease forwards;
}
.hero__h1 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1;
  color: #0A0D0A;
  letter-spacing: -0.2px;
  padding-top: 0.12em;
}
.hero__h1-line {
  display: block;
  overflow: visible;
  clip-path: inset(-20% 0 -20% 0);
  padding-bottom: 0.1em;
}
.hero__h1-line > span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  animation: revealLine 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__h1-line:nth-child(1) > span {
  animation-delay: 0.25s;
}
.hero__h1-line:nth-child(2) > span {
  animation-delay: 0.38s;
}
.hero__h1-line:nth-child(3) > span {
  animation-delay: 0.51s;
}
.hero__h1--italic {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.18em;
  color: #A62D85;
  letter-spacing: -1px;
}
.hero__p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.75;
  color: #222621;
  max-width: 400px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid #0A0D0A;
  color: #0A0D0A;
  background: transparent;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.hero__tag:hover {
  background-color: #0A0D0A;
  color: #FFFFFF;
}
.hero__stats {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  animation: heroFadeUp 0.7s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero__stat-num {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0A0D0A;
  letter-spacing: -1px;
  line-height: 1;
}
.hero__stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
}
.hero__right {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 2;
}
.hero__burst {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 85%;
  height: 85%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(32px);
  opacity: 0;
  background: radial-gradient(ellipse 70% 65% at 48% 52%, rgba(217, 89, 149, 0.7) 0%, transparent 60%), radial-gradient(ellipse 55% 60% at 62% 38%, rgba(166, 45, 133, 0.58) 0%, transparent 55%), radial-gradient(ellipse 50% 45% at 35% 65%, rgba(5, 166, 166, 0.52) 0%, transparent 50%), radial-gradient(ellipse 40% 38% at 55% 70%, rgba(242, 160, 61, 0.48) 0%, transparent 48%);
  animation: burstAppear 1.2s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards, burstPulse 8s 1.6s ease-in-out infinite;
}
.hero__img-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 3rem 0;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__img-inner {
  height: 100%;
  width: auto;
  max-width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img {
  height: 100%;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0;
  animation: heroFadeUp 0.6s 1.2s ease forwards;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #A62D85, transparent);
  animation: scrollPulse 2s 1.8s ease-in-out infinite;
}
.hero__scroll-label {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes revealLine {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 24px;
  }
}
@keyframes burstAppear {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes burstPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.07);
    opacity: 0.82;
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes mobileFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 25px) scale(1.05);
  }
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero__h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    letter-spacing: -1.5px;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: 300px;
  }
  .hero__left {
    gap: 0.75rem;
    padding: 1.2rem 0;
  }
  .hero__h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    letter-spacing: -1px;
  }
  .hero__p {
    font-size: 0.75rem;
  }
  .hero__tags, .hero__stats, .hero__scroll {
    display: none;
  }
  .hero__img-wrap {
    padding: 1rem 0;
  }
  .hero__burst {
    filter: blur(22px);
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .hero {
    height: calc(100vh - 60px);
    min-height: 600px;
    align-items: center;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -15%;
    width: 90vw;
    height: 90vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    opacity: 0;
    background: radial-gradient(ellipse 70% 65% at 60% 40%, rgba(217, 89, 149, 0.6) 0%, transparent 60%), radial-gradient(ellipse 55% 55% at 75% 60%, rgba(166, 45, 133, 0.5) 0%, transparent 55%), radial-gradient(ellipse 50% 50% at 40% 70%, rgba(5, 166, 166, 0.42) 0%, transparent 50%), radial-gradient(ellipse 40% 40% at 65% 25%, rgba(242, 160, 61, 0.4) 0%, transparent 48%);
    animation: burstAppear 1.4s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards, mobileFloat 10s 1.6s ease-in-out infinite;
  }
  .hero__wrapper {
    grid-template-columns: 1fr;
    height: auto;
    align-items: start;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 2;
  }
  .hero__right {
    display: none;
  }
  .hero__left {
    padding: 0;
    gap: 1.8rem;
    justify-content: flex-start;
  }
  .hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
  }
  .hero__h1 {
    font-size: clamp(3rem, 13vw, 4.2rem);
    letter-spacing: -2.5px;
    line-height: 0.95;
  }
  .hero__p {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .hero__stats {
    gap: 2.5rem;
    padding-top: 1.2rem;
  }
  .hero__stat-num {
    font-size: 1.5rem;
  }
  .hero__scroll {
    display: none;
  }
}
/* ==========================================================================
   MIXIN — scrollbar moderno con color de acento
   Soporta ::-webkit-scrollbar (Chrome/Safari/Edge) y scrollbar-color (Firefox)
   $color: CSS custom property o valor directo
   ========================================================================== */
/* ==========================================================================
   SECCIÓN — 100vh con aire
   ========================================================================== */
.srv {
  height: calc(100vh - 65px);
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  overflow: hidden;
  scroll-margin-top: 65px;
}

.srv__wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  height: 88%;
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

/* ==========================================================================
   SIDEBAR IZQUIERDA
   ========================================================================== */
.srv-sidebar {
  border-right: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: #FFFFFF;
  scrollbar-width: thin;
  scrollbar-color: var(--sidebar-scroll-color, #D95555) transparent;
}
.srv-sidebar::-webkit-scrollbar {
  width: 3px;
}
.srv-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.srv-sidebar::-webkit-scrollbar-thumb {
  background-color: var(--sidebar-scroll-color, #D95555);
  border-radius: 3px;
}

.srv-sidebar__head {
  padding: 1.8rem 1.6rem 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

.srv-sidebar__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.6rem;
}
.srv-sidebar__eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #A62D85;
}

.srv-sidebar__title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: #0A0D0A;
  letter-spacing: 0.2px;
  line-height: 1.05;
}
.srv-sidebar__title strong {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.2px;
  display: block;
}

/* ── Botones de categoría ── */
.srv-cat-btn {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-left: 3px solid transparent;
  transition: border-color 0.25s ease;
}
.srv-cat-btn:last-child {
  border-bottom: none;
}
.srv-cat-btn.active {
  border-left-color: var(--cat-color, #D95555);
}
.srv-cat-btn__hd {
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: background-color 0.15s ease;
}
.srv-cat-btn:hover .srv-cat-btn__hd, .srv-cat-btn.active .srv-cat-btn__hd {
  background-color: #F2F2F2;
}
.srv-cat-btn__icon {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.srv-cat-btn:hover .srv-cat-btn__icon, .srv-cat-btn.active .srv-cat-btn__icon {
  opacity: 1;
}
.srv-cat-btn__info {
  flex: 1;
}
.srv-cat-btn__name {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0A0D0A;
  transition: color 0.2s ease;
}
.srv-cat-btn.active .srv-cat-btn__name {
  color: var(--cat-color, #D95555);
}
.srv-cat-btn__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  color: #666;
  margin-top: 2px;
  line-height: 1.3;
}
.srv-cat-btn__items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #F2F2F2;
}
.srv-cat-btn.active .srv-cat-btn__items {
  max-height: 300px;
}
.srv-cat-btn.cat--web {
  --cat-color: #D95555;
}
.srv-cat-btn.cat--ux {
  --cat-color: #D95995;
}
.srv-cat-btn.cat--pack {
  --cat-color: #F2A03D;
}
.srv-cat-btn.cat--brand {
  --cat-color: #05A6A6;
}

/* ── Sub-servicios ── */
.srv-sub {
  padding: 0.75rem 1.6rem 0.75rem 2.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: background-color 0.15s ease;
}
.srv-sub:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.srv-sub.active {
  background-color: #0A0D0A;
}
.srv-sub.active .srv-sub__name {
  color: #fff;
}
.srv-sub.active .srv-sub__price {
  color: rgba(255, 255, 255, 0.45);
}
.srv-sub__name {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0A0D0A;
  flex: 1;
}
.srv-sub__price {
  font-family: "Inter", sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--cat-color, #D95555);
  white-space: nowrap;
}

/* ==========================================================================
   PANEL DERECHO
   ========================================================================== */
.srv-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
}

.srv-panel__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0.1;
}
.srv-panel__empty svg {
  width: 36px;
  height: 36px;
}
.srv-panel__empty p {
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A0D0A;
}

/* ── Panels de detalle ── */
.srv-det {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: srvPanelIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-det.active {
  display: flex;
}
.srv-det__stripe {
  height: 40px;
  opacity: 0.1;
  flex-shrink: 0;
  background-color: var(--ac, #D95555);
}
.srv-det__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--ac, #D95555) transparent;
}
.srv-det__body::-webkit-scrollbar {
  width: 3px;
}
.srv-det__body::-webkit-scrollbar-track {
  background: transparent;
}
.srv-det__body::-webkit-scrollbar-thumb {
  background-color: var(--ac, #D95555);
  border-radius: 3px;
}
.srv-det__cat {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ac, #D95555);
}
.srv-det__name {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  color: #0A0D0A;
  line-height: 1.1;
}
.srv-det__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  line-height: 1.75;
  color: #666;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding-bottom: 1rem;
}
.srv-det__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.srv-det__footer {
  flex-shrink: 0;
  padding: 1rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  background-color: #FFFFFF;
}

#d-landing, #d-business {
  --ac: #D95555;
}

#d-audit {
  --ac: #D95995;
}

#d-etiqueta, #d-box, #d-linea {
  --ac: #F2A03D;
}

#d-essential, #d-plus, #d-kit {
  --ac: #05A6A6;
}

/* ── Cards incluye / no incluye ── */
.det-card {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.det-card--yes {
  background-color: color-mix(in srgb, var(--ac, #D95555) 7%, white);
  border: 1px solid color-mix(in srgb, var(--ac, #D95555) 20%, transparent);
  border-top: 3px solid var(--ac, #D95555);
}
.det-card--no {
  background-color: #F2F2F2;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid #ddd;
}
.det-card__hd {
  display: flex;
  align-items: center;
  gap: 6px;
}
.det-card__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.det-card__icon svg {
  width: 10px;
  height: 10px;
}
.det-card--yes .det-card__icon {
  background-color: color-mix(in srgb, var(--ac, #D95555) 14%, white);
}
.det-card--yes .det-card__icon svg {
  color: var(--ac, #D95555);
}
.det-card--no .det-card__icon {
  background-color: #e5e5e5;
}
.det-card--no .det-card__icon svg {
  color: #aaa;
}
.det-card__title {
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.det-card--yes .det-card__title {
  color: var(--ac, #D95555);
}
.det-card--no .det-card__title {
  color: #999;
}

.det-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.det-list li {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.det-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
}
.det-list--y li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--ac, #D95555);
  margin-top: 5px;
}
.det-list--n li::before {
  width: 6px;
  height: 1px;
  background-color: #ccc;
  margin-top: 8px;
}

/* ── Tipografía del footer ── */
.det-price-label {
  font-family: "Inter", sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 2px;
}

.det-price {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #0A0D0A;
  letter-spacing: -0.5px;
  line-height: 1;
}
.det-price--sm {
  font-size: 0.8rem;
}

.det-price-note {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  color: #bbb;
  margin-top: 2px;
}

.det-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: var(--ac, #D95555);
  color: #fff;
  padding: 10px 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.det-cta svg {
  width: 11px;
  height: 11px;
}
.det-cta:hover {
  filter: brightness(1.1);
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes srvPanelIn {
  from {
    opacity: 0;
    transform: translateX(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ==========================================================================
   RESPONSIVE
   Desktop (> 768px landscape): intacto — no se toca
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .srv__wrap {
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 768px) {
  .srv {
    display: none !important;
  }
  .srv-mobile {
    display: block !important;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  .srv {
    display: none !important;
  }
  .srv-mobile {
    display: block !important;
  }
}
.srv-mobile {
  display: none;
  background-color: #FFFFFF;
}
.srv-mobile__wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}
.srv-mobile__head {
  margin-bottom: 1.8rem;
}
.srv-mobile__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
}
.srv-mobile__eyebrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background-color: #A62D85;
}
.srv-mobile__title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  color: #0A0D0A;
  letter-spacing: 0.2px;
  line-height: 1.05;
}
.srv-mobile__title strong {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1px;
}
.srv-mobile__tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 0;
  gap: 0;
}
.srv-mobile__tabs::-webkit-scrollbar {
  display: none;
}
.srv-mobile__tab {
  flex-shrink: 0;
  padding: 0.8rem 0.9rem;
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.srv-mobile__tab img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.srv-mobile__tab[data-mob-tab=web].active {
  color: #D95555;
  border-bottom-color: #D95555;
}
.srv-mobile__tab[data-mob-tab=ux].active {
  color: #D95995;
  border-bottom-color: #D95995;
}
.srv-mobile__tab[data-mob-tab=pack].active {
  color: #F2A03D;
  border-bottom-color: #F2A03D;
}
.srv-mobile__tab[data-mob-tab=brand].active {
  color: #05A6A6;
  border-bottom-color: #05A6A6;
}
.srv-mobile__tab.active img {
  opacity: 1;
}
.srv-mobile__panel {
  display: none;
}
.srv-mobile__panel.active {
  display: block;
}
.srv-mobile__intro {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  line-height: 1.65;
  color: #666;
  padding: 1.2rem 0 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 0.2rem;
}

.mob-srv {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.mob-srv:last-child {
  border-bottom: none;
}
.mob-panel--web .mob-srv {
  --mob-ac: #D95555;
}
.mob-panel--ux .mob-srv {
  --mob-ac: #D95995;
}
.mob-panel--pack .mob-srv {
  --mob-ac: #F2A03D;
}
.mob-panel--brand .mob-srv {
  --mob-ac: #05A6A6;
}
.mob-srv__hd {
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.mob-srv__name {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0A0D0A;
  margin-bottom: 2px;
}
.mob-srv__price {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--mob-ac, #D95555);
}
.mob-srv__tog {
  font-size: 1.1rem;
  color: #ccc;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.mob-srv.open .mob-srv__tog {
  transform: rotate(45deg);
  color: var(--mob-ac, #D95555);
}
.mob-srv__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-srv.open .mob-srv__body {
  max-height: 900px;
}
.mob-srv__content {
  padding: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 0.8rem;
}
.mob-srv__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  line-height: 1.7;
  color: #666;
}
.mob-srv__cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mob-srv__card {
  padding: 0.9rem 1rem;
  border-left: 2px solid transparent;
}
.mob-srv__card--yes {
  background-color: color-mix(in srgb, var(--mob-ac, #D95555) 6%, white);
  border-left-color: var(--mob-ac, #D95555);
}
.mob-srv__card--no {
  background-color: #F2F2F2;
  border-left-color: #ddd;
}
.mob-srv__card-title {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.mob-srv__card--yes .mob-srv__card-title {
  color: var(--mob-ac, #D95555);
}
.mob-srv__card--no .mob-srv__card-title {
  color: #aaa;
}
.mob-srv__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mob-srv__list li {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  line-height: 1.45;
  color: #666;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.mob-srv__list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
}
.mob-srv__list--y li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mob-ac, #D95555);
  margin-top: 5px;
}
.mob-srv__list--n li::before {
  width: 6px;
  height: 1px;
  background: #ccc;
  margin-top: 8px;
}
.mob-srv__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.mob-srv__price-label {
  font-family: "Inter", sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 2px;
}
.mob-srv__price-val {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #0A0D0A;
  letter-spacing: -0.5px;
  line-height: 1;
}
.mob-srv__price-val--sm {
  font-size: 0.78rem;
}
.mob-srv__price-note {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  color: #bbb;
  margin-top: 2px;
}
.mob-srv__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--mob-ac, #D95555);
  color: #fff;
  padding: 9px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.2s;
}
.mob-srv__cta svg {
  width: 11px;
  height: 11px;
}
.mob-srv__cta:hover {
  filter: brightness(1.1);
}

/* ==========================================================================
   PROYECTOS — 100vh
   ========================================================================== */
.proyectos {
  height: calc(100vh - 60px);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FFFFFF;
  scroll-margin-top: 60px;
}

.proy-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
}

/* ── Header ── */
.proy-header {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 1.8rem;
}

.proy-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
}
.proy-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #D95555;
}

.proy-title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: #0A0D0A;
  letter-spacing: 0.2px;
  line-height: 1.05;
}
.proy-title strong {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.proy-counter {
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  flex-shrink: 0;
}

/* ── Grid — ocupa todo el espacio entre header y marquee ── */
.proy-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   PROJECT CARD
   ========================================================================== */
.proy-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.6rem;
  min-height: 0;
}
.proy-card__img-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background-color: #F2F2F2;
}
.proy-card__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #D95555;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.proy-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transform: scale(1.02);
  transition: filter 0.9s cubic-bezier(0.19, 1, 0.22, 1), transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}
.proy-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 13, 10, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  z-index: 1;
}
.proy-card__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
  letter-spacing: -2px;
}
.proy-card__tag {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  background-color: #FFFFFF;
  padding: 5px 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translateY(200%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}
.proy-card__tag span {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0A0D0A;
}
.proy-card__tag svg {
  width: 9px;
  height: 9px;
  stroke: #0A0D0A;
}
.proy-card__footer {
  flex-shrink: 0;
}
.proy-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.2rem;
}
.proy-card__title {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: #0A0D0A;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.proy-card__type {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
  flex-shrink: 0;
}
.proy-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  line-height: 1.4;
  color: #666;
}
.proy-card:hover .proy-card__img {
  filter: grayscale(0%);
  transform: scale(1.06);
}
.proy-card:hover .proy-card__overlay {
  opacity: 1;
}
.proy-card:hover .proy-card__tag {
  transform: translateY(0);
}
.proy-card:hover .proy-card__img-wrap::before {
  transform: scaleX(1);
}
.proy-card:hover .proy-card__title {
  color: #D95555;
}

/* ==========================================================================
   MARQUEE — logos en loop infinito, ancho completo
   ========================================================================== */
.marquee-wrap {
  flex-shrink: 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: -moz-max-content;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-logo {
  height: 28px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.3s ease;
}
.marquee-track:hover .marquee-logo {
  opacity: 0.6;
}

/* ==========================================================================
   KEYFRAMES
   ========================================================================== */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .proy-grid {
    gap: 1rem;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .proyectos {
    height: auto;
    min-height: calc(100vh - 60px);
    overflow: visible;
  }
  .proy-wrap {
    height: auto;
    padding-top: 2rem;
    padding-bottom: 0;
  }
  .proy-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
  }
  .proy-grid {
    flex: none;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .proy-card__img-wrap {
    flex: none;
    aspect-ratio: 1/1;
  }
  .marquee-logo {
    height: 22px;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  .proyectos {
    height: auto;
    overflow: visible;
  }
  .proy-wrap {
    height: auto;
    padding-top: 1.5rem;
  }
  .proy-grid {
    flex: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
  .proy-card__img-wrap {
    flex: none;
    aspect-ratio: 1/1;
  }
}
/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contacto {
  padding: 7rem 0 5rem;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  scroll-margin-top: 60px;
}
.contacto__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contacto__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1rem;
}
.contacto__eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #A62D85;
}
.contacto__title {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #0A0D0A;
  letter-spacing: 0.2px;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.contacto__title strong {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.2px;
  display: block;
}
.contacto__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  line-height: 1.75;
  color: #666;
  max-width: 380px;
}
.contacto__right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* ==========================================================================
   CONTACT ITEM
   ========================================================================== */
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--item-color, #A62D85);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-item:hover {
  border-color: var(--item-color, #A62D85);
  background-color: color-mix(in srgb, var(--item-color, #A62D85) 4%, white);
}
.contact-item:hover::before {
  transform: scaleY(1);
}
.contact-item:hover .contact-item__icon {
  background-color: color-mix(in srgb, var(--item-color, #A62D85) 12%, white);
}
.contact-item:hover .contact-item__icon svg {
  color: var(--item-color, #A62D85);
}
.contact-item:hover .contact-item__value {
  color: var(--item-color, #A62D85);
}
.contact-item:hover .contact-item__arr {
  transform: translate(3px, -3px);
  color: var(--item-color, #A62D85);
}
.contact-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}
.contact-item__icon svg {
  width: 18px;
  height: 18px;
  color: #222621;
  transition: color 0.25s ease;
}
.contact-item__info {
  flex: 1;
}
.contact-item__label {
  font-family: "Inter", sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  display: block;
  margin-bottom: 2px;
}
.contact-item__value {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0A0D0A;
  transition: color 0.25s ease;
}
.contact-item__arr {
  font-size: 0.8rem;
  color: #ccc;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.25s ease;
}
.contact-item--wa {
  --item-color: #25D366;
}
.contact-item--mail {
  --item-color: #A62D85;
}
.contact-item--ig {
  --item-color: #D95995;
}
.contact-item--li {
  --item-color: #0A66C2;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .contacto {
    padding: 4rem 0;
  }
  .contacto__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contacto__sub {
    max-width: 100%;
  }
}
@media (max-height: 520px) and (orientation: landscape) {
  .contacto {
    padding: 3rem 0;
  }
  .contacto__title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}/*# sourceMappingURL=main.css.map */