*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Oswald";
}

body{
    background:black;
}

/* NAVBAR */

nav{
    width:100%;
    height:90px;
    background:transparent;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    position:fixed;
    top:0;
    left:0;

    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
     width: 125px;
    height: 75px;
    border-radius:50%;
}

.logo h1{
    color:#ffb703;
    font-size:2rem;
}

.iconos{
    display:flex;
    gap:20px;
}

.iconos img{
    width: 70px;
    height: 35px;
    cursor:pointer;
    transition:.3s;
    filter:invert(1);
}

.iconos img:hover{
    transform:scale(1.15);
}

/* TITULO */

.titulo{
    padding-top: 2rem;
    min-height: 100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url('fondo2.jpeg');

    background-size:cover;
    background-position:center;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding-top:80px;
}

 h2{
    font-size: 90px;
    color:orange;
    margin-bottom:10px;
}

.titulo p{
    font-size:30px;
}

/* PRODUCTOS */

.contenedor-productos{
    width:100%;

    padding:70px 8%;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

/* TARJETAS */

.producto{
    background:black;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 8px 20px green;

    transition:.3s;
}

.producto:hover{
    transform:translateY(-10px);
}

.producto img{
    width:100%;
    height:100;
    object-fit:cover;
}

.info{
    padding:20px;
}

.info h3{
    font-size:1.5rem;
    color:#fb8500;
    margin-bottom:10px;
}

.info p{
    color:white;
    line-height:1.5;
    margin-bottom:15px;
}

.info span{
    display:block;

    font-size:1.4rem;
    color:orange;

    margin-bottom:18px;
}

.info button{
    width:100%;
    padding:14px;

    border:none;
    border-radius:50px;

    background:orange;
    color:white;

    font-size:1rem;
    cursor:pointer;

    transition:.3s;
}

.info button:hover{
    background:green;
}

/* MARQUESINA */

.marquesina{
    width:100%;
    padding:30px;

    background:green;

    color:white;

    font-size:25px;
}

/* FOOTER */

footer{
    width:100%;
    padding:25px;

    background:orange;
    color:white;

    text-align:center;
    font-size: 20px;
}

/* RESPONSIVE */

@media(max-width:900px){

    nav{
        padding:0 5%;
    }

    .links{
        display:none;
    }

    .titulo h2{
        font-size:30px;
    }

}

@media(max-width:600px){

    .titulo{
        height:35vh;
    }

    .titulo h2{
        font-size:2.2rem;
    }

    .titulo p{
        font-size:1rem;
    }

    .logo h1{
        font-size:1.5rem;
    }

    .iconos img{
        width:25px;
    }

}