body{

}

/* Foto */
#fotoPrincipal{
    height: 80%;
    width: 80%;
    border-radius: 20%;
}

/* Fondo */
.fondo2{
   background-color: #121212; 
}

/* Borde  Custom */
.borde-custom{
   border: 1px solid #4444; 
   transition: all 0.4s ease-in-out;
}

.borde-custom:hover{
    border-color: var(--bs-blue);
}

/* Barra Navegación */
.navbar {
    --bs-navbar-nav-link-padding-x: 1.2rem;
}

/* Botones */
.btn {
    border-radius: 0;
    padding: 10px, 20px;
}

/* Servicios */
.icon{
    width: 60px;
    height: 60px;
    background-color: #555;
    display: grid;
    align-content: center;
    text-align: center;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease-in-out;
}

.icon:hover{
    background-color: var(--bs-blue);
}

.service:hover .icon{
    background-color: var(--bs-blue);
}

/* Swiper */
.swiper-pagination-bullet{
    background-color: white;
}

/* Proyecto */
.proyecto{
    overflow: hidden;
    position: relative;
}

.proyecto .overlay{
    padding: 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(60px);
}

.proyecto:hover .overlay{
    opacity: 1;
    transform: translateY(0);
}

/* CV */
.cv img{
    width: 90px;
    border-radius: 100px;
}

/* Contacto */
#contacto .form-control{
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 0;
    padding: 10px;
    color: white;
}

/* Pie */
footer ul {
    padding: 0;
}
footer ul li {
    list-style: none;
}
a {
    text-decoration: none;
}
/* Boton Scroll Arriba */
.scroll-arriba {
    text-decoration: none;
    border-radius: 100px;
    position: fixed;
    bottom: 40px;
    right: 40px;
}
.scroll-arriba:hover {
    color: white;
}