/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #0d0d0d;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

/* ESTILOS DEL INTRO OVERLAY (CAPAS ORGANICAS SUAVES) */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d0d0d;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.layers-stack {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
}

/* Capas Apiladas con Transición de Opacidad Suave */
.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(10%) contrast(110%);
  transition: opacity 0.35s ease, transform 0.5s ease;
  transform: scale(1.04);
}

/* Revelado de cada capa */
.layer.visible {
  opacity: 1;
  transform: scale(1);
}

/* Máscaras recortadas orgánicas para cada foto */
.layer-1  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.layer-2  { clip-path: polygon(4% 0, 96% 0, 100% 92%, 0 100%); }
.layer-3  { clip-path: polygon(0 4%, 92% 0, 100% 96%, 4% 100%); }
.layer-4  { clip-path: polygon(6% 0, 100% 4%, 94% 100%, 0 96%); }
.layer-5  { clip-path: polygon(0 0, 95% 0, 89% 100%, 3% 100%); }
.layer-6  { clip-path: polygon(2% 2%, 100% 0, 96% 98%, 0 100%); }
.layer-7  { clip-path: polygon(0 0, 92% 6%, 100% 100%, 8% 94%); }
.layer-8  { clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 90%); }
.layer-9  { clip-path: polygon(0 3%, 97% 0, 100% 97%, 2% 100%); }
.layer-10 { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* HUD / Interfaz emergente del Visor */
.intro-hud {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  pointer-events: none;
}

.hud-brand {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #ffffff;
  background: rgba(13, 13, 13, 0.75);
  padding: 6px 14px;
  border-radius: 2px;
}

.hud-brand span {
  color: #ff5500;
}

.hud-counter {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  background: rgba(13, 13, 13, 0.75);
  padding: 6px 14px;
  border-left: 3px solid #ff5500;
  border-radius: 2px;
}

/* ENCABEZADO SUPERIOR LIBRE */
.top-header {
  position: fixed;
  top: 20px;
  left: 5%;
  right: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand span {
  color: #ff5500;
}

/* MENÚ TIPO MAC OS (COMPACTO Y HORIZONTAL) */
.mac-dock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.dock-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 20px;
  color: #cccccc;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dock-btn i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  stroke: #cccccc;
  transition: stroke 0.25s ease;
}

.dock-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cccccc;
}

/* Estado Hover Dock */
.dock-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.dock-btn:hover i,
.dock-btn:hover span {
  stroke: #ffffff;
  color: #ffffff;
}

/* Estado Activo Dock */
.dock-btn.active {
  background: #ff5500;
  border-color: #ff5500;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
}

.dock-btn.active i {
  stroke: #ffffff;
}

.dock-btn.active span {
  color: #ffffff;
}

/* HERO CONTAINER & PORTADA */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('DSC04784.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Degradado tenue para rescatar luz de la foto */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(0deg, #0d0d0d 8%, rgba(13, 13, 13, 0.4) 50%, rgba(13, 13, 13, 0.15) 100%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.1) 70%);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 950px;
  padding: 0 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle {
  font-size: 1.15rem;
  color: #f0f0f0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 auto 28px auto;
  word-wrap: break-word;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

h1 span {
  color: #ff5500;
}

/* BOTÓN OBTURADOR INTERACTIVO */
.btn-shutter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.shutter-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shutter-icon .blade {
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.btn-shutter:hover {
  background: #ff5500;
  border-color: #ff5500;
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(255, 85, 0, 0.5);
  transform: translateY(-3px);
}

.btn-shutter:hover .shutter-icon {
  transform: rotate(120deg) scale(1.15);
}

.btn-shutter:hover .shutter-icon .blade {
  stroke: #ffffff;
}

/* CENTRADO DE CAJAS EN FOOTER */
.footer-tags {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: max-content;
}

.tag-box {
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(18, 18, 18, 0.85);
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 85, 0, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.tag-box:hover {
  border-color: #ff5500;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 5%;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float i {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    top: 15px;
    left: 4%;
    width: 92%;
  }

  .mac-dock-top {
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }

  .dock-btn {
    padding: 0 10px;
    height: 34px;
  }

  .dock-btn span {
    font-size: 0.6rem;
  }

  .footer-tags {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 0 6% 30px 6%;
    background: #0d0d0d;
  }

  .whatsapp-float {
    bottom: 18px;



    /* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  background-color: #0d0d0d;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}

/* ESTILOS DEL INTRO OVERLAY (CAPAS ORGANICAS SUAVES) */
#intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d0d0d;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.layers-stack {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
}

/* Capas Apiladas con Transición de Opacidad Suave */
.layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(10%) contrast(110%);
  transition: opacity 0.35s ease, transform 0.5s ease;
  transform: scale(1.04);
}

/* Revelado de cada capa */
.layer.visible {
  opacity: 1;
  transform: scale(1);
}

/* Máscaras recortadas orgánicas para cada foto */
.layer-1  { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.layer-2  { clip-path: polygon(4% 0, 96% 0, 100% 92%, 0 100%); }
.layer-3  { clip-path: polygon(0 4%, 92% 0, 100% 96%, 4% 100%); }
.layer-4  { clip-path: polygon(6% 0, 100% 4%, 94% 100%, 0 96%); }
.layer-5  { clip-path: polygon(0 0, 95% 0, 89% 100%, 3% 100%); }
.layer-6  { clip-path: polygon(2% 2%, 100% 0, 96% 98%, 0 100%); }
.layer-7  { clip-path: polygon(0 0, 92% 6%, 100% 100%, 8% 94%); }
.layer-8  { clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 90%); }
.layer-9  { clip-path: polygon(0 3%, 97% 0, 100% 97%, 2% 100%); }
.layer-10 { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }

/* HUD / Interfaz emergente del Visor */
.intro-hud {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  pointer-events: none;
}

.hud-brand {
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #ffffff;
  background: rgba(13, 13, 13, 0.75);
  padding: 6px 14px;
  border-radius: 2px;
}

.hud-brand span {
  color: #ff5500;
}

.hud-counter {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  background: rgba(13, 13, 13, 0.75);
  padding: 6px 14px;
  border-left: 3px solid #ff5500;
  border-radius: 2px;
}

/* ENCABEZADO SUPERIOR LIBRE */
.top-header {
  position: fixed;
  top: 20px;
  left: 5%;
  right: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand span {
  color: #ff5500;
}

/* MENÚ TIPO MAC OS (COMPACTO Y HORIZONTAL) */
.mac-dock-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.dock-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 20px;
  color: #cccccc;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dock-btn i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
  stroke: #cccccc;
  transition: stroke 0.25s ease;
}

.dock-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #cccccc;
}

/* Estado Hover Dock */
.dock-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.dock-btn:hover i,
.dock-btn:hover span {
  stroke: #ffffff;
  color: #ffffff;
}

/* Estado Activo Dock */
.dock-btn.active {
  background: #ff5500;
  border-color: #ff5500;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
}

.dock-btn.active i {
  stroke: #ffffff;
}

.dock-btn.active span {
  color: #ffffff;
}

/* HERO CONTAINER & PORTADA */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('DSC04784.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Degradado tenue para rescatar luz de la foto */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(0deg, #0d0d0d 8%, rgba(13, 13, 13, 0.4) 50%, rgba(13, 13, 13, 0.15) 100%),
    linear-gradient(90deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.1) 70%);
}

.content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 950px;
  padding: 0 5%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle {
  font-size: 1.15rem;
  color: #f0f0f0;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 auto 28px auto;
  word-wrap: break-word;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

h1 span {
  color: #ff5500;
}

/* BOTÓN OBTURADOR INTERACTIVO */
.btn-shutter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: rgba(13, 13, 13, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.shutter-icon {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shutter-icon .blade {
  transition: transform 0.4s ease, opacity 0.3s ease;
  transform-origin: center;
}

.btn-shutter:hover {
  background: #ff5500;
  border-color: #ff5500;
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(255, 85, 0, 0.5);
  transform: translateY(-3px);
}

.btn-shutter:hover .shutter-icon {
  transform: rotate(120deg) scale(1.15);
}

.btn-shutter:hover .shutter-icon .blade {
  stroke: #ffffff;
}

/* SECCIÓN PORTAFOLIO EN FONDO BLANCO PURO */
.portfolio-section {
  background-color: #ffffff;
  color: #111111;
  padding: 90px 5% 120px 5%;
  min-height: 100vh;
}

/* FILTROS DE CATEGORÍA (PILLS) */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #f4f4f4;
  border: 1px solid #e0e0e0;
  color: #555555;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.filter-btn.active {
  border-bottom: 3px solid #ff5500;
}

/* RETÍCULA DE 3 COLUMNAS */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

/* TARJETA DE PROYECTO */
.portfolio-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f0f0f0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .card-image img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(17, 17, 17, 0.85);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* INFORMACIÓN / MICRO-TEXTO (MÁXIMO 3 LÍNEAS) */
.card-info {
  padding: 22px 20px 24px 20px;
}

.card-info h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

.card-info p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #666666;
  margin: 0;
  
  /* Restringir estrictamente a 3 líneas de texto */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CENTRADO DE CAJAS EN FOOTER */
.footer-tags {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: max-content;
}

.tag-box {
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(18, 18, 18, 0.85);
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255, 85, 0, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}

.tag-box:hover {
  border-color: #ff5500;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 5%;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float i {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ADAPTACIÓN MÓVIL Y TABLETS */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    top: 15px;
    left: 4%;
    width: 92%;
  }

  .mac-dock-top {
    width: 100%;
    justify-content: space-between;
    padding: 6px;
  }

  .dock-btn {
    padding: 0 10px;
    height: 34px;
  }

  .dock-btn span {
    font-size: 0.6rem;
  }

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

  .footer-tags {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    padding: 0 6% 30px 6%;
    background: #0d0d0d;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 4%;
    width: 44px;
    height: 44px;
  }
}
    right: 4%;
    width: 44px;
    height: 44px;
  }
}



