/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: #0a0d12;
  color: #fff;
}


/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  backdrop-filter: blur(10px);
}

/* ===== CONTENEDOR ===== */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 6%;              /* 🔽 menos espacio vertical */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.nav-logo {
  display: flex;
  align-items: center;
  height: 60px;                /* altura fija de la navbar */
  overflow: visible;          /* deja sobresalir el logo */
}

.logo-img {
  height: 48px;               /* tamaño base */
  width: auto;

  transform: scale(1.8);      /* 🔥 LOGO GRANDE sin agrandar la barra */
  transform-origin: left center;
}

/* ===== LINKS ===== */
.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* Redes */
.nav-socials {
  display: flex;
  gap: 18px;
}

/* Íconos */
.nav-socials a {
  color: #ffffff;          /* blanco como el logo */
  font-size: 18px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-socials a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
@media (max-width: 768px) {

  .nav-socials {
    margin-left: auto;      /* las empuja a la derecha */
    margin-right: 30px;     /* no tan pegadas al borde */
  }

}


/* ===== MOBILE TOGGLE ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 60px;                 /* alineado con la nueva altura */
    left: 0;
    width: 100%;
    background: #05070c;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}



/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  background: radial-gradient(circle at 20% 20%, #111827, #05070c);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

/* capa para dar profundidad */
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(#ffffff15 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
}

/* ===== CONTENT ===== */
.hero-content {
  position: relative;
  max-width: 720px;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 3px;
  font-size: 12px;
  color: #ffffffaa;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 36px;
  max-width: 560px;
}

/* ===== BUTTON ===== */
.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}





/* ================= PROBLEM / SOLUTION ================= */

.ps-section {
  background: #05070c;
  padding: 140px 8% 120px;
  position: relative;
}

.ps-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* bloques */
.ps-block h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.ps-problem h2 {
  color: #fff;
}

.ps-problem ul {
  list-style: none;
}

.ps-problem li {
  color: #d1d5db;
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

.ps-problem li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ffffff80;
}

/* SOLUCIÓN */
.ps-solution h2 {
  color: #fff;
}

.ps-solution p {
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 420px;
}

/* botón */
.ps-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.ps-btn:hover {
  background: #fff;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ps-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}





/* ================= HOW I WORK ================= */

.work-section {
  background: #0a0d12;
  padding: 140px 8% 120px;
}

.work-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.work-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.work-subtitle {
  color: #d1d5db;
  max-width: 560px;
  margin: 0 auto 80px;
}

/* STEPS GRID */
.work-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.work-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 26px;
  border-radius: 18px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.work-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}

/* NUMBER */
.step-number {
  font-size: 12px;
  letter-spacing: 2px;
  color: #ffffff80;
  display: block;
  margin-bottom: 16px;
}

/* TEXT */
.work-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.work-step p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .work-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .work-steps {
    grid-template-columns: 1fr;
  }

  .work-step {
    text-align: center;
  }
}

/* ================= HOW I WORK – MOBILE SLIDER ================= */


/* ================= HOW I WORK – MOBILE SLIDER ================= */

@media (max-width: 560px) {

  .work-steps {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .work-steps::-webkit-scrollbar {
    display: none;
  }

  .work-step {
    min-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
    text-align: left;
  }
}


/* ================= DIGITAL SOLUTIONS ================= */

.sol-section {
  background: #05070c;
  padding: 140px 8% 120px;
}

.sol-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.sol-title {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.sol-subtitle {
  color: #d1d5db;
  max-width: 620px;
  margin: 0 auto 90px;
  line-height: 1.7;
}

/* GRID */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */
.sol-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 46px 34px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease, background 0.3s ease;
}

.sol-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
}

/* TAG */
.sol-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffffff80;
  margin-bottom: 16px;
}

/* TITLE */
.sol-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* TEXT */
.sol-card p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .sol-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sol-grid {
    grid-template-columns: 1fr;
  }

  .sol-card {
    text-align: center;
  }
}
/* ===== MOBILE HORIZONTAL SCROLL (SOLUCIONES) ===== */
@media (max-width: 600px) {

  .sol-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .sol-grid::-webkit-scrollbar {
    display: none; /* limpio visual */
  }

  .sol-card {
    min-width: 50%;
    flex-shrink: 0;
    scroll-snap-align: center;

  }
}

/* indicador sutil de swipe */
.sol-section::after,
.work-section::after {
  content: "Deslizá →";
  display: none;
  font-size: 12px;
  color: #ffffff80;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .sol-section::after,
  .work-section::after {
    display: block;
    text-align: center;
  }
}

/* ================= FINAL CTA ================= */

.cta-section {
  background: radial-gradient(circle at center, #111827, #05070c);
  padding: 160px 8% 160px;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: auto;
}

.cta-container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-container p {
  color: #d1d5db;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 16px 44px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: #000;
}

.cta-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: #ffffff80;
}







/* ================= PORTFOLIO ================= */

.port-section {
  background: #0a0d12;
  padding: 140px 8% 120px;
}

.port-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.port-title {
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.port-subtitle {
  color: #d1d5db;
  max-width: 560px;
  margin: 0 auto 80px;
}

/* GRID */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}



.port-image {
  background-image: url("donjaimeblanco.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 220px;
}



/* CARD */
.port-card {
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, background .3s ease;
}

.port-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
}

/* IMAGE */
.port-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* INFO */
.port-info {
  padding: 22px 20px 26px;
  text-align: left;
}

.port-info h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.port-info span {
  font-size: 13px;
  color: #ffffff80;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .port-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .port-grid {
    grid-template-columns: 1fr;
  }

  .port-info {
    text-align: center;
  }
}






.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



.glow-text {
  text-shadow: 0 0 12px rgba(255,255,255,0.15);
}

.glow-btn {
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
  transition: all .3s ease;
}

.glow-btn:hover {
  box-shadow: 0 0 35px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}



.hero-bg {
  animation: floatBg 12s ease-in-out infinite;
}

@keyframes floatBg {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}



.card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}


a, button {
  transition: transform .2s ease;
}

a:hover, button:hover {
  transform: scale(1.04);
}
