/* CSS DE LA INTERFAZ PORTAFOLIO */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

main {
    height: 100vh;
    background: url('/img/FondoImg.jpg');
    background-size: cover;
    background-position: center;
    padding: 75px 5%;
}

a {
    text-decoration: none;
    color: #fff;
}

.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 25px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo {
    font-size: 30px;
    font-weight: 700;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    position: relative;
    list-style: none;
    margin-left: 35px;
}

.navbar ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s;
}

.navbar ul li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar ul li a {
    font-size: 20px;
    font-weight: 500;
}

.container {
    position: relative;
    height: 75vh;
    margin-top: 25px;
    background: rgba(255, 255, 255, .1);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(30px);
    transform: scale(0);
    animation: zoom-in 1s ease forwards;
}

@keyframes zoom-in {
    100% {
        transform: scale(1);
    }
}

.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 50px;
    color:#fff;
}

.home-detail h1 {
    font-size: 55px;
    line-height: 1;
}

.home-detail h2 {
    font-size: 32px;
}

.home-detail p {
    margin: 10px 0 20px;
}

.home-detail .download-social {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: .5s;
    margin-right: 10px;
}

.btn:hover {
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.home-detail .social-icons a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    transition: .5s;
}

.home-detail .social-icons a:hover {
    background: #fff;
    box-shadow: 0 0 10px #fff;
    color: #333;
}

.home-img .img-box {
    position: relative;
    width: 28vw;
    height: 28vw;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff;
    overflow: hidden;
}

.home-img .img-box img {
    position: absolute;
    top: 30px;
    display: block;
    width: 100%;
    object-fit: cover;
}

.profile {
    display:none;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:space-between;
}

.profile.active {
    display:flex;
    animation: fadeProfile .6s ease;
}

@keyframes fadeProfile {
    from {
        opacity:0;
        transform:translateX(50px);
    }

    to {

        opacity:1;
        transform:translateX(0);
    }
}

.slider-buttons {
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}


.slider-buttons button {
    width:40px;
    height:40px;
    border-radius:50%;
    border:2px solid white;
    background:transparent;
    color:white;
    cursor:pointer;
    margin:5px;
    transition:.3s;
}

.slider-buttons button:hover {
    background:white;
    color:#333;
}

/* RESPONSIVE */