
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Container general */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #007bff, #6610f2);
    color: white;
    padding-bottom: 40px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu-icono {
    width: 30px;
    display: none;
}

#menu {
    display: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.dropdown {
    position: relative;
}

.list-down {
    display: none;
    position: absolute;
    background-color: white;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    top: 30px;
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .list-down {
    display: block;
}

.list-down li a {
    color: #333;
    padding: 8px 12px;
    display: block;
}

.header-content {
    text-align: center;
    padding: 40px 0;
}

.header-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.header-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.header-content a {
    background-color: white;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.header-content a:hover {
    background-color: #e2e6ea;
}

/* Main content */
main {
    padding: 40px 0;
    text-align: center;
}

main img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.metodologia-content {
    margin-top: 40px;
}

.metodologia-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

video {
    width: 100%;
    max-width: 600px;
    border: 2px dashed #ccc;
    padding: 10px;
}

/* Formulario */
section {
    background-color: #fff;
    padding: 60px 0;
}

.title h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #007bff;
}

.form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form input,
.form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}

.form button {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s;
}

.form button:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.footer h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1em;
}

.footer ul {
    list-style: none;
}

.footer a {
    text-decoration: none;
    color: #ccc;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer span {
    display: block;
    margin-top: 30px;
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        background-color: #007bff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
    }

    #menu:checked + label + .navbar ul {
        display: flex;
    }

    .menu-icono {
        display: block;
        cursor: pointer;
    }
}

.navbar ul li.dropdown {
    position: relative;
}

.navbar ul li .list-down {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: #333;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    z-index: 1000;
}

.navbar ul li .list-down li {
    padding: 8px 20px;
    white-space: nowrap;
}

.navbar ul li .list-down li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.navbar ul li.dropdown:hover .list-down {
    display: block;
}

/* Sección de integrantes */
#integrantes {
    background-color: #f0f4f8;
    padding: 60px 0;
    text-align: center;
}

.integrantes-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 40px;
}

.integrantes-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integrante-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    width: 250px;
    transition: transform 0.3s ease;
}

.integrante-card:hover {
    transform: translateY(-10px);
}

.integrante-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.integrante-card h2 {
    font-size: 1.3em;
    color: #343a40;
    margin-bottom: 5px;
}

.integrante-card p {
    color: #666;
    font-size: 0.95em;
}


.metodologia-content p {
    display: flex;
    align-items: center; /* Opcional: alinea verticalmente la imagen y el texto al centro */
}

.metodologia-content p img {
    margin-right: 15px; /* O el margen que desees */
} 

.texto-grande {
    font-size: 1.5em; /* Ajusta este valor al tamaño que desees */
}
.imagen-content img{
    max-width: 1600px;
}
iframe{
    max-width: 1000px;

}
.proyecto-content img{
    max-width: 100%;
}