/* styleGPT.css */
body {
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, #308AD9, #3BACD9); /* Gradiente de arriba a abajo */
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
   
    width: 80%; /* Igual que el hero-container */
    max-width: 1200px; /* Máximo de 1200px */
    margin: 0 auto; /* Centra el header */
}

.logo img {
    height: 50px; /* Ajusta el tamaño del logo */
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: auto;
    fill: white; /* Cambiar color del SVG a blanco */
}

.social-icon path {
    fill: white; /* Cambiar color del SVG a blanco */
}

.hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    color: white;
}

.hero-container {
    display: flex;
    width: 80%;
    max-width: 1200px;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    font-size: 1.5rem; /* Puedes ajustar el tamaño aquí */
}
 .hero-content p {
    font-size: 1rem; /* Puedes ajustar el tamaño aquí */
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/*button*/

.hero-button {
    display: inline-block;
    background-color: #4AD97C; /* Color blanco directamente */
    color: #ffffff; /* Color negro directamente */
    padding: 0.8rem 2rem;
    border-radius: .8rem;
    text-decoration: none; /* Elimina el subrayado */
    font-size: 1.2rem;

}

.hero-button:hover {
    background-color: #276825; /* Color oscuro directamente */
}


/* Sección de logos con animación */
.logos {
    padding: 6rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: white;
}

.logos-container {
    display: flex;
    gap: 2rem;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
   
}

.logo-item img {
    max-height: 100px;
    display: inline-block;
}


/* Modal */
/* Fondo del modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    color: black;
    border-radius: 8px;
    text-align: left;
    width: 300px;
    font-size: 1rem;
}

.close-btn {
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
}


/* Estilos para el formulario */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    
}

button[type="submit"] {
    background-color: #0a4986;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #083a6a;
}

/* Fin Modal */

.footer {
    width: 100%;
  
    color: #ffffff; /* Color del texto */
    text-align: center;
    padding: 10px 20px;
    font-size: 8px;
    position: relative; /* Se mantiene fijo abajo si hay poco contenido */
    bottom: 0;
}

.footer a {
    color: #ffffff; /* Color del enlace */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}


.carousel-section {
    padding: 1rem 0;
   
  }
  
  .carousel-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    
  }
  
  .carousel-container {
    position: relative;
    width: 600px;
    height: 400px;
    margin: 50px auto;
    perspective: 1000px;
  }
  
  .carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .card {
    position: absolute;
    width: 580px;
    height: 380px;
    background: #F2BC57;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,70,184,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    backface-visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
  }
  
  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,70,184,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .nav-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,70,184,0.2);
  }
  
  .prev { left: -50px; }
  .next { right: -50px; }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }


@keyframes scroll-logos {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 2rem 1rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 1;
        font-size: 1rem; /* Tamaño de fuente más pequeño para pantallas pequeñas */

    }

    .hero-image {
        order: 2;
    }

    .carousel-container {
        width: 100%;
        max-width: 400px; /* Ajusta el tamaño para móviles */
        overflow: hidden; /* Evita desbordamiento */
    }

    .card {
        width: 90%; /* Que no ocupe todo el ancho */
        max-width: 350px; /* Para evitar que sea muy grande */
        height: auto; /* Permite ajustar la altura */
        padding: 15px;
        box-sizing: border-box; /* Evita que el padding sume más ancho */
    }


    .section-title {
        font-size: 2rem; /* Reducir el tamaño del título */
    }

    .nav-button {
        width: 35px; /* Reducir el tamaño de los botones */
        height: 35px;
    }

    .prev {
        left: 10px; /* Ajusta la posición de los botones */
    }

    .next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem; /* Reducir aún más el título en pantallas muy pequeñas */
    }

    .carousel-container {
        width: 95%; /* Hacerlo más compacto */
        max-width: 320px; /* Limitar el tamaño */
    }

    .card {
        width: 90%;
        max-width: 300px; /* Reducir aún más en pantallas pequeñas */
        padding: 10px;
    }

    .nav-button {
        width: 30px; /* Hacer los botones más pequeños */
        height: 30px;
    }

    .prev {
        left: 2px; /* Traer botones más al centro */
    }

    .next {
        right: 2px;
    }
}


/* Para el panel de color */
#colorPanel {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#colorPanel label {
    font-size: 0.9rem;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
}

#colorPanel input[type="color"] {
    border: none;
    cursor: pointer;
    width: 40px;
    height: 30px;
    padding: 2px;
}