/* =============================
   RESET GENERAL
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(180deg, #0c0c0f, #1a1a1f);
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* =============================
   NAVBAR
============================= */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(0,0,0,0.35);
  z-index: 999;
}

.nav .logo {
  font-size: 22px;
  font-weight: 700;
}

.nav-links a {
  margin-left: 30px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0px 0px 4px rgba(255,255,255,0.4);
}

/* =============================
   SECCIÓN SOBRE AIRSWIP
============================= */
.about-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: transparent; /* libre sobre gradiente */
}

.about-container {
  max-width: 900px;
  text-align: center;
}

.about-container h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-container p {
  font-size: 18px;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 40px;
}

.report h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 600;
}

.report ul {
  text-align: left;
  list-style-type: disc;
  margin-left: 20px;
}

.report li {
  margin-bottom: 10px;
  font-size: 16px;
  opacity: 0.75;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  opacity: .5;
  font-size: 14px;
  margin-top: 60px;
}

.about-image {
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.4);
  
  /* Animación al cargar */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: imageFadeIn 1s ease forwards;
  animation-delay: 0.3s; /* retrasa un poquito */
  
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover premium */
.about-image:hover {
  transform: scale(1.05) translateY(0);
  box-shadow: 0px 16px 48px rgba(0,0,0,0.5);
}

/* Keyframes fade-in */
@keyframes imageFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* =============================
   RESPONSIVE
============================= */
@media (max-width: 820px) {
  .nav {
    padding: 14px 22px;
  }
  .nav .logo {
    font-size: 18px;
  }
  .nav-links a {
    margin-left: 18px;
    font-size: 14px;
  }

  .about-section {
    padding: 80px 20px;
  }

  .about-container h1 {
    font-size: 32px;
  }

  .about-container p {
    font-size: 16px;
  }

  .report h2 {
    font-size: 22px;
  }

  .report li {
    font-size: 14px;
  }

  .footer {
    font-size: 12px;
    padding: 20px;
  }
}

@media (max-width: 400px) {
  .about-container h1 {
    font-size: 28px;
  }

  .about-container p {
    font-size: 14px;
  }

  .report h2 {
    font-size: 20px;
  }

  .report li {
    font-size: 12px;
  }
}

/* =============================
   CREATOR PAGE GRID
============================= */

.creators-section {
  padding: 40px 20px 100px 20px;
  display: flex;
  justify-content: center;
}

.creators-grid {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.creator-box {
  padding: 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: 0.35s ease;
}

.creator-box:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}

.creator-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.creator-box p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .creator-box {
    padding: 24px;
  }
  .creator-box h3 {
    font-size: 20px;
  }
  .creator-box p {
    font-size: 14px;
  }
  .btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}

.btn {
  margin-top: 35px;
  padding: 14px 36px;
  border-radius: 40px;
  border: 0.1px solid #eeebeb;
  font-size: 18px;
  background: transparent;
  backdrop-filter: blur(20px);
  color: #fff;
  cursor: pointer;
  transition: .32s ease;
  margin-bottom: 35px;
}

.btn:hover {
  background: rgba(255,255,255,0.25);
}

/* =============================
   MODALES
============================= */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,0.55);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn .25s ease;
}

.modal-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 22px;
  max-width: 520px;
  width: 90%;
  animation: popIn .25s ease;
}

.modal-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #d4d4d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content p {
  opacity: 0.85;
  line-height: 1.6;
  font-size: 16px;
}

.close {
  float: right;
  font-size: 30px;
  cursor: pointer;
  margin-top: -10px;
  margin-right: -5px;
  opacity: .8;
  transition: .3s;
}

.close:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popIn {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* BLUR global cuando modal está activo */
.blur-active *:not(.modal):not(.modal *) {
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
}

/* --- MOCKUP HERO FULL WIDTH --- */

.mockup-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #0e0e0e;
  position: relative;
}

.mockup-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Título arriba (si querés mantenerlo) */
.mockup-title {
  margin-top: 100px; 
  margin-bottom: 50px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Imagen estilo banner */
.mockup-image-wrapper {
  width: 100%;
  height: 90vh; /* CAMBIAR si lo querés más alto o más bajo */
  max-height: 700px;
  overflow: hidden;
  position: relative;
  border-radius: 0; /* full banner sin bordes */
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* hover */
.mockup-image-wrapper:hover {
  transform: scale(1.01);
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* hace que la imagen llene todo el espacio */
  display: block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* efecto sutil en hover */
.mockup-image-wrapper:hover .mockup-image {
  opacity: 0.92;
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mockup-image-wrapper {
    height: 45vh;
  }

  .mockup-title {
    font-size: 1.8rem;
    margin-top: 75px;
  }
}

