@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    
    background: black;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
}

body {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}



.NavBar {
    position: fixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    height: 80px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 50;
}

.NavBar-a1 {
    font-size: 16px;
    max-width: 1280px;
    padding-left: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 32px;
    background: none;
}

.NavBar-a2 {
    display: flex;
    align-items: center;
    gap: 40px;
    background: none;

}

.NavBar-button {
    color: white;
    line-height: 1.5rem;
    text-decoration: none;
    background: none;
}

.NavBar-button-comprar {
    font-weight: 400;
    font-size: 16px;
    background: #2563eb;
    color: white;
    padding: 12px 30px 12px 30px;
    border-radius: 100px;
}

.NavBar-button:hover {
    color: #d1d5db;
}

.NavBar-button-comprar:hover {
    background: #1d4ed8;
}

.hero {
    position: relative;
    margin-top: -10px;
    right: 0px;
    left: 0px;
    z-index: 0;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 1;
}

.gradient-hero {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0.3), rgba(0, 0, 0, 0.05), transparent);
    height: 100%;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;

}

.fa-solid-fa-arrow-down {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 32px;
    z-index: 10;
    
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }
    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}

.fa-solid-fa-arrow-down {
    animation: bounce 1s infinite;
}

.intro {
    width: 100%;
    margin: 100px auto 45px;
    max-width: 1024px;
    text-align: center;
    color: white;
}

.intro h1 {
    font-size: 95px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.p-intro {
    font-size: 35.75px;
    margin-bottom: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(37 99 235) 0%, rgb(249 115 22) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-intro-b {
    width: max-content;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: #d1d5db;
    white-space: nowrap;
}

.button-info {
    display: flex;
    flex-direction: row;
    gap: 16px; 
    justify-content: center;
    align-items: center;
    margin-bottom: 64px;
}

.button-compre-agora {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.5);
    transition: transform 0.3s ease;
    transform: scale(1);
    cursor: pointer;
}

.button-compre-agora:hover {
    background: #1d4ed8;
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.button-saiba-mais {
    color: white;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    border-radius: 100px;
    padding: 16px 32px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    transition: transform 0.3s ease;
    transform: scale(1);
    cursor: pointer;
}

.button-saiba-mais:hover {
    color: black;
    background: white;
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.coitainer-principal {
    background-color: blue;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column: 2;
    gap: 24px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
}

#lista-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: black;
    padding: 20px;
    margin: 40px;
}

.card-info {
    background: #111827;
    color: white;
    padding: 20px;
    border-radius: 15px;
    min-width: 180px;
    font-family: sans-serif;
    transition: transform 0.3s ease;
    transform: scale(1);
    cursor: pointer;
}

.h1-card {
    font-size: 40px;
    background: none;
    margin: 10px;
}

.p-card {
    font-size: 22px;
    background: none;
    margin: 10px;
}

.card-info:hover {
    background: #1f2937;
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero {
        position: absolute;
        margin-top: 60px;
    }

    .hero img {
        object-fit: cover;
    }

    .intro {
    width: 100%;
    margin: -600px auto 45px;
    
}

.intro h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.p-intro {
    font-size: 16px;
    margin-bottom: 18px;
}

.p-intro-b {
    width: 100%;
    margin: 0;
    font-size: 14px;
    white-space: normal;
}

.button-info {
    display: flex;
    flex-direction: row;
    gap: 16px; 
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

.button-compre-agora {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 28px;
}

.button-saiba-mais {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 28px;

}

#lista-info {
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .h1-card {
    font-size: 25px;
    background: none;
    margin: 10px;
}

.p-card {
    font-size: 15px;
    background: none;
    margin: 10px;
}

};