body {
    font-family: 'Poppins', sans-serif;
}
.navbar {
    background-color: #ffffff;
}
.navbar-brand {
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}
.navbar-brand, .navbar-nav .nav-link {
    color: #000000;
}
.navbar-custom {
    border-bottom: 2px solid rgba(0, 0, 0, 0.3)
}
.gallery img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
.gallery img:hover {
    transform: scale(1.05);
}
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 10px;
}





















.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 50px auto;
    gap: 40px; /* Espacio entre columnas */
}

/* Imagen de perfil */
.about-image img {
    width: 250px; /* Tamaño fijo */
    height: 350px;
    border-radius: 0%; /* Hace la imagen circular */
    object-fit: cover; /* Ajusta la imagen sin deformarla */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    filter: grayscale(100%); /* Convierte la imagen a blanco y negro */
    transition: filter 0.5s ease-in-out; /* Transición suave */
}

.about-image img:hover {
    filter: grayscale(0%); /* Vuelve a su color original al pasar el mouse */
}

/* Texto */
.about-text {
    max-width: 500px;
}

.about-text h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
}

/* Diseño responsive */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column; /* En móviles, las columnas se apilan */
        text-align: center;
    }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}

.social-links img {
    width: 30px;
    margin: 0 10px;
}



@media (max-width: 768px) {
    .navbar-collapse {
        background-color: white;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        color: black;
        text-align: center;
        padding: 10px 0;
    }
}


/* Efecto máquina de escribir */
.escribir {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid black;
    width: 0;
    animation: escribir 5s steps(40) infinite;
}

@keyframes escribir {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}


.bold {
    font-weight: bold;
}


html, body {
    height: 100%; /* Asegura que la altura de la página cubra toda la pantalla */
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    margin-top: auto; /* Empuja el footer hacia abajo */
}




/* Carrusel de logos */


.media-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 75%; /* ajusta el ancho del carrusel */
    margin: 0 auto;  /* centrado */
}


/* Carrusel que se mueve */
.media-marquee {
    display: flex;
    gap: 2rem;
    animation: scroll-left 25s linear infinite;
    align-items: center;
    will-change: transform;
}

.media-track {
    display: flex;
    gap: 2rem;
}

.media-track img {
    height: 50px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

.media-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Animación infinita */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausa la animación cuando pasas el mouse */
.media-marquee-wrapper:hover .media-marquee {
    animation-play-state: paused;
}

/* Cards de prensa */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* AOS override para mejor fluidez */
[data-aos] {
    transition-duration: 0.6s !important;
    transition-timing-function: ease-out !important;
}
