/* Barra de navegacion */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem;
    background-color: #f5f6f7;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-collapse {
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-brand img {
    transition: all 1s ease;
}

.navbar .navbar-brand img:hover {
    transform: scale(1.1);
}

.navbar .nav-link.navegador-item {
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
}

.navbar .nav-item {
    margin-left: 20px;
}

.navbar .nav-link.navegador-item:hover {
    transform: scale(1.1);
}

/* Seccion Hero */
.hero {
    background-color: #f5f6f7;
    min-height: 100px;
    text-align: center;
}

.hero-principal {
    padding: 0 3rem 1rem 3rem;
    margin-top: 130px;

}

.hero-imagen-dev {
    width: 300;
    height: 300px;
    border-radius: 50%;
    margin: 0 20px 20px 20px;
}

.hero-principal h2 {
    font-size: 1.5rem;
    color: #615151;
}

.hero-inferior {
    gap: 10px;
}

.descarga-cv button {
    color: #1b1b32;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #1b1b32;
    padding: 1.25em 2em;
    margin: 10px;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.descarga-cv button:hover {
    background-color: #1b1b32;
    color: white;
}

.descarga-cv button i {
    color: #1b1b32;
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;
}

.descarga-cv button:hover i {
    color: white;
}

.encuentrame-en {
    padding-bottom: 5px;
}
.encuentrame-en a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid #1b1b32;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}

.encuentrame-en i {
    color: #1b1b32;
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
}

.encuentrame-en a:hover {
    background-color: #1b1b32;
    border: 2px solid rgb(13, 110, 253);
}

.encuentrame-en a:hover i {
    color:  white;
}



/* Sobre mi */
.sobre-mi {
    height: 500px;
    padding: 10px;
}

.sobre-mi .contenedor {
    max-width: 600px;
    text-align: center;
}

/* Experiencia */
.experiencia {
    padding: 40px 40px 60px 40px;
}

.experiencia .columna {
    padding: 20px;
    border: 2px solid #8080804d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: all 0.2s ease-in;
    border-radius: 5%;
}

.experiencia .columna:hover {
    color: white;
    background-color: #1b1b32;
}

.experiencia-titulo {
    font-size: 25px;
    font-weight: bold;
    margin: 10px 0;
}

.badges-contenedor {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.badge {
    margin: 5px;
}

.experiencia i {
    font-size: 2.5rem;
    color: white;
    background-color: #0a0a23;
    padding: 8px 19px;
    border-radius: 50%;
}

/* Tecnologias que uso*/
.tecnologias-que-uso h2{
    margin-top: 4rem;
}

.tecnologias-fila-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.tecnologias-fila-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.tecnologias-que-uso .contenedor-img {
    height: 120px;
    width: 120px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    margin: 10px;
    transition: background-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.tecnologias-que-uso .contenedor-img:hover{
    box-shadow: 0 0 15px rgb(13, 110, 253);
    background-color: white;
}

.tecnologias-que-uso img {
    height: auto;
    width: 80%;
    padding: 0.5rem;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
    
}

.tecnologias-que-uso img:hover {
    transform: scale(1.1);
}

/* Proyectos*/
.proyectos-recientes {
    padding: 40px;
    margin-bottom: 70px;
    
}

.proyectos-recientes img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: all 0.2s ease;
}

.proyectos-contenedor {
    padding-top: 60px;
    padding-bottom: 40px;
}

.overlay {
    transition: all 0.2s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.overlay p{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 0;
}

.proyecto {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.proyecto:hover img {
    opacity: 0.2;
    transform: scale(1.1);
}

.proyecto:hover .overlay {
    opacity: 1;
}

.overlay .iconos-contenerdor {
    display: flex;
}

.overlay i{
    color: black;
    font-size: 60px;
    margin: 10px;
}

/* Contacto */
.contacto .container {
    max-width: 1100px;
    min-width: 200px;
    padding: 20px;
}

.contacto .rectangulo {
    margin-top: -5rem;
    background-color: rgb(13, 110, 253);
    border-radius: 10px;
    box-shadow: 0px 1px 4px 1px white;
}

.contacto .row {
    width: 100%;
    display: flex;
    align-items: center;
}

.contacto .descripcion {
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.contacto button {
    color: white;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid white;
    padding: 1.25em 2em;
    margin: 10px;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.contacto button:hover {
    background-color: white;
    color: black;
}

.contacto button i {
    color: white;
    font-size: 1.3rem;
    transition: all 0.2s ease-in-out;
}

.contacto button:hover i {
    color: black;
}

/* Footer */
.footer {
    min-height: 500px;
}

.footer-logo {
    height: 80px;
    width: 80px;
    margin: 10px;
}

.footer-texto {
    font-size: 1.5rem;
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.iconos-redes-sociales a{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    margin: 10px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s ease-in;
}

.iconos-redes-sociales i {
    color: white;
    font-size: 1.5rem;
    transition: all 0.2s ease-in;
}

.iconos-redes-sociales a:hover {
    background-color: white;
    border: 2px solid rgb(13, 110, 253);
}

.iconos-redes-sociales a:hover i {
    color:  black;
}

.derechos-de-autor {
    font-size: 15px;
    color: #aeaeae;
    padding: 20px;
}

/* Estilos Generales */
section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1{
    font-size: 2.5rem;
    font-family: "Rubik Dirt", cursive;
}

.seccion-oscura {
    color: white;
    background-color: #1b1b32;
}

.seccion-clara {
    color: black;
    background-color: white;
}

.seccion-titulo {
    font-size: 2rem;
    padding: 15px 0;
    font-family: 'Rubik Dirt' , cursive;
}

.seccion-descripcion {
    font-size: 1.2rem;
    color: #584e4e;
}

.seccion-texto {
    font-size: 1.2rem;
}

.btn-info {
    font-size: 1.1rem;
    margin: 20px;

}

.texto-negro {
    color: black;
}

.texto-blanco {
    color: white;
}





/* Adaptable (Responsive) */

@media screen and (max-width: 767px){
    .navbar-brand {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .overlay p {
        font-size: 18px;
    }

    .overlay i {
        font-size: 40px;
    }
}