/* Estilo general */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    overflow-x: hidden; /* Evita desplazamiento horizontal */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Canvas for stars */
#stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Asegura que las estrellas estén detrás */
}

/* Ajustar el canvas de las partículas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Asegura que las partículas estén delante de las estrellas */
}

header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

header {
   
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    height: 100vh; /* Ajustar a toda la altura de la pantalla, si deseas centrar verticalmente */
}

.logo {
    width: 100%;
    max-width: 150px; /* Tamaño para PC */
    margin: 0 auto; /* Centra el logo en el contenedor */
}

@media (max-width: 768px) { /* Para teléfonos */
    .logo {
        max-width: 100px; /* Tamaño para móviles */
    }
}

.content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.text-content {
    color: white;
    text-align: center;
    z-index: 1; /* Para asegurarse de que el texto esté sobre el canvas */
}

.text-content h1 {
    font-size: 2.9rem;
    margin: 0;
    line-height: 1.2;
}

.text-content p {
    font-size: 1.5rem;
    margin-top: 20px;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;

    overflow: hidden; /* Evita el desbordamiento horizontal */
}

/* Sección de servicios */
.services {
    background-color: #000000;
  
    text-align: center;
    color: white;
    width: 100%;
}

/* Contenedor de los servicios */
.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px; /* Espaciado entre los servicios */
}

/* Cada servicio */
.service {
    background-color: #1c1c1c; /* Color de fondo para cada servicio */
    padding: 20px;
    border-radius: 10px;
    width: 30%; /* Aproximadamente 3 servicios por fila en pantallas grandes */
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Iconos dentro de los servicios */
.icon {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service p {
    font-size: 1.2rem;
}

/* Responsividad para pantallas grandes (laptops, desktops) */
@media (min-width: 1024px) {
    .service {
        width: 30%; /* 3 servicios por fila */
    }

    .service-container {
        justify-content: space-between;
    }
}

/* Responsividad para tabletas */
@media (max-width: 1024px) {
    .service {
        width: 45%; /* 2 servicios por fila en tabletas */
    }
}

/* Responsividad para teléfonos móviles */
@media (max-width: 768px) {
    .service {
        width: 100%; /* 1 servicio por fila en teléfonos móviles */
        margin-bottom: 20px; /* Espacio adicional entre los servicios */
    }

    .services h2 {
        font-size: 2.5rem; /* Texto más grande para títulos en móviles */
    }

    .service h3 {
        font-size: 1.5rem; /* Ajustar el tamaño de los títulos */
    }

    .service p {
        font-size: 1rem; /* Ajustar el tamaño del texto */
    }
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    margin: 20px;
    width: 200px;
    text-align: center;
}

.icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 1.5rem;
}

.service p {
    font-size: 1rem;
}

/* Responsividad */
@media (max-width: 768px) {
    .text-content h1 {
        font-size: 2rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .services h2 {
        font-size: 2rem;
    }

    .service {
        width: 100%;
        margin: 20px 10px; /* Margen ajustado para que no quede tan pegado a los bordes */
    }


}













/* Añadir la animación de desvanecimiento */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Comienza ligeramente por debajo */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* Se posiciona en su lugar final */
    }
  }
  
  /* Añadir animación a los servicios */
  .service {
    opacity: 0; /* Comienza invisible */
    transform: translateY(20px); /* Comienza ligeramente por debajo */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .service.in-view {
    opacity: 1; /* Aparece */
    transform: translateY(0); /* Vuelve a su posición */
    animation: fadeInUp 0.8s ease-out; /* Efecto de entrada */
  }
  
  /* Ajustar también el título */
  .services h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .services h2.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
  }
  






  /* Añadir la animación de desvanecimiento */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px); /* Comienza ligeramente por debajo */
    }
    100% {
      opacity: 1;
      transform: translateY(0); /* Se posiciona en su lugar final */
    }
  }
  
  /* Añadir animación a los servicios */
  .service {
    opacity: 0; /* Comienza invisible */
    transform: translateY(20px); /* Comienza ligeramente por debajo */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .service.in-view {
    opacity: 1; /* Aparece */
    transform: translateY(0); /* Vuelve a su posición */
    animation: fadeInUp 0.8s ease-out; /* Efecto de entrada */
  }
  
  /* Ajustar también el título */
  .services h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .services h2.in-view {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
  }

  













/* Sección de Lo que incluye nuestro servicio */
.features {
    background-color: #000000; /* Fondo negro */
    padding: 50px 20px;
    text-align: center;
    color: #ffffff; /* Texto blanco */
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Tres columnas */
    gap: 20px; /* Espaciado entre los elementos */
}

.feature-item {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px); /* Empieza fuera de la vista */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0); /* Aparece en su lugar */
    animation: twisterInUp 1.5s ease forwards;
}


.feature-item:hover {
    transform: scale(1.05) rotate(0deg); /* Efecto de agrandamiento suave en hover */
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 255, 0.8)); /* Efecto glow dinámico */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.5); /* Sombra más fuerte */
    background-color: #292929; /* Cambia a un gris más claro */
}

.checkmark {
    color: #00ff00; /* Color verde para el checkmark */
    margin-right: 10px;
    font-size: 1.2rem; /* Aumenta el tamaño del checkmark */
}

/* Nueva animación flipBounceIn para una entrada más impactante */
@keyframes flipBounceIn {
    0% {
        opacity: 0;
        transform: rotateX(90deg) translateY(-50px) scale(0.8); /* Giro inicial y fuera de la pantalla */
    }
    50% {
        opacity: 0.5;
        transform: rotateX(20deg) translateY(0) scale(1.05); /* Rebota y se agranda levemente */
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) translateY(0) scale(1); /* Regresa a su tamaño normal */
    }
}

/* Hacer el diseño responsive */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en pantallas más pequeñas */
    }
}

@media (max-width: 480px) {
    .feature-list {
        grid-template-columns: 1fr; /* Una columna en pantallas muy pequeñas */
    }
}

























.process {
    background-color: #000; /* Fondo negro */
    color: #fff; /* Texto en blanco */
    padding: 50px 20px;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.process p {
    font-size: 1.2rem;
    color: #ddd; /* Texto secundario en un tono más claro */
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap; /* Asegura que todo quede en una fila */
    gap: 20px;
}

.step {
    background-color: #222; /* Fondo oscuro para los pasos */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 30%; /* Ancho para que quede en una fila */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.step-icon {
    width:250px; /* Tamaño ajustado para los íconos */
    height: 200px; /* Tamaño ajustado para los íconos */
    margin-bottom: 15px;
    opacity: 0; /* Íconos invisibles por defecto */
    transition: opacity 1s ease-out, transform 0.7s ease-out;
}

.step h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.step p {
    font-size: 1rem;
    color: #ccc; /* Texto descriptivo en gris claro */
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    background-color: #3399ff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3399ff;
}

/* Keyframes para vanishIn (de Magic Animations) */
@keyframes foolishIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Medios responsivos para pantallas más pequeñas */
@media screen and (max-width: 900px) {
    .process-steps {
        flex-wrap: wrap; /* Permite que se ajusten en pantallas pequeñas */
    }

    .step {
        width: 100%; /* Cada paso tomará el 100% del ancho en pantallas pequeñas */
    }
}


.step-icon {
    opacity: 0; /* Íconos invisibles por defecto */
    transition: opacity 1s ease-out, transform 0.7s ease-out;
}

.step-icon.foolishIn {
    opacity: 1;
    animation: foolishIn 1s ease both; /* Activa la animación foolishIn */
}

/* Animación foolishIn (de Magic Animations) */
@keyframes foolishIn {
    0% {
        opacity: 0;
        transform: rotateY(90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}










































.pricing {
    background-color: #000; /* Fondo negro */
    color: #fff; /* Texto en blanco */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Oculta las partículas fuera de la sección */
}

/* Fondo de estrellas que se mueven */
.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/particles.png') repeat; /* Cambia esto a la ruta de tu imagen de estrellas */
    opacity: 0.5;
    z-index: 0; /* Envuelve las estrellas detrás del contenido */
    animation: moveStars 30s linear infinite; /* Animación de movimiento */
}

/* Efecto de movimiento de estrellas */
@keyframes moveStars {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1; /* Asegura que el texto esté por encima de las estrellas */
}

.pricing p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1; /* Asegura que el texto esté por encima de las estrellas */
}

.pricing-tables {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1; /* Asegura que las tablas estén por encima de las estrellas */
}

/* Mantiene la consistencia de tamaño entre las tablas */
.pricing-item {
    background-color: #222;
    border-radius: 10px;
    padding: 30px;
    width: 22%; /* Asegura que todas las tablas tengan el mismo tamaño */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Alinea el contenido dentro de cada tabla */
}
/* Bordes de colores neón para cada servicio */
.pricing-item.design {
    border: 2px solid #ff4c4c; /* Color neón rojo */
    box-shadow: 0 0 20px #ff4c4c; /* Efecto neón */
}

.pricing-item.development {
    border: 2px solid #4c8cff; /* Color neón azul */
    box-shadow: 0 0 20px #4c8cff; /* Efecto neón */
}

.pricing-item.landing {
    border: 2px solid #4cff4c; /* Color neón verde */
    box-shadow: 0 0 20px #4cff4c; /* Efecto neón */
}

.pricing-item.one-page {
    border: 2px solid #fffc4c; /* Color neón amarillo */
    box-shadow: 0 0 20px #fffc4c; /* Efecto neón */
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #2c76ff; /* Cambia este color si deseas otro para el precio */
}
.priceyellow {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffd000; /* Cambia este color si deseas otro para el precio */
}
.pricered {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff000077; /* Cambia este color si deseas otro para el precio */
}

.pricegreen {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #25b90877; /* Cambia este color si deseas otro para el precio */
}



ff000077
ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

ul li {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

ul li:last-child {
    border-bottom: none;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2c76ff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2c76ff;
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .pricing-item {
        width: 45%;
    }
}

@media screen and (max-width: 600px) {
    .pricing-item {
        width: 100%;
    }
}

.cta-buttonyellow {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffd00077;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttonred {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff000077;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttongreen {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25b90877;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Asegura que esté detrás del contenido */
}

/* Asegúrate de que la sección de precios esté en posición relativa */
.pricing {
    position: relative;
    overflow: hidden; /* Oculta las partículas que salgan del área */
    background-color: #000; /* Fondo negro */
    color: #fff; /* Texto en blanco */
    padding: 50px 20px;
}



/* Estilos para las dos columnas */
/* Alineación de las dos columnas: tabla de Desarrollo Web y GIF */
.two-column-layout {
    display: flex;
    justify-content: space-evenly;
    align-items: center; /* Alinea verticalmente la tabla de precios y el GIF */
    gap: 20px;
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
    margin-top: 20px; /* Ajusta el espacio entre esta sección y las demás tablas */
    flex-wrap: wrap;

}

/* Asegura que Desarrollo Web tenga el mismo tamaño que las otras tablas */
.pricing-item.development {
    width: 22%; /* Igual tamaño que las otras tablas */
    margin: 0; /* Evita desalineación con márgenes */
}

.pricing-right {
    width: 35%; /* Ajusta el tamaño de la columna derecha */
    text-align: center;
}

/* Ajustes para el GIF */
.pricing-gif {
    max-width: 100%;
    border-radius: 10px;
}

.price-note {
    margin-top: 10px;
    font-size: 1rem;
    color: #fff;
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    .pricing-item {
        width: 100%; /* Asegura que las tablas ocupen todo el ancho */
    }

    .development-container {
        display: flex;
        flex-direction: column; /* Hace que los elementos se apilen verticalmente */
    }

    .pricing-item.development {
        margin-bottom: 20px; /* Añade espacio inferior */
        width: 100%; /* Asegura que el ancho se ajuste en móviles */
    }

    .gif-text {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .pricing-item {
        width: 100%; /* Mantén el ancho del 100% para pantallas aún más pequeñas */
    }

    .gif-text {
        margin-top: 20px; /* Añade margen superior para separar el GIF y el texto de la tabla */
    }
}



















/* Preguntas*/

.faq-section {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.faq-left {
    flex: 1;
    padding-right: 20px;
}

.faq-right {
    flex: 1;
    position: relative;
    height: 100px;
}

#city-particles {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-question {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    border-radius: 10px;
}

.faq-question:hover {
    background-color: #333;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 100px;
    opacity: 1;
    animation: boingInUp 0.5s ease-in-out;
}

@keyframes boingInUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-right {
        display: none; /* Oculta la animación en dispositivos móviles */
    }

    .faq-left {
        padding-right: 0;
    }
}


/* Contenedor principal para el formulario e imagen */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Estilo para el formulario */
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

/* Estilo para la imagen */
.contact-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin-left: 20px;
}

/* Ajustes específicos para la imagen */
.contact-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsividad: Ocultar la imagen en dispositivos móviles */
@media only screen and (max-width: 768px) {
    .contact-image {
        display: none;
    }
}

/* Espaciado y ajustes adicionales */
.contact-form-wrapper h2 {
    margin-bottom: 10px;
}

.contact-form-wrapper p {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.submit-button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #0056b3;
}

/*Footer*/
.footer {
    background-color: #222; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 800px; /* Máximo ancho del contenido */
    margin: 0 auto; /* Centrar el contenido */
}

.footer p {
    margin: 0;
}

.social-links {
    margin-top: 10px; /* Espacio entre el texto y los enlaces */
}

.social-links a {
    color: #2c76ff; /* Color de los enlaces */
    margin: 0 10px; /* Espaciado entre los enlaces */
    text-decoration: none; /* Sin subrayado */
    transition: color 0.3s ease; /* Efecto de transición para el color */
}

.social-links a:hover {
    color: #2c76ff; /* Color de los enlaces al pasar el mouse */
}



















/* Contacto*/

.contact-section {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff4c4c; /* Color de enfoque */
    outline: none;
}

.submit-button {
    padding: 10px 20px;
    background-color: #2c76ff;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e03c3c;
}

@media screen and (max-width: 600px) {
    .contact-form {
        width: 90%;
    }
}
