/* StreetStyle - style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0a0a0a;
}

::-webkit-scrollbar-thumb{
    background:#facc15;
    border-radius:10px;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 8%;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(15px);
    border-bottom:1px solid #1a1a1a;
    z-index:999;
}

.logo img{
    width:80px;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.05);
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    color:#fff;
    font-weight:600;
    position:relative;
    transition:.3s;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#facc15;
    transition:.3s;
}

nav a:hover{
    color:#facc15;
}

nav a:hover::after{
    width:100%;
}

.insta-btn{
    background:#facc15;
    color:#000;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
}

/* HERO */

.hero{
    min-height:75vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.9)),
    url("StreetStyle.jpeg");
    background-size:cover;
    background-position:center;
}

.hero-text{
    max-width:700px;
}

.hero h1{
    font-size:60px;
    font-weight:900;
    line-height:1.1;
}

.hero h1 span{
    color:#facc15;
}

.hero p{
    font-size:18px;
    color:#d1d5db;
    margin:20px 0 30px;
    line-height:1.7;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons a{
    background:#facc15;
    color:#000;
    padding:14px 25px;
    border-radius:12px;
    font-weight:700;
}

.secondary-btn{
    background:transparent !important;
    color:#fff !important;
    border:2px solid #facc15;
}

/* SEÇÕES */

section{
    padding:50px 8%;
}

section h2{
    text-align:center;
    color:#facc15;
    font-size:38px;
    margin-bottom:25px;
}

.about{
    background:#050505;
}

.about-text{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.about-text p{
    color:#c9c9c9;
    line-height:1.8;
}

.cards{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card,
.catalog-card,
.contact-card,
.product{
    background:#111;
    border:1px solid #222;
    border-radius:20px;
    transition:.3s;
}

.card:hover,
.catalog-card:hover,
.contact-card:hover,
.product:hover{
    transform:translateY(-5px);
    border-color:#facc15;
}

.card{
    padding:25px;
    text-align:center;
}

.card i{
    color:#facc15;
    font-size:40px;
    margin-bottom:15px;
}

/* PRODUTOS */

.product-grid,
.catalog-grid,
.contact-grid,
.lookbook-grid{
    display:grid;
    gap:20px;
}

.product-grid,
.catalog-grid{
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.product img,
.catalog-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.catalog{
    padding:30px 8% 50px;
}

.catalog-card{
    overflow:hidden;
}

.catalog-card h3{
    padding:15px;
}

.catalog-card span{
    display:block;
    padding:0 15px;
    color:#facc15;
    font-size:22px;
    font-weight:700;
}

.catalog-card a{
    display:block;
    margin:15px;
    text-align:center;
    padding:12px;
    border-radius:10px;
    background:#facc15;
    color:#000;
    font-weight:700;
}

/* LOOKBOOK */

.lookbook-section{
    padding:30px 8% 50px;
}

.lookbook-grid{
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

.look-item{
    overflow:hidden;
    border-radius:20px;
    border:1px solid #222;
}

.look-item img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.5s;
}

.look-item:hover img{
    transform:scale(1.08);
}

/* PÁGINAS */

.page{
    min-height:auto;
    padding-top:120px;
}

.page h1{
    text-align:center;
    color:#facc15;
    font-size:45px;
}

.page p{
    max-width:900px;
    margin:15px auto;
    text-align:center;
    color:#d1d5db;
    line-height:1.8;
}

/* CONTATO */

.contact-section{
    padding:30px 8% 50px;
}

.contact-card{
    padding:30px;
    text-align:center;
}

.contact-card i{
    color:#facc15;
    font-size:45px;
    margin-bottom:15px;
}

.contact-card a{
    display:inline-block;
    padding:12px 20px;
    border-radius:10px;
    background:#facc15;
    color:#000;
    font-weight:700;
}

.contact-form-section{
    padding:0 8% 50px;
}

.contact-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    background:#111;
    color:#fff;
    border:1px solid #222;
    border-radius:12px;
    padding:15px;
}

.contact-form button{
    background:#facc15;
    color:#000;
    border:none;
    border-radius:12px;
    padding:15px;
    font-weight:700;
    cursor:pointer;
}

/* CTA */

.cta{
    text-align:center;
    background:#050505;
}

.cta h2{
    font-size:40px;
    margin-bottom:25px;
}

.cta a{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:#facc15;
    color:#000;
    padding:15px 25px;
    border-radius:12px;
    font-weight:700;
}

/* FOOTER */

footer{
    text-align:center;
    padding:20px;
    color:#888;
    border-top:1px solid #1a1a1a;
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    z-index:9999;
}

/* RESPONSIVO */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:12px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .page h1{
        font-size:35px;
    }

    section h2{
        font-size:30px;
    }

}

@media(max-width:500px){

    .hero h1{
        font-size:32px;
    }

    .logo img{
        width:70px;
    }

}