/* General */
body {
    font-family: 'Kubic', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #333;
}

/* Header */
#barradenavegacion {
    background-color: #252D4F;
    top: 0;
    width: 100%;
    position: fixed; 
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    font-family: 'Kubic', sans-serif;
}


.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.2%;
}

.navbar-brand img {
    margin-right: 0.5rem;
    height: 40px;
    width: 100%;
    transition: all 0.3s;
    opacity: 1;
}

.navbar-nav .nav-link {
    font-family: 'Kubic', sans-serif;
}

.navbar-nav .nav-link:not(.btn-outline-secondary) {
    color: white;
}

.btn-light {
    color: #fffefe;
}

.btn-outline-secondary {
    color: #C7A1EB;
    border-color: #C7A1EB;
    margin-left: 8px;
    align-items: center;
}

.nav-link-button {
    width: 100%;
    height: 35px;
    padding: var(--SpacingSizeSize-2) var(--SpacingSizeSize-4) var(--SpacingSizeSize-2) var(--SpacingSizeSize-4);
    gap: var(--SpacingSizeSize-2);
    border-radius: var(--SpacingSizeSize-1);
    border: 1px 0px 0px 0px;
    opacity: 0px;
}

.nav-link-button img {
    opacity: 1;
}

img, svg {
    height: auto;
}

/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    .navbar-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 35px; /* Ajusta el tamaño del logo */
        margin-bottom: 10px; /* Añade un margen debajo del logo */
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        color: #fffefe;
    }

.navbar-nav .nav-link {
    padding: 10px;
    width: 100%;
    text-align: center;
    color: #ffffff;
}
}


/* Intro Section */
.intro {
    text-align: justify;
    padding: 50px;
    background-color: #F8F9FD;
    font-family: 'Kubic', sans-serif;
    margin-top: 40px;
}

.intro h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    color:#4A4A4A;
    font-family: 'Kubic', sans-serif;
}

.intro p {
    font-size: 1em;
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
    font-family: 'Kubic', sans-serif;
}

/* Partners */
.partners {
    display: flex;
    justify-content: center; /* o space-around, space-between según quieras */
    align-items: center;
    flex-wrap: wrap; /* permite que bajen a otra línea en pantallas chicas */
    gap: 20px; /* separación entre logos */
    padding: 30px 0;
    background-color: #252D4F;
}

.partners img {
    max-height: 100px;
}

/* About Section */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #fff;
}

.about p {
    max-width: 500px;
    font-size: 1.1em;
    text-align: justify;
    font-family: 'Kubic', sans-serif;
}

.about img {
    max-width: 100%;
}

/* ✅ Estilos para pantallas pequeñas (celulares) */
@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Imagen abajo, texto arriba */
        text-align: center;
        padding: 20px;
    }

    .about p {
        font-size: 1em;
        max-width: 100%;
        padding: 10px 0;
        font-family: 'Kubic', sans-serif;
    }

    .about img {
        width: 100%;
        height: auto;
        max-width: 300px; /* Limita el tamaño de la imagen */
        margin-top: 20px; /* Espacio entre texto e imagen */
    }
}

/* Team Section */
.team {
    background-color: #F8F9FD;
    padding: 50px 0;
    text-align: center;
    font-family: 'Kubic', sans-serif;
}

.team h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #272A49;
    font-family: 'Kubic', sans-serif;
}

.team h4{
    color: #808080;
}

.carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 350px;
    border-radius: 8px;

}

.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    font-weight: 700;
    font-family: 'Kubic', sans-serif;
}

.team-member p{
    color: #808080;
    font-family: 'Kubic', sans-serif;
}

/* Footer */
.footer{
    background-color: #fff;
    color: black;
    padding: 60px 0 0;
    font-family: 'Kubic', sans-serif;
}


/*Etiquetas h5 del footer*/
.footer h5{ 
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer p{
    margin-bottom: 15px;
}

.footer a{
    color: black;
    text-decoration: none;
}

.footer a:hover{
    color: #ccc;
}

/*Iconos de redes sociales*/
.social-icons a{
    display: inline-block;
    color: #E7214E;
    font-size: 20px;
    margin-right: 10px;
}


.footer ul{
    padding: 0;
}

.footer ul li{
    margin-bottom: 10px;
}

.btn-primary{
    background-color: #9B51E0;
    border-color: #9B51E0;
    border: none;
}

.col-md-12 a{
    color: #fff;
    margin-right: 1px;
}

.col-md-12 p{
    color: #fff;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    padding: 20px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter btn-primary {
    padding: 10px 20px;
    border: none;
    background-color: #E7214E;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}
/*Parte inferior del footer*/
.footer-bottom{
    background-color: #06213E;
    padding-bottom: 0;
    margin-top:30px;
}

.finaltext{
    background-color: #04080C;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 0;
    width: 100%;
    justify-content: space-between;
    display:flex;
}

.izquierda{
    left: 0;
    margin-left: 30px;
            margin-top: 20px;
}

.derecha{
    right: 0;
    margin-right: 30px;
        margin-top: 20px;
           
}
