*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
body {
  font-family: Arial, sans-serif;
  cursor: none;
}

/* este es el estilo del Efecto del cursor*/
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: rgb(243, 99, 9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 255, 255, 0.2); /* Fondo color con opacidad */
    border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}


/* Este es el style de la cabecera de info de contactos y redes sociales*/
.top-header {
  background-color: #00aaff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info span {
  display: flex;
  align-items: center;
  color: white;
}

.contact-info img,
.social-icons img {
  display: block;
}

.icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.icon_w {
  width: 23px;
  height: 23px;
  margin-right: 8px;
}

.icon-white {
  filter: invert(1);
  transition: filter 0.3s ease;
}

.icon-info {
  filter: invert(1);
}

.icon-white:hover {
  filter: invert(69%) sepia(25%) saturate(1885%) hue-rotate(139deg)
    brightness(103%) contrast(102%);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    padding: 15px 20px;
    align-items: center; /* Centra los hijos (.contact-info, .social-icons) */
  }

  .contact-info {
    flex-direction: column;
    gap: 15px; /* Espacio entre email y teléfono */
    align-items: center; /* Centra el email y el teléfono */
    width: 100%;
  }

  .contact-info span {
    justify-content: center; /* Centra el contenido (icono + texto) dentro de cada span */
  }

  .social-icons {
    margin-top: 15px; /* Espacio entre teléfono y íconos sociales */
    justify-content: center; /* Centra los íconos sociales */
    width: 100%;
  }
}

@media (max-width: 480px) {
  .icon,
  .icon_w {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  .contact-info span {
    font-size: 0.9em;
  }
}

/* Este es el style de la cabecera de navegacion de la pagina*/
.header_navegador {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffffec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 100px;
  width: 100%;
  height: 100px;
  box-shadow: 0 2px 8px rgba(75, 255, 255, 0.548);
  box-sizing: border-box;
}

.logo img {
  width: 160px;
  height: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.nav ul li a {
  text-decoration: none;
  color: #595959;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav ul li a:hover {
  color: #00aaff;
}

.contacto {
  display: flex;
  align-items: center;
  gap: 15px;
}

.telefono-icono {
  width: 60px;
  height: 60px;
  background: #00aaff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.telefono-icono img {
  width: 50px;
  height: 50px;
}

.telefono-texto span {
  display: block;
  color: #6e7b8a;
  font-size: 16px;
}

.telefono-texto strong {
  color: #0a1e3f;
  font-size: 25px;
}

/* Botón hamburguesa (oculto en pantallas grandes) */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #595959;
  cursor: pointer;
}

/* ---------------------- */
/* Estilos responsive     */
/* ---------------------- */

@media (max-width: 768px) {
  .header_navegador {
    flex-wrap: wrap;
    padding: 15px 20px;
    height: auto;
  }

  .contacto {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 1.2s ease-in-out;
  }

  .nav.show {
    max-height: 500px; /* Ajusta si tu menú tiene más enlaces */
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin: 0;
  }

  .nav.show {
    display: block;
  }
  .logo img {
    width: 130px;
    height: auto;
}
}

/* (para la pagina actual) */
.nav ul li a.activo {
  color: #00aaff;
  border-bottom: 2px solid #00aaff;
  padding-bottom: 5px;
}


/* Esto es el style de main de la pagina - portal de bienvenidad */
.carrusel {
  position: relative;
  width: 100%;
  min-height: 630px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1s ease;
  z-index: 0;
  padding: 20px;
  /* Add the semi-transparent pink overlay here */
  background-color: rgba(255, 0, 255, 0.3); /* rosado semitransparente */
  /* Ensure the background image is still visible underneath */
  background-blend-mode: overlay; /* This blends the color with the background image */
}

.slide.activo {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.contenido {
  /* Remove the background from here, as it's now on the .slide */
  /* background: rgba(255, 0, 255, 0.3); */
  width: 100%;
  max-width: 1000px;
  height: auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.slide.activo .contenido {
  opacity: 1;
  transform: translateY(0);
}

.contenido h4,
.contenido h2,
.contenido p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.slide.activo .contenido h4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
  margin-top: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 610; 
}

.slide.activo .contenido h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  
}

.slide.activo .contenido p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
  margin-top: 5px;
}

.button_Portal {
  width: 250px;
  background-color: #00aaff;
  color: #FFF;
  border-radius: 0px;
  padding: 18px 36px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #2932b2;
  transition: ease-out 0.4s;
  margin-top: 30px;
  text-decoration: none;
}

.button_Portal:hover {
  box-shadow: inset 0 0 0 50px #024c9b;
}

.contenido h4 {
  color: #00ffe5;
  font-size: 28px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.contenido h2 {
  font-size: 68px;
  color: #00c3ff;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.contenido p {
  margin: 20px 0;
  font-size: 20px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.466);
}

.contenido p .salto {
  display: block;
  margin-top: 8px;
}

/* Flechas más pequeñas */
.flechas {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.flechas span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 28px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.flechas span.anterior {
  left: 20px;
}

.flechas span.siguiente {
  right: 20px;
}

.flechas span:hover {
  transform: translateY(-50%) scale(1.2);
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 1024px) {
  .contenido h2 {
    font-size: 48px;
  }

  .contenido p {
    font-size: 18px;
  }

  .button_Portal {
    padding: 16px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .carrusel {
    min-height: 480px; /* más bajo en tablets */
  }

  .contenido {
    max-width: 90%;   /* que no se pegue a los lados */
    padding: 20px 15px;
  }

  .contenido h4 {
    font-size: 20px;
    margin-top: 25px;
  }

  .contenido h2 {
    font-size: 32px;
    line-height: 1.3;  /* mejor legibilidad */
    margin-top: 10px;
  }

  .contenido p {
    font-size: 15px;
    margin-top: 20px;
    line-height: 1.5;
  }

  .button_Portal {
    width: auto; /* ya no fijo 250px, que se adapte */
    padding: 12px 22px;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block; /* mantiene centrado */
  }

  .flechas span {
    font-size: 24px;
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 480px) {
  .contenido h4 {
    font-size: 18px;
    margin-top: 30px; /* Adjusted for smallest screens */
  }

  .contenido h2 {
    font-size: 28px;
    margin-top: 15px; /* Consistent spacing */
  }

  .contenido p {
    font-size: 14px;
    margin-top: 20px; /* Consistent spacing */
  }

  .button_Portal {
    padding: 12px 20px;
    font-size: 13px;
    margin-top: 20px; /* Adjusted for smallest screens */
  }

  .contenido {
    padding: 30px 10px; /* Increased vertical padding for overall content box spacing */
    max-width: 90%;
    margin: 0 auto;
  }

  .flechas span {
    font-size: 22px;
    width: 32px;
    height: 32px;
  }
}
/* este es el style de la parte de los logos de los software de diseño*/
.icon-container {
    display: flex;
    gap: 170px;
    padding: 20px;
    background-color: #e5e5e5c2;
    justify-content: center;
    align-items: center;
    height: 130px;
}

.icon-container a {
    display: block;
}

.icon-container img {
    height: 80px;
    filter: grayscale(100%);
    transition:
        filter 0.3s ease,
        brightness 0.3s ease,
        transform 0.3s cubic-bezier(0.25, 1.25, 0.5, 1.05); /* efecto rebote */
}

.icon-container img:hover {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.15);
}

/* --- Media Query para dispositivos móviles --- */
@media (max-width: 768px) {
    .icon-container {
        flex-wrap: wrap;
        gap: 35px;
        height: auto;
        padding: 20px 10px;
    }

    .icon-container img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .icon-container {
        gap: 20px;
        justify-content: space-around;
    }

    .icon-container img {
        height: 50px;
    }
}

/* esto es el style de la parte de Te Presentamos*/
.seccion-diseno {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    background: white;
    gap: 100px;
    height: 550px;
    overflow: hidden;
}

.decoracion-puntos {
    position: absolute;
}

.decoracion-puntos.izquierda {
    top: 50px;
    left: 20px;
    width: 450px;
    z-index: 0;
}

.decoracion-puntos.derecha {
    bottom: 50px;
    right: 20px;
    width: 450px;
    z-index: 0;
}

.decoracion-puntos img {
    width: 100%;
    opacity: 0.4;
}

.contenido-bienvenido {
    max-width: 500px;
    text-align: left;
    z-index: 1;
}

.contenido-bienvenido h4 span {
    color: #e62ea1;
    font-weight: bold;
    font-size: 18px;
}

.contenido-bienvenido h1 {
    font-size: 37px;
    font-weight: 900;
    line-height: 1.2;
    margin: 15px 0;
    margin-top: 50px;
}

.contenido-bienvenido p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-top: 50px;
}

.imagen {
    position: relative;
    display: inline-block;
    z-index: 1;
    --angle: 0deg;
    --borde-color-base: #0f89ed;
    --borde-color-cola: rgba(15, 137, 237, 0.2);
    --segmento-size: 90deg;
}

.imagen img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    display: block;
}

.imagen::after {
    content: "";
    position: absolute;
    /* Aumentamos los valores para un contorno más separado */
    top: -6px; /* Antes -4px */
    left: -6px; /* Antes -4px */
    width: calc(100% + 12px); /* Antes calc(100% + 8px) */
    height: calc(100% + 12px); /* Antes calc(100% + 8px) */
    border-radius: 14px; /* Aumentamos un poco el radio para que coincida con el nuevo tamaño */
    border: 2px solid transparent;
    background: conic-gradient(
        from var(--angle),
        var(--borde-color-cola) 0deg,
        var(--borde-color-cola) calc(360deg - var(--segmento-size)),
        var(--borde-color-base) calc(360deg - var(--segmento-size)),
        var(--borde-color-base) 360deg
    ) border-box;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    z-index: 2;
}

/* --- Media Queries para hacer la sección responsive --- */

@media (max-width: 1024px) {
    .seccion-diseno {
        flex-direction: column;
        height: auto;
        gap: 40px;
        padding: 40px 20px;
    }

    .contenido-bienvenido {
        max-width: 90%;
        text-align: center;
    }

    .contenido-bienvenido h1 {
        font-size: 32px;
        margin-top: 20px;
    }

    .contenido-bienvenido h4 span {
        font-size: 16px;
    }

    .contenido-bienvenido p {
        font-size: 15px;
        margin-top: 20px;
    }

    .imagen img {
        max-width: 400px;
    }

    .decoracion-puntos {
        display: none;
    }
}

@media (max-width: 768px) {
    .seccion-diseno {
        padding: 30px 15px;
        gap: 30px;
    }

    .contenido-bienvenido h1 {
        font-size: 28px;
    }

    .contenido-bienvenido h4 span {
        font-size: 14px;
    }

    .contenido-bienvenido p {
        font-size: 14px;
    }

    .imagen img {
        max-width: 300px;
    }
    .imagen {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .seccion-diseno {
        padding: 20px 10px;
        gap: 20px;
    }

    .contenido-bienvenido h1 {
        font-size: 24px;
    }
}


/* style de la seccion haz crecer tu negocio*/
.banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}
.banner img.fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 4, 217, 0.452);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 90%;
}

.subtitulo h2{
  font-size: 24px;
  color: #00ffe5;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

.titulo h1{
  font-size: 40px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: uppercase;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
}

.button_slide {
  background-color: #00aaff;
  color: #FFF;
  border-radius: 0px;
  padding: 18px 36px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 16px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #2932b2;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  margin-top: 5px;
}

.slide_left:hover {
  box-shadow: inset 0 0 0 50px #024c9b;
}

/* --- Estilos Responsive --- */
@media (max-width: 1024px) {
  .banner {
    min-height: 500px;
  }

  .titulo h1 {
    font-size: 32px;
    margin-top: 15px;
  }

  .subtitulo h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 450px;
  }

  .titulo h1 {
    font-size: 23px;
    line-height: 1.2;
  }

  .subtitulo h2 {
    font-size: 18px;
  }

  .button_slide {
    padding: 14px 28px;
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 420px;
  }

  .titulo h1 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .subtitulo h2 {
    font-size: 16px;
  }

  .button_slide {
    padding: 12px 24px;
    font-size: 13px;
    margin-top: 0;
  }
}


/* seccion impresion digital, offset y diseño */
.seccion-diseno-2 {
  position: relative; /* necesario para que los puntitos se posicionen dentro de esta sección */
  height: auto;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  text-align: center;     
  padding: 30px;
  z-index: 1; /* el contenido estará sobre los puntitos */
}

.decoracion-puntos {
  position: absolute;
  z-index: 0; /* asegura que quede detrás del contenido */
  opacity: 0.6; /* opcional: hacerlos más sutiles */
}

.decoracion-puntos.izquierda {
  top: 0;
  left: 0;
}

.decoracion-puntos.derecha {
  bottom: 0;
  right: 0;
}


.cuadrados {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 1rem; /* reducido padding lateral en móviles */
  position: relative;
  z-index: 2;
}

.cuadrado_principal {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 300px;
  height: 400px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cuadrado_principal:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cuadro_imagen img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.seccion-diseno-2 {
  height: auto;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  text-align: center;     
  padding: 30px;
}
.seccion-diseno-2 h1 {
  font-size: 35px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #05dac4;
}
.cuadrado_principal h2 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: #ff03b8;
  font-weight: bold;
}

.cuadrado_principal p {
  font-size: 1rem;
  margin: 0.5rem 1rem 0.5rem;
  color: #858585;
  flex-grow: 1;
}

.cuadrado_principal a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: #05dac4;
  transition: text-decoration-color 0.3s ease;
  margin-bottom: 1rem;
  display: inline-block;
}

.cuadrado_principal a:hover {
  text-decoration-color: #fe07c5;
} 

/* Responsive: Tablets y móviles */
@media (max-width: 768px) {
  .cuadrados {
    gap: 2rem;
  }

  .cuadrado_principal {
    width: 90%;
    max-width: 340px;
    height: auto; /* Permitir altura automática si el contenido cambia */
  }

  .cuadro_imagen img {
    height: 180px;
  }

  .cuadrado_principal h1 {
    font-size: 1.1rem;
  }

  .cuadrado_principal p {
    font-size: 0.95rem;
  }

  .cuadrado_principal a {
    font-size: 0.9rem;
  }
  .seccion-diseno-2 h1 {
  font-size: 28px;
}
}

@media (max-width: 480px) {
  .cuadrados {
    gap: 1.5rem;
  }

  .cuadrado_principal {
    width: 100%;
    max-width: 100%;
  }

  .cuadro_imagen img {
    height: 160px;
  }

  .cuadrado_principal h1 {
    font-size: 1rem;
  }

  .cuadrado_principal p {
    font-size: 0.9rem;
  }
}


/* stylo de ofrecemos una amplia gama de cervicios*/
.container_servicios {
  background-color: #fff;
  display: flex;
  width: 100%;
  height: auto; /* Cambiado para que crezca con el contenido */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  flex-wrap: wrap; /* permite que cambie de formato en pantallas pequeñas */
}

.imageenes_servicios {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #673AB7;
  padding: 20px;
  gap: 20px;
}

.imageenes_servicios img {
  width: 45%;
  height: auto;
  object-fit: contain;
}

.info_servicios {
  flex: 1;
  background-color: #673AB7;
  color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info_servicios h1 {
  color: rgb(234, 170, 7);
  font-size: 1.5em;
  padding-top: 10px;
}

.info_servicios h2 {
  font-size: 3.8em;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: bold;
}

.info_servicios p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.info_servicios ul {
  list-style: none;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: start;
}

.info_servicios ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  display: flex;
  align-items: center;
}

.info_servicios ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #A5D6A7;
  font-weight: bold;
  font-size: 1.2em;
}

.info_servicios ul li span {
  flex: 1;
  padding-left: 5px;
}

/* ============ MEDIA QUERIES PARA RESPONSIVE ============ */
@media (max-width: 1024px) {
  .info_servicios h2 {
    font-size: 2.8em;
  }

  .imageenes_servicios img {
    width: 40%;
  }
}

@media (max-width: 768px) {
  .container_servicios {
    flex-direction: column; /* apilado en móviles */
  }

  .imageenes_servicios,
  .info_servicios {
    flex: none;
    width: 100%;
    padding: 20px;
  }

  .imageenes_servicios {
    justify-content: center;
  }

  .imageenes_servicios img {
    width: 70%; /* imágenes más grandes en móvil */
  }

  .info_servicios h2 {
    font-size: 2.2em;
    text-align: center;
  }

  .info_servicios h1,
  .info_servicios ul {
    text-align: center;
  }
  .info_servicios p {
    text-align: center;
    padding: 0 10px;
  }

   .info_servicios ul {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* dos columnas */
    max-width: 500px;                 /* centrado sin expandirse */
    margin: 0 auto;                   /* centra el UL dentro del div */
    text-align: left;                 /* li alineado a la izquierda */
    gap: 0px 15px; /* Aquí aplicamos el cambio */
    padding-bottom: 30px;
  }

  .info_servicios ul li {
    justify-content: flex-start;     /* asegura que el contenido del li esté a la izquierda */
  }
}

@media (max-width: 480px) {
  .info_servicios h2 {
    font-size: 1.8em;
  }

  .info_servicios h1 {
    font-size: 1.2em;
  }

  .imageenes_servicios img {
    width: 90%;
  }

  .info_servicios {
    padding: 20px 10px;
  }
}

/* Animación de flotación */
@keyframes flotar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Aplica animación a cada imagen */
.imageenes_servicios img {
  width: 47%;
  height: auto;
  object-fit: contain;
  animation: flotar 3s ease-in-out infinite;
}



/* style de Guia de pedidos */

.container_pedido {
  background-color: #dadadaa6;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px ;
}
.container_pedido h1 {
  font-size: 32px;
  color: #00aaff;
  text-align: center;
}
.guia {
  display: flex;
  width: auto;
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.diseño,
.revision_confirmacion,
.pago,
.entrega_envio {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.diseño img,
.revision_confirmacion img,
.pago img,
.entrega_envio img {
  width: 100px;
  height: 100px;
  margin-top: 45px;
  margin-bottom: 30px;
}
.diseño h2,
.revision_confirmacion h2,
.pago h2,
.entrega_envio h2 {
  color: #00aaff;
  font-size: 17px;
  margin-top: 5px;
}
.diseño p,
.revision_confirmacion p,
.pago p,
.entrega_envio p {
  color: rgb(98, 98, 98);
  font-size: 14px;
  text-align: center;
  margin-top: 1px;
}

/* seccion de contacto */
.contenedor_info {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 600px; 
  display: flex;              
  justify-content: center;   
  align-items: center;       
}

.contenedor_contacto_cotizacion {
  width: 600px;
  height: 400px;
  display: flex;
}
.contacto_info {
    background: linear-gradient(135deg, #0abde3, #09ffff);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1000px;
}

.contacto_info h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contacto_item {
    display: flex;
    align-items: center;
    
    margin-bottom: 20px;
}

.contacto_item img {
    width: 50px;
    height: 55px;
    margin-right: 8px;
    fill: #fff;
}

.datos_contacto h2 {
  margin: 0;
  font-size: 13px;
  color: #000000;
}
.datos_contacto p {
    margin: 0;
    font-size: 14px;
    margin-top: 8px;
}

.form_cotizacion {
    background-color: #e8e8e8; /* Fondo gris claro para el formulario */
    padding: 30px;
    width: 1000px;
}

.form_cotizacion h2 {
    font-size: 40px;
    color: #000000;
    margin-bottom: 20px;
    text-align: left; /* Alinea el título a la izquierda como en la captura */
}


.form_datos {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.form_grupo {
    flex: 1;
    margin-bottom: 8px;
}
.telefon {
    margin-bottom: 12px;
}
.form_grupo input[type="text"],
.form_grupo input[type="email"],
.form_grupo input[type="tel"],
.form_grupo textarea {
    width: 200px;
    padding: 10px; /* Aumenté el padding interno */
    border: none; /* Borde gris claro */
    font-size: 14px;
    color: #bababa;
    box-sizing: border-box;
}
.form_grupo input::placeholder,
.form_grupo textarea::placeholder {
    color: #c6c6c6;
    font-size: 14px;
}
.form_grupo input[type="text"]:focus,
.form_grupo input[type="email"]:focus,
.form_grupo input[type="tel"]:focus,
.form_grupo textarea:focus {
    outline: none; /* Quita el contorno por defecto */
    border: 2px solid #0abde3; /* Solo cambia el color del borde al enfocar */
}

.form_grupo textarea {
    min-height: 80px; /* Restauré una altura un poco mayor */
    width: 410px;
}

.button_info {
  background-color: rgb(18, 18, 18);
  color: white;
  border-radius: 20px;
  padding: 15px 30px;
  display: inline-block;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: inset 0 0 0 0 #D80286;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
  border: none;
}
.slide_diagonal:hover {
  box-shadow: inset 400px 50px 0 0 #D80286;
}

.mensaje-form {
  display: none;            /* Oculto por defecto */
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
}

.mensaje-exito {
  color: #00aaff;
  text-align: center;
  font-family:Arial, sans-serif;
  font-size: 13px;
  opacity: 0.6;
}

.mensaje-error {
  color: crimson;
}

@media (max-width: 768px) {
  .contenedor_info {
    height: auto; /* Para que crezca con el contenido */
    padding: 40px;
  }

  .contenedor_contacto_cotizacion {
    flex-direction: column; /* Cambia de fila a columna */
    width: 100%;
    height: auto;
  }

  .contacto_info,
  .form_cotizacion {
    width: 100%;
    padding: 20px;
  }

  .contacto_info h2,
  .form_cotizacion h2 {
    font-size: 28px;
    text-align: center;
  }

  .contacto_item {
    flex-direction: row;
    align-items: flex-start;
  }

  .contacto_item img {
    width: 40px;
    height: 45px;
  }

  .datos_contacto h2 {
    font-size: 12px;
  }

  .datos_contacto p {
    font-size: 13px;
  }

  .form_datos {
    flex-direction: column;
    gap: 10px;
  }

  .form_grupo input[type="text"],
  .form_grupo input[type="email"],
  .form_grupo textarea {
    width: 100%;
  }

  .form_grupo textarea {
    width: 100%;
    min-height: 100px;
  }

  .button_info {
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-top: 10px;
  }
  
}


/* seccion de footer */
footer {
  width: 100%;
  padding: 10px 10px;
  background-size: cover;
  background-color: #00aaff;
  height: auto; /* El footer se ajustará a la altura de su contenido */
}

.container__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  margin-top: 10px;
}

.box__footer {
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.box__footer .logo img {
  width: 230px;
}

.box__footer .terms {
  max-width: 350px;
  margin-top: 20px;
  font-weight: 540;
  color: #09ffff;
  font-size: 18px;
}

.box__footer h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

.box__footer a {
  margin-top: 10px;
  color: #09ffff;
  font-weight: 550;
  text-decoration: none;
  transition: transform 0.2s ease-in-out; /* transición suave */
  display: inline-block; /* necesario para que transform funcione correctamente */
}

.box__footer a:hover {
  transform: scale(1.08); /* efecto de agrandado */
  opacity: 0.8;
  color: #eeeeee;
} 

.box__footer a img {
  vertical-align: middle;
  margin-right: 8px;
}


.box__footer a .fab {
  font-size: 20px;
}

.box__copyright {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 0 40px;
}

.box__copyright p {
  font-size: 14px;
  margin-top: 15px;
  color: #ffffff;
  word-spacing: 3px;
  letter-spacing: 0.5px;
}

.box__copyright hr {
  margin-top: 10px;
  border: none;
  height: 1px;
  background-color: #ffffff;
}


/* animacion de carga*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Ocultar cosas */
.ocultar {
  display: none !important;
}

.oculto {
  display: none;
}

    /* Loader animado carga */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.oculto {
  display: none;
}

    /* Loader de gotas CMYK */
.cmyk-loader {
  display: flex;
  gap: 16px;
}

.gota {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  animation: rebote 1.2s infinite ease-in-out;
}

    /* Colores CMYK */
.cyan {
  background-color: #00bfff;
  animation-delay: 0s;
}
.magenta {
  background-color: #ff00ff;
  animation-delay: 0.2s;
}
.yellow {
  background-color: #ffff00;
  animation-delay: 0.4s;
}
.black {
  background-color: #000000;
  animation-delay: 0.6s;
}

    /* Animación rebote */
@keyframes rebote {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}