/* Contenedor principal */
.container {
width: 100%;
max-width: 1100px; /* Ancho máximo para el contenido */
display: flex;
flex-direction: column;
align-items: center;
}

/* Título principal "Proyectos" */
.main-title {
font-size: 3.5rem; /* Tamaño grande para el título */
font-weight: 700;  /* Negrita */
margin-bottom: 50px; /* Espacio debajo del título */
text-align: center;
}

/* Grid para las tarjetas de proyecto */
.projects-grid {
display: flex;
justify-content: center; /* Centra las tarjetas si no ocupan todo el ancho */
gap: 35px;              /* Espacio entre las tarjetas */
flex-wrap: wrap;        /* Permite que las tarjetas pasen a la siguiente línea en pantallas pequeñas */
}

/* Estilo base para cada tarjeta de proyecto */
.project-card {
background: rgba(255, 255, 255, 0.05); /* Fondo semitransparente */
backdrop-filter: blur(10px); /* Efecto de desenfoque */
border-radius: 20px;       /* Esquinas redondeadas */
border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Sombra para profundidad */
padding: 30px;             /* Espaciado interno */
width: 300px;              /* Ancho fijo para cada tarjeta */
min-height: 380px;         /* Altura mínima para alinear tarjetas */
display: flex;
flex-direction: column;    /* Apila los elementos verticalmente */
align-items: center;       /* Centra los elementos horizontalmente */
text-align: center;        /* Centra el texto */
box-sizing: border-box;    /* Asegura que padding y border se incluyan en el width/height */
}

/* Contenedor del icono para controlar tamaño y espacio */
.card-icon-container {
height: 80px; /* Altura fija para alinear los títulos aunque el icono varíe */
margin-bottom: 20px; /* Espacio debajo del icono */
display: flex;
align-items: center;
justify-content: center;
}

/* Estilos para iconos) */
.card-icon {
position: relative;
width: 60px;
height: 60px;
}


.card-icon-img {
max-width: 100px;  /* Ajusta el tamaño según tu imagen */
max-height: 60px; /* Ajusta el tamaño según tu imagen */
object-fit: contain; /* Asegura que la imagen se vea bien */
}

/* Título de la tarjeta */
.card-title {
font-size: 1.6rem;
font-weight: 700;
margin-top: 10px; /* Espacio sobre el título */
margin-bottom: 15px; /* Espacio debajo del título */
color: white;
}

/* Descripción de la tarjeta */
.card-description {
font-size: 1rem;
line-height: 1.5; /* Espaciado entre líneas */
margin-bottom: 20px; /* Espacio debajo de la descripción */
flex-grow: 1; /* Permite que la descripción ocupe el espacio disponible */
color: white;
}

/* Enlace de flecha */
.card-link {
color: #ffffff;
text-decoration: none;
font-size: 2rem; /* Tamaño grande para la flecha */
font-weight: bold;
margin-top: auto; /* Empuja la flecha hacia abajo */
padding-top: 10px; /* Pequeño espacio sobre la flecha */
align-self: center; /* Asegura que esté centrado (aunque ya debería por la tarjeta) */
}

/* Media Query para pantallas más pequeñas (ej. móviles) */
@media (max-width: 768px) {
.main-title {
font-size: 2.5rem; /* Título más pequeño */
margin-bottom: 30px;
}
.projects-grid {
flex-direction: column; /* Apila las tarjetas verticalmente */
align-items: center; /* Centra las tarjetas apiladas */
gap: 25px;
}
.project-card {
width: 90%; /* Las tarjetas ocupan más ancho */
max-width: 350px; /* Pero no demasiado */
min-height: auto; /* Altura automática */
padding: 25px;
}
.card-title {
font-size: 1.4rem;
}
.card-description {
font-size: 0.95rem;
}
}
.wemake {
font-size: 80px;
text-align: center;
background: linear-gradient(90deg,#FFFFFF, #3bb4fc, #fc3434, #FFFFFF);
background-size: 300% 100%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: background-position 1s ease-in-out;
}


.wemake:hover, .wemake-dsign:hover, .wemake-ltl:hover, .wemake-swiftinstall:hover, .wemake-start:hover, .wemake-warp:hover {
    background-position: 0 0;
}


.wemake-dsign {
    font-family: 'Ubuntu', cursive;
    font-size: 80px;
    text-align: center;
    background: linear-gradient(90deg,#ffffff, #bf51f8, #556df9, #7460f9);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s ease-in-out;
}
.wemake-ltl {
    font-size: 80px;
    text-align: center;
    background: linear-gradient(90deg,#FFFFFF, #6bedf6, #64e4f2, #FFFFFF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s ease-in-out;
    }
.wemake-swiftinstall {
    font-size: 80px;
    text-align: center;
    background: linear-gradient(90deg,#FFFFFF, #3634fb, #5371fe, #FFFFFF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s ease-in-out;
}
.wemake-start {
    font-size: 80px;
    text-align: center;
    background: linear-gradient(90deg,#FFFFFF, #000000, #fc3434, #FFFFFF);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s ease-in-out;
}

.wemake-warp {
    font-size: 80px;
    text-align: center;
    background: linear-gradient(90deg,#f57260, #0ba2d3, #2c3c92, #c74da0);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s ease-in-out;
}
    
    
        

h2 {
text-align: center;
font-weight: 200;
}
.main-content {
    flex: 1;
}

.footer {
    background: rgba(0, 0, 0, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(15px); /* Efecto de desenfoque */
    color: #fff;
    padding: 60px 20px;  /* Increased top and bottom padding */
    min-height: 500px;   /* Added minimum height */
}

.footer-title {
    font-size: 3.5rem;  /* Increased font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px; /* Increased margin */
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #444;
    margin: 30px 0 60px;  /* Increased margins */
}

.footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    margin-right: 40px;  /* Increased margin */
    width: 280px;  /* Increased width */
    justify-content: space-between;
}

.footer-col {
    margin: 15px 0;  /* Increased margin */
    position: relative;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;  /* Increased padding */
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;  /* Increased font size */
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra para profundidad */
}

.btn:hover, .btn.active {
    background-color: #fff;
    color: #000;
}

.dropdown-container {
    position: absolute;
    top: 0;
    left: 100%;
    padding-left: 30px;  /* Increased padding */
    display: none;
    z-index: 10;
}

.footer-col:hover .dropdown-container {
    display: block;
}

.dropdown {
    display: flex;
    flex-direction: column;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;  /* Increased padding */
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;  /* Increased font size */
    margin: 15px 0;  /* Increased margin */
    min-width: 220px;  /* Increased width */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra para profundidad */
}

.dropdown-btn:hover {
    background-color: #fff;
    color: #000;
}

.arrow {
    margin-left: 15px;
    font-size: 22px;  /* Increased size */
}

.dropdown-col {
    margin-right: 30px;  /* Increased margin */
}
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 40px;
    margin-left: 0;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

.footer-logo-text {
    font-size: 16px;
    color: #ffffff;
    max-width: 200px;
    line-height: 1.4;
}
.h1init{
    text-align: center;
}
.card-container-ltl {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .card-ltl {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05); /* Fondo semitransparente */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Sombra para profundidad */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
  }

  .card-ltl:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  }

  .card-img-ltl {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    flex-shrink: 0;
  }

  .card-content-ltl {
    padding: 1.5rem;
    flex-grow: 1;
  }

  .card-title-ltl {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
  }

  .card-description-ltl {
    font-size: 1rem;
    color: #ccc;
  }

  .arrow-ltl {
    font-size: 2rem;
    margin-right: 1.5rem;
  }

    .descargar {
      margin: 0;
      color: white;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
    }

    .content-descargar {
      max-width: 50%;
    }

    .h1-descargar {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .p-descargar {
      font-size: 1.2rem;
      line-height: 1.5;
      color: #cbd5e1;
      margin-bottom: 40px;
    }

    .ol-descargar {
        font-size: 1.2rem;
        line-height: 1.5;
        color: #cbd5e1;
        margin-bottom: 40px;
      }

    .buttons {
      display: flex;
      gap: 20px;
    }

    .btn-descargar,
    .btn-codigo {
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-descargar {
      background: rgba(255, 255, 255, 0.15); /* Fondo semitransparente */
      backdrop-filter: blur(10px); /* Efecto de desenfoque */
      border: 1px solid rgba(255, 255, 255, 0.25); /* Borde sutil */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra para profundidad */
      color: white;
    }

    .btn-codigo {
      background: rgba(255, 255, 255, 0.15); /* Fondo semitransparente */
      backdrop-filter: blur(10px); /* Efecto de desenfoque */
      border: 1px solid rgba(255, 255, 255, 0.25); /* Borde sutil */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra para profundidad */
      color: white;
    }

    .btn-descargar:hover,
    .btn-codigo:hover {
      background: white;
      color: black;
      transform: scale(1.05);
    }

    .image-container {
      max-width: 45%;
    }

    .image-container img {
      width: 100%;
      border-radius: 12px;
    }

    @media (max-width: 900px) {
      body {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
      }

      .content, .image-container {
        max-width: 100%;
      }

      .image-container {
        margin-top: 30px;
      }
    }
    .card-section-instalables {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 80px;
        width: 100%;
      }
  
      .card-instalables {
        background: rgba(255, 255, 255, 0.05); /* Fondo semitransparente */
        backdrop-filter: blur(10px); /* Efecto de desenfoque */
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Sombra para profundidad */
        padding: 30px;
        text-align: center;
        max-width: 350px;
        flex: 1;
      }
  
      .card-instalables img {
        width: auto;
        height: 200px;
        margin-bottom: 20px;
      }
  
      .card-instalables h2 {
        margin: 0 0 10px;
      }
  
      .card-instalables p, .card-instalables a {
        color: #ccc;
      }

      .background-pulsar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 200vh; /* Doble altura para permitir la repetición */
        background: radial-gradient(circle at center, #4b2b5c 0%, #1a0b29 40%, #000 100%);
        z-index: -1;
        animation: scrollBackground-pulsar 20s linear infinite;
    }

    @keyframes scrollBackground-pulsar {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%); /* Desplaza hacia arriba la mitad de la altura */
        }
    }

    .container-pulsar {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        height: 100vh;
    }

    .title-container-pulsar {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .title-pulsar {
        color: white;
        font-size: 8rem;
        font-weight: bold;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .subtitle-pulsar {
        color: white;
        font-size: 2rem;
        margin-top: -1rem;
        font-weight: normal;
        opacity: 0.8;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .container-pulsar {
            flex-direction: column;
            text-align: center;
            justify-content: center;
            gap: 2rem;
        }

        .title-pulsar {
            font-size: 4rem;
        }
        
        .subtitle-pulsar {
            font-size: 1.5rem;
        }
    }
    .container-faq {
      max-width: 800px;
      margin: 60px auto;
      padding: 20px;
      background: rgba(255, 255, 255, 0.05); /* Fondo semitransparente */
      backdrop-filter: blur(10px); /* Efecto de desenfoque */
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
      box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* Sombra para profundidad */
  }
  
  .faq-container {
      background-color: transparent;
  }
  
  .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Borde sutil */
      margin-bottom: 15px;
  }
  
  .faq-item:last-child {
      border-bottom: none;
  }
  
  .faq-question {
      width: 100%;
      background-color: transparent;
      padding: 20px 0;
      font-size: 18px;
      font-weight: 300;
      cursor: pointer;
      border: none;
      text-align: left;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
      color: #ffffff;
  }
  
  .faq-question:hover {
      color: #a0a0a0;
  }
  
  .faq-question::after {
      content: '+';
      font-size: 22px;
      font-weight: 300;
      color: #ffffff;
      transition: transform 0.3s ease;
  }
  
  details[open] .faq-question::after {
      content: '−';
  }
  
  .faq-answer {
      padding: 0 0 20px 0;
      color: #a0a0a0;
      font-weight: 300;
      line-height: 1.8;
      max-width: 90%;
  }
  
  details[open] .faq-question {
      color: #ffffff;
  }
  
  @media (max-width: 768px) {
      .container {
          padding: 10px;
          margin: 20px auto;
      }
      
      .faq-question {
          font-size: 16px;
          padding: 15px 0;
      }
      
      h1 {
          font-size: 2rem;
          margin-bottom: 30px;
      }
  }
  .welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Centra horizontalmente */
    justify-content: center;  /* Centra verticalmente */
    text-align: center;       /* Centra el texto dentro de los elementos */
    height: 100%;            /* Opcional: ocupa toda la altura de la pantalla */
  }
