@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
}

body {
    background: black;
    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.75);
    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;
}

.NavBar-Mobile {
    position: fixed;
    top: 0;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(30px);
    z-index: 1000;
}

.logo-mobile {
    width: 20px;
    margin: 10px -3px;
}

.menu-btn,
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

#menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(41, 41, 41, 0.95);
    backdrop-filter: blur(30px);

    display: flex;
    flex-direction: column;
    padding: 24px;


    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2000;
}

#menuOverlay.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-btn {
    margin: 10px 0px;
}

.close-btn {
    align-self: flex-end;
    font-size: 26px;
    margin-top: -5px;
    margin-right: -5px;
    padding-right: 10px;
    padding-left: 10px;
}

.close-btn:hover {
    background-color: red;
    border-radius: 175px;

}

.menu-links {
    background: none;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-links a {
    background: none;
    margin-left: 40px;
    margin-bottom: 30px;
    color: white;
    font-size: 28px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    transition-delay: 0s;
}

.menu-links a:hover {
    color: #d1d5db;
}

.NavBar-btn-div {
    display: flex;
    justify-content: center;
}



#menuOverlay.active .menu-links a {
    opacity: 1;
    transform: translateY(0);
}

#menuOverlay.active .menu-links a:nth-child(1) {
    transition-delay: 0.2s;
}

#menuOverlay.active .menu-links a:nth-child(2) {
    transition-delay: 0.4s;
}

#menuOverlay.active .menu-links a:nth-child(3) {
    transition-delay: 0.6s;
}

#menuOverlay.active .menu-links a:nth-child(4) {
    transition-delay: 0.8s;
}



@media (min-width: 769px) {

    .NavBar-Mobile,
    .menu-overlay {
        display: none;
    }
}

.hero {
    position: relative;
    margin-top: 25px;
    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: 80px 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 {
    padding-right: 20px;
    padding-left: 20px;
    margin: 0 auto;
    text-align: center;
    line-height: 25px;
    font-size: 18px;
    color: #d1d5db;
    max-width: 100ch;
    margin-inline: auto;
    overflow-wrap: break-word;
}

.button-info {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.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;
    background: black;
    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;
    width: 100%;
    max-width: 1024px;
    margin-inline: auto;
}

.grid-cards {
    display: grid;
    width: 100%;
    height: auto;
    gap: 32px;
}

#lista-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    background: black;
    padding: 20px 100px 0px 100px;
}


.card-info {
    background: #111827;
    color: white;
    padding: 20px;
    border-radius: 15px;
    flex: 1;
    min-width: 0;

    opacity: 0;
    transform: translateY(50px) scale(0.98);

    transition:
        opacity 0.7s ease,
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: opacity, transform;
}

.card-info.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.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);
}

.section-Highlights {
    background: black;
    padding: 50px 24px 80px 24px;
}

.div-Highlights {
    text-align: center;
    margin-bottom: 64px;
}

.h2-Highlights {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.p-Highlights {
    color: #9CA3AF;
    font-size: 20px;
}

.div-a1-Highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    height: auto;
    gap: 32px;
    margin-bottom: 64px;
}

.div-a2-Highlights {
    background: #111827;
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.div-a2-Highlights:hover {
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05)
}

.h3-Highlights {
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 30px;
}

.p-a1-Highlights {
    color: #D1D5DB;
}

.div-a3-Highlights {
    background: #111827;
    border-radius: 24px;
    padding: 48px;
    margin-bottom: 64px;
    transition: transform 0.3s ease;
    transform: scale(1);
}

.div-a3-Highlights:hover {
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.h3-a1-Highlights {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgb(37 99 235) 0%, rgb(249 115 22) 17%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-a2-Highlights {
    color: #D1D5DB;
    margin-bottom: 24px;
}

.ul-Highlights {
    color: #D1D5DB;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.div-a4-Highlights {
    background: black;

}

.div-a5-Highlights {
    text-align: center;
    margin-bottom: 64px;
}

.container-principal-a1 {
    text-align: center;
    background-color: black;
    width: 100%;
    max-width: 1024px;
    margin-inline: auto;
}

.h2-a1-Highlights {
    font-size: 40px;
    color: white;
    font-weight: bold;
    margin-top: -10px;
    margin-bottom: 30px;
}

.camera-info {
    background: #111827;
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
    transform: scale(1);

    opacity: 0;
    transform: translateY(50px) scale(0.98);

    transition:
        opacity 0.7s ease,
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: opacity, transform;
}

.camera-info.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.grid-cards-camera {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.camera-info:hover {
    background: #1f2937;
    transition: all;
    transition: transform 0.3s ease;
    transform: scale(1.05);
}

.h1-card-camera {
    font-size: 30px;
    font-weight: bold;
}

.h3-card-camera {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.p-card-camera {
    color: #9ca3af;
    font-size: 16px;
    font-weight: lighter;
}

@media (max-width: 768px) {

    .NavBar,
    .menu-overlay {
        display: none;
    }

    .hero {
        margin-top: 15%;
        padding: 20px;
    }

    .hero img {
        content: url(hero-mobile.jpg);
    }

    .gradient-hero {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 100%);
        margin-top: -2%;
    }

    section {
        min-height: auto;
        display: flex;
        justify-content: center;

    }

    .intro {

        margin: 50px auto 40px;
        max-width: 1024px;
        text-align: center;
        color: white;
    }

    .intro h1 {
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 10px;
        color: white;
    }

    .p-intro {
        font-size: 17.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 {
        padding-right: 40px;
        padding-left: 40px;
        text-align: center;
        font-size: 17px;
        color: #d1d5db;
        max-width: 100ch;
        margin-inline: auto;
        overflow-wrap: break-word;
    }

    .button-info {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .button-compre-agora {
        background: #2563eb;
        color: white;
        padding: 12px 20px;
        border-radius: 100px;
        font-size: 14px;
        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-saiba-mais {
        border-width: 2px;
        padding: 10px 20px;
        font-size: 14px;
    }

    #lista-info {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .h1-card {
        font-size: 25px;
        background: none;
        margin: 5px;
    }

    .p-card {
        font-size: 15px;
        background: none;
        margin: 5px;
    }

    .section-Highlights {
        margin: 0;
        padding: 20px 20px 80px 20px;
    }

    .div-Highlights {
        margin-bottom: 45px
    }

    .h2-Highlights {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .p-Highlights {
        font-size: 16px;
        margin: 0px 50px 0px 50px;
    }

    .div-a1-Highlights {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.div-a2-Highlights {
    border-radius: 24px;
    padding: 20px;
}

.h3-Highlights {
    margin-bottom: 16px;
    font-size: 22px;
}

.div-a3-Highlights {
    padding: 20px;
    margin-bottom: 45px;
}

.h3-a1-Highlights {
    font-size: 25px;
    margin-bottom: 16px;
     background: linear-gradient(135deg, rgb(37 99 235) 0%, rgb(249 115 22) 42%);
     -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
}

.p-a2-Highlights {
    margin-bottom: 24px;
}

.ul-Highlights {
    font-size: 14px;
    gap: 10px;
}

.div-a4-Highlights {
    background: black;
}

.div-a5-Highlights {
    text-align: center;
    margin-bottom: 40px;
}

.h2-a1-Highlights {
    font-size: 30px;
    margin-top: -10px;
    margin-bottom: 30px;
}

.camera-info {
    padding: 20px;
}

.grid-cards-camera {
    gap: 25px;
    padding: 0 19px 0 19px;
}

.h1-card-camera {
    font-size: 30px;
    padding: 0 0 10px 0 ;
}

.h3-card-camera {
    font-size: 20px;
    margin-bottom: 8px;
}

.p-card-camera {
    font-size: 16px;
}

};