/* =========================================
   RESET & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F0F0F0;
  overflow-x: hidden;
}

/* =========================================
   HEADER & NAV
   ========================================= */
header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  height: 70px;
}

.logo {
  height: 60px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #000000;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #FF3E71;
  color: #ffffff;
}

/* =========================================
   VIDEO SECTION
   ========================================= */
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
}

.sound-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
}

.hero-section img.banner {
  width: 100%;
  display: block;
}

.popart {
  position: absolute;
  bottom: 0;
  right: 90px;
  width: 600px;
  z-index: 10;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.1s ease;
}

.popart:hover {
  animation: vibrarComic 0.15s infinite;
}

@keyframes vibrarComic {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(.5px, -.5px) rotate(-1deg);
  }

  50% {
    transform: translate(-2px, 2px) rotate(1deg);
  }

  75% {
    transform: translate(2px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* =========================================
   MÉTRICAS
   ========================================= */
.metricas {
  background-color: #F0F0F0;
  padding: 80px 20px;
  text-align: center;
}

.intro-bullet {
  font-family: 'Myriad Pro', sans-serif;
  font-size: 20px;
  color: #000000;
  margin-bottom: 100px;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.intro-bullet.tada {
  animation: tada 1s ease-in-out;
}

.fila-metricas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.tarjeta-metrica {
  background: white;
  border-radius: 20px;
  padding: 60px 30px 30px 30px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  position: relative;
  overflow: visible;
  padding-top: 60px;
  /* espacio para el icono */
}

.tarjeta-metrica.visible {
  opacity: 1;
  transform: translateY(0);
}

.icono-circular {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  background-color: #ffffff;
  margin: 0 auto;
}

.tarjeta-metrica.naranja-circulo .icono-circular {
  background-color: #FF3E71;
}

.tarjeta-metrica.azul-circulo .icono-circular {
  background-color: #009CFC;
}

.icono-circular img {
  width: 60px;
  height: 60px;
  animation: flipIcono 2s infinite linear;
}

@keyframes flipIcono {
  0% {
    transform: rotateY(0);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.numero {
  font-size: 50px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #07548c;
  margin-bottom: 10px;
}

.numero-compacto {
  font-size: 30px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: #07548c;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

.texto-metrica {
  font-size: 16px;
}

.texto-metrica .light {
  font-weight: 300;
}

.texto-metrica .bold {
  font-weight: 700;
}

.naranja {
  color: #FF3E71;
}

.azul-claro {
  color: #009CFC;
}

.azul {
  color: #102147;
}

/* =========================================
   CREATIVIDAD
   ========================================= */
.creatividad-nueva {
  background-image: url('../img/banner2.jpg');
  /* Adjusted path for CSS file location */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  position: relative;
}

.contenedor-creatividad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}

.bloque-texto {
  flex: 1;
}

.bloque-texto h2 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
}

.bloque-texto .azul {
  color: #009CFC;
}

.bloque-texto .naranja {
  color: #FF3E71;
}

.bloque-texto p {
  font-size: 18px;
  margin-top: 20px;
  color: #333;
  max-width: 500px;
}

.bloque-imagen {
  flex: 1;
  position: relative;
}

.monito {
  width: 100%;
  max-width: 600px;
  display: block;
  z-index: 1;
}

.burbuja {
  position: absolute;
  top: -30px;
  right: -40px;
  width: 150px;
  z-index: 2;
}

/* =========================================
   SERVICIOS
   ========================================= */
.servicios {
  background-color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.servicios h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.descripcion-central {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #333;
}

.contenedor-tarjetas {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.tarjeta-servicio {
  width: 280px;
  height: 340px;
  background-color: #fff;
  border: 4px solid #009CFC;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.tarjeta-servicio .frontal {
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Oculta monito al hover o clic */
.tarjeta-servicio:hover .monito,
.tarjeta-servicio.clicked .monito {
  opacity: 0;
}

.descripcion {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  transition: all 0.4s ease;
  font-size: 14px;
  line-height: 1.3;
  margin-top: 10px;
  color: white;
  display: block;
}

.tarjeta-servicio:hover .descripcion,
.tarjeta-servicio.clicked .descripcion {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.linea-color {
  height: 4px;
  width: 100%;
  background-color: #009CFC;
  margin: 20px auto;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.rosa {
  background-color: #FF3E71 !important;
}

.tarjeta-servicio:hover .linea-color,
.tarjeta-servicio.clicked .linea-color {
  transform: scaleX(1);
}

/* Fade-in al hacer scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.contenedor-tarjetas.estilo-nuevo {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* Estilos extra de servicio */
.tarjeta-servicio.estilo-referencia {
  width: 300px;
  height: 330px;
  border-radius: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: default;
}

.tarjeta-servicio.estilo-referencia:hover {
  transform: translateY(-6px);
}

.crixer-img {
  width: 120px;
  margin-top: 30px;
  z-index: 2;
  transition: transform 0.4s ease;
}

.contenido-texto {
  margin-top: auto;
  width: 100%;
  padding: 20px;
  text-align: center;
  color: white;
}

.tarjeta-servicio.estilo-referencia.azul .contenido-texto {
  background-color: #009CFC;
}

.tarjeta-servicio.estilo-referencia.rosa .contenido-texto {
  background-color: #FF3E71;
}

.contenido-texto h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
}

.contenido-texto h3 span {
  font-size: 20px;
  font-weight: 800;
  display: block;
}

.contenido-texto p {
  font-size: 14px;
  margin-top: 5px;
}

.contenedor-tarjetas.estilo-final {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.borde-azul {
  border-color: #009CFC;
}

.borde-rosa {
  border-color: #FF3E71;
}

.tarjeta-servicio .superior {
  flex: 1;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.tarjeta-servicio .superior img {
  width: 110px;
}

.tarjeta-servicio .inferior {
  padding: 20px;
  text-align: center;
  color: white;
  clip-path: ellipse(120% 100% at 50% 0%);
}

.inferior.azul {
  background-color: #009CFC;
}

.inferior.rosa {
  background-color: #FF3E71;
}

.tarjeta-servicio h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
}

.tarjeta-servicio h3 span {
  font-size: 20px;
  font-weight: 800;
  display: block;
}

.tarjeta-servicio p {
  font-size: 14px;
  margin-top: 5px;
}

/* Imagen del Crixer grande */
.crixer-container {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: opacity 0.4s ease;
}

/* Contenido de la tarjeta */
.contenido-tarjeta {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding-top: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}

/* Título siempre visible */
.titulo-sub {
  background-color: transparent;
  color: #000;
  text-align: center;
  margin-bottom: auto;
  z-index: 3;
  transition: transform 0.4s ease;
}

.titulo-sub h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.titulo-sub h3 span {
  font-size: 20px;
  font-weight: 800;
  display: block;
}

/* Fondo inferior azul con esquina redonda a la derecha */
.zona-color {
  width: 100%;
  height: 65%;
  padding: 20px 15px;
  text-align: center;
  color: white;
  position: relative;
  clip-path: polygon(0 0, 90% 0, 100% 15%, 100% 100%, 0% 100%);
  transition: background-color 0.4s ease;
}

.zona-color.azul {
  background-color: #009CFC;
}

.zona-color.rosa {
  background-color: #FF3E71;
}

.fila-servicios {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.servicio {
  width: 400px;
  transition: transform 0.3s;
}

.info-desplegada {
  display: none;
  margin-top: 2rem;
  padding: 2rem;
  background-color: #F0F0F0;
  border-radius: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contenido-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contenido-info img {
  width: 150px;
  height: auto;
}

.contenido-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #333;
}

#detalle-servicio {
  display: none;
  padding: 20px;
  margin-top: 30px;
  border-radius: 20px;
  color: white;
  transition: background-color 0.5s ease;
}

/* Colores del cuadro desplegado */
#detalle-servicio.azul {
  background-color: #009CFC;
}

#detalle-servicio.rosa {
  background-color: #FF3E71;
}

#info-servicio.azul {
  background-color: #009CFC;
  color: white;
}

#info-servicio.rosa {
  background-color: #FF3E71;
  color: white;
}

/* =========================================
   SECCIÓN CLIENTES
   ========================================= */
.clientes {
  background-color: #07548c;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.intro-clientes {
  max-width: 900px;
  margin: 0 auto 60px;
}

.intro-clientes h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 5px;
  line-height: 1.4;
}

.intro-clientes p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.grid-clientes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid #ffffff;
  /* Borde externo */
}

.cliente-item {
  background-color: #009CFC;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  /* Bordes internos */
  margin: -0.5px;
  /* Hack para fusionar bordes */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cliente-item:hover {
  filter: brightness(1.1);
  z-index: 1;
  background-color: #FF3E71;
  /* Rosa al hacer hover */
}

.logo-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
  .grid-clientes {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en móvil */
  }
}

/* =========================================
   SECCIÓN NUESTRO PROCESO
   ========================================= */
.proceso {
  background-color: #F0F0F0;
  padding: 100px 20px;
  text-align: center;
}

.proceso h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.proceso-descripcion {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 80px;
  color: #333;
}

.proceso-contenedor {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  position: relative;
}

.paso-item {
  flex: 1;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.paso-circulo {
  width: 150px;
  height: 150px;
  background-color: white;
  border: 3px solid #d0d0d0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  z-index: 2;
}

.paso-numero {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background-color: #009CFC;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 18px;
  z-index: 3;
}

.paso-icono {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.paso-texto {
  text-align: center;
}

.paso-titulo {
  font-size: 16px;
  font-weight: 800;
  color: #009CFC;
  margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.paso-subtitulo {
  font-size: 14px;
  font-weight: 700;
  color: #102147;
  text-transform: uppercase;
}

/* Líneas conectoras */
.paso-item:not(:last-child) .paso-circulo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 80px;
  height: 2px;
  background-color: #d0d0d0;
  transform: translateY(-50%);
  z-index: 1;
}

/* Responsividad */
@media (max-width: 1024px) {
  .proceso-contenedor {
    flex-wrap: wrap;
    gap: 60px 20px;
  }

  .paso-item {
    flex: 0 0 calc(33.333% - 20px);
  }

  .paso-item:nth-child(3n) .paso-circulo::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .proceso-contenedor {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .paso-item {
    max-width: 250px;
  }

  .paso-item .paso-circulo::after {
    display: none;
  }
}

/* =========================================
   SECCIÓN SLIDER PROYECTOS
   ========================================= */
.slider-proyectos {
  background-color: #ffffff;
  padding: 80px 20px;
  position: relative;
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.slider-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navegación lateral (dots) */
.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFB3C6;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
}

.dot:hover {
  background-color: #FF3E71;
  transform: scale(1.1);
}

.dot.active {
  background-color: #FF3E71;
  width: 35px;
  height: 35px;
}

.dot.active::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container {
    flex-direction: column-reverse;
  }

  .slider-dots {
    flex-direction: row;
    margin-top: 20px;
  }
}

/* =========================================
   SECCIÓN CONTACTO
   ========================================= */
.contacto {
  background-color: #009CFC;
  padding: 80px 20px;
  text-align: center;
}

.contacto h2 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-contacto {
  max-width: 1000px;
  margin: 0 auto;
}

.form-container-inline {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}



select.form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23cccccc" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  cursor: pointer;
  color: #333;
}

select.form-input:invalid {
  color: #cccccc;
  text-transform: uppercase;
  font-weight: 600;
}

select.form-input option {
  color: #000;
}

.form-input::placeholder {
  color: #cccccc;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-enviar {
  padding: 15px 35px;
  background-color: #FFA500;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-enviar:hover {
  background-color: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-container label {
  cursor: pointer;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
  .contacto h2 {
    font-size: 32px;
  }

  .form-row {
    flex-direction: column;
    align-items: center;
  }

  .form-input {
    max-width: 100%;
    width: 100%;
  }

  .btn-enviar {
    width: 100%;
  }
}

/* =========================================
   SECCIÓN NUESTRO CONTACTO
   ========================================= */
.info-contacto {
  background-color: #F5F5F5;
  padding: 60px 20px 40px;
  text-align: center;
}

.info-contacto h2 {
  font-size: 48px;
  font-weight: 800;
  color: #FF3E71;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contacto-detalles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.contacto-item i {
  color: #FF3E71;
  font-size: 20px;
}

.contacto-item a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacto-item a:hover {
  color: #FF3E71;
}

.mapa-container {
  width: 100%;
  height: 450px;
  margin-top: 20px;
}

.mapa-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .info-contacto h2 {
    font-size: 32px;
  }

  .contacto-detalles {
    flex-direction: column;
    gap: 20px;
  }

  .mapa-container {
    height: 300px;
  }
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: #FF3E71;
  color: white;
  padding: 50px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-year {
  font-size: 18px;
  font-weight: 700;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-column ul li::before {
  content: "▸ ";
  margin-right: 5px;
}

.enlace-whatsapp {
  font-size: 14px;
  line-height: 1.6;
}

.enlace-whatsapp a {
  color: white;
  text-decoration: underline;
  font-weight: 800;
  transition: opacity 0.3s ease;
}

.enlace-whatsapp a:hover {
  opacity: 0.8;
}

.contacto-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contacto-footer-item i {
  font-size: 18px;
}

.contacto-footer-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contacto-footer-item a:hover {
  opacity: 0.8;
}

.redes-sociales {
  margin-top: 15px;
}

.redes-sociales h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 18px;
  color: #FF3E71;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo-section {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contacto-footer-item {
    justify-content: center;
  }
}

/* Estilos para logos de clientes */
.logo-cliente {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: invert(1);
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}

/* =========================================
   RESPONSIVE: HEADER & NAV
   ========================================= */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 0.5rem;
  }

  .logo {
    height: 50px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  nav a {
    margin-left: 0;
    font-size: 13px;
    padding: 0.4rem 0.8rem;
  }
}

/* =========================================
   RESPONSIVE: VIDEO SECTION
   ========================================= */
@media (max-width: 768px) {
  .sound-toggle {
    bottom: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    font-size: 11px;
  }
}

/* =========================================
   RESPONSIVE: HERO SECTION
   ========================================= */
@media (max-width: 1024px) {
  .popart {
    width: 400px;
    right: 40px;
  }
}

@media (max-width: 768px) {
  .popart {
    width: 250px;
    right: 20px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .popart {
    width: 180px;
    right: 10px;
    bottom: -5px;
  }
}

/* =========================================
   RESPONSIVE: CREATIVIDAD EN ACCIÓN
   ========================================= */
@media (max-width: 1024px) {
  .bloque-texto h2 {
    font-size: 40px;
  }

  .bloque-texto p {
    font-size: 16px;
  }

  .monito {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .creatividad-nueva {
    padding: 60px 20px;
  }

  .contenedor-creatividad {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .bloque-texto h2 {
    font-size: 32px;
  }

  .bloque-texto p {
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .bloque-imagen {
    display: flex;
    justify-content: center;
  }

  .monito {
    width: 80%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .bloque-texto h2 {
    font-size: 28px;
  }

  .monito {
    width: 90%;
  }
}

/* =========================================
   RESPONSIVE: NUESTROS SERVICIOS
   ========================================= */
@media (max-width: 1024px) {
  .fila-servicios {
    gap: 1.5rem;
  }

  .servicio {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .servicios h2 {
    font-size: 32px;
  }

  .descripcion-central {
    font-size: 15px;
    padding: 0 20px;
  }

  .fila-servicios {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .servicio {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .servicios h2 {
    font-size: 28px;
  }

  .servicio {
    max-width: 320px;
  }
}

/* =========================================
   ANIMACIONES SCROLL
   ========================================= */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Delays para efectos stagger */
.delay-100 {
  animation-delay: 0.1s !important;
}

.delay-200 {
  animation-delay: 0.2s !important;
}

.delay-300 {
  animation-delay: 0.3s !important;
}

.delay-400 {
  animation-delay: 0.4s !important;
}

.delay-500 {
  animation-delay: 0.5s !important;
}

.delay-600 {
  animation-delay: 0.6s !important;
}