
/* 🔹 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif; /* Ya lo tienes, solo para contexto */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000000; /* Un gris muy claro, casi blanco */
  /* Opcional: Para un look aún más cálido/suave */
  /* background-color: #fcfcfc; */
  /* background-color: #f0f2f5; */ /* Un gris azulado muy sutil */
}





/* 🔹 Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(10, 25, 30, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fd5555;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Links desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

/* Botón */
.btn {
  background: linear-gradient(90deg, #f75555, #f75555);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

/* 🔹 Hamburguesa (solo visible en móviles) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 200px;
    padding: 20px;
    gap: 15px;
    transition: right 0.3s ease-in-out;
  }

  .nav-links.show {
    right: 20px;
  }

  .hamburger {
    display: block;
    color: white;
  }
}
#work {
  padding: 50px;
  text-align: center;
  background: #000000;  /* fondo oscuro */
  color: white;
}

#work .gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilos para el contenedor de la galería */
.gallery {
  display: flex; /* Hacemos que los elementos se organicen en fila */
  flex-wrap: wrap; /* Permitimos que los elementos salten de línea si no caben */
  justify-content: center; /* Centra las imágenes horizontalmente */
  gap: 20px; /* Espacio entre las imágenes */
  padding: 20px; /* Espacio alrededor de la galería */
  max-width: 1200px; /* Ancho máximo para la galería, ajusta según necesites */
  margin: 0 auto; /* Centra la galería en la página */
}

/* Estilos para las imágenes dentro de la galería */
.gallery img {
  width: 450px; /* **Este es el valor clave para hacerlas más grandes** */
  /* Puedes usar un porcentaje si prefieres que se adapten al tamaño de la pantalla */
  /* Por ejemplo: width: 45%; para que quepan dos por fila con espacio */
  /* O: width: 30%; para que quepan tres por fila con espacio */

  height: auto; /* Mantiene la proporción original de la imagen */
  object-fit: cover; /* Asegura que la imagen cubra el espacio sin distorsionarse */
  border-radius: 8px; /* Bordes redondeados, opcional */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil, opcional */
}

/* Media Queries para hacerlas responsive (muy recomendado) */
@media (max-width: 768px) {
  .gallery img {
    width: 90%; /* En pantallas pequeñas, ocupan casi todo el ancho */
    max-width: 400px; /* Un tamaño máximo para que no sean enormes en tabletas */
  }
}

@media (max-width: 480px) {
  .gallery img {
    width: 100%; /* En móviles, ocupan el 100% del ancho disponible */
  }
}


#work .gallery img:hover {
  transform: scale(1.05);
}
#about {
  padding: 50px 20px; /* Ajusta el padding según necesites */
  text-align: center; /* Centra el texto */
  background-color: #fd5555; /* Un color de fondo ligero */
  color: #ffffff; /* Color del texto */
}

#about h2 {
  margin-bottom: 20px; /* Espacio debajo del título */
  color: #ffffff; /* Color del título */
}

#about p {
  font-size: 0,8 em; /* Tamaño de fuente para el párrafo */
  line-height: 1.6; /* Espaciado entre líneas */
  max-width: 800px; /* Ancho máximo del párrafo para mejor legibilidad */
  margin: 0 auto; /* Centra el párrafo */
  
}

.work-introduction {
  text-align: center;
  padding: 40px 20px 20px; /* Más padding arriba, menos abajo */
  background-color: #fcfcfc; /* Un fondo muy claro */
}

.work-introduction h2 {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 10px;
}

.work-introduction p {
  font-size: 1.1em;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh; /* ocupa casi toda la pantalla */
  text-align: center;
  background: linear-gradient(135deg, #5582fd, #5582fd); /* puedes cambiarlo */
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero .highlight {
  color: #fd5555; /* color destacado en el nombre */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: transform 0.2s, background 0.2s;
}

.btn-purple { background-color: #5582fd; }
.btn-green { background-color: #10b981; }
.btn-blue { background-color: #2563eb; }

.hero-buttons .btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* Estilos Globales para un look limpio */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* Un gris muy claro, suave y moderno */
    color: #333;
    line-height: 1.6;
}

/* Contenedor central para las secciones */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos de las Secciones */
.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* --- HERO SECTION (Diseño Mobastic) --- */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
    text-align: center;
    background-color: #000000; /* Un púrpura oscuro para el fondo */
    background-image: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none" stroke="%233e0066" stroke-width="0.5"/%3E%3C/svg%3E'); /* Una cuadrícula SVG para el fondo */
    background-size: 20px 20px;
    position: relative;
   
}

.hero h1 {
    font-size: 4em;
    margin: 0 0 10px;
}

.hero p {
    font-size: 1.5em;
    opacity: 0.8;
    margin: 0 0 30px;
}

.highlight {
    color: #5582fd; /* Un color de acento brillante */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.hero-btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-purple { background-color: #fd5555; }
.btn-green { background-color: #00b894; }
.btn-blue { background-color: #ff0000; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; /* Mantiene la barra de navegación en la parte superior */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #1a1a1a; /* Un gris oscuro o negro para que contraste */
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.navbar .logo img {
    height: 40px;
    border-radius: 50%; /* Si quieres que el logo sea redondo */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #5582fd; /* Color de acento al pasar el mouse */
}

.contact-btn {
    background-color: #5582fd;
    color: #1a1a1a;
    border-radius: 5px;
    padding: 8px 15px;
    font-weight: bold;
}

/* --- WORK SECTION --- */
#work, #about {
    padding: 80px 0;
    text-align: center;
}

#work .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Crea una cuadrícula adaptable */
    gap: 30px; /* Espacio entre las imágenes */
    justify-content: center;
}

#work .gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#work .gallery img:hover {
    transform: scale(1.05); /* Efecto de zoom sutil al pasar el mouse */
}

.work-intro-text {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ABOUT SECTION --- */
#about {
    background-color: #5573f7;
    padding-top: 80px;
    padding-bottom: 80px;
}

#about p {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }
    .navbar.active .nav-links {
        display: flex;
    }
    .navbar {
        padding: 15px 20px;
    }
    .hero h1 {
        font-size: 3em;
    }
    .hero p {
        font-size: 1.2em;
    }
    .hero-buttons {
        flex-direction: column;
    }
}




.particle {
    position: absolute;
    background-color: var(--primary);
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}
:root {
  --primary: #ff4d4d; /* azul fuerte */
}

/* Contenedor de partículas */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Cada partícula */
.particle {
  position: absolute;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.7;
  animation: fall linear infinite;
}

.smooth-title {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #4da3ff;
  opacity: 0;

  animation: fadeSlide 1.2s ease-out forwards,
             softGlow 3s ease-in-out infinite;
}

/* Aparición suave + ligero movimiento */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 2px;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    letter-spacing: 4px;
  }
}

/* Glow sutil respirando */
@keyframes softGlow {
  0%, 100% {
    text-shadow: 0 0 8px rgba(77, 163, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(77, 163, 255, 0.9);
  }
}
body, .navbar, .container {
  position: relative;
  z-index: 10;
}

body {
  background: #000000;
  font-family: Arial;
  color: white;
}

/* tarjeta */
.creator-card {
  width: 380px;
  background: rgba(0,0,0,0.5);
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* avatar + nombre */
.info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

/* zona de following */
.following {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar {
  flex-grow: 1;
  background: rgba(255,255,255,0.15);
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 10px;
}

.fill {
  height: 100%;
  background: #ff5959;
  width: 0%;               /* inicia vacía */
  border-radius: 4px;
  transition: width 1.6s ease;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}


.clients-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-top: 80px;
    color: white;
}

.clients-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.7;
    color: rgb(255, 0, 0);
}








