* {
    font-family: "Intel One Mono", monospace;
    font-optical-sizing: auto;
    font-style: normal;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}





.navbar-intel {
    display: flex;
    justify-content: space-between;
    padding-left: 200px;
    padding-right: 200px;
    background-color: #0C192D;

    .container-logo {
        img {
            width: 125px;
        }
    }

    ul {
        display: flex;
        align-items: center;
        gap: 100px;
        list-style: none;
        margin: 0;
        padding: 0;

        li>a {
            cursor: pointer;
            color: #fff;
            text-decoration: none;
        }
    }
}

.hero {
    position: relative;
    height: 75vh;

    .bg-hero {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text-hero {
        position: absolute;
        top: 50%;
        left: 200px;
        transform: translateY(-50%);
        width: 30%;

        h1 {
            color: #fff;
        }

        p {
            color: #fff;
        }
    }

    .img-logo-intel-white {
        position: absolute;
        top: 50%;
        right: 200px;
        transform: translateY(-50%);
        width: 30%;
    }
}

.button-primary {
    position: relative;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    padding: 10px;
    cursor: pointer;
    display: block;
}

.button-secondary {
    position: relative;
    background-color: #0068b5;
    color: #fff;
    border-radius: 20px;
    border: 1px solid #0068b5;
    padding: 10px;
    cursor: pointer;
    display: block;
    box-shadow: 0 .25rem .5rem 0 rgba(0, 0, 0, .2);

}

.title-section {
    text-align: center;
    color: #0068b5;
    font-size: 34px;
}

.swiper {
    width: 100%;
    height: 500px;
}

.section-specs {
    position: relative;
    background-color: #0C192D;
    padding: 80px 200px;

    .card-item-cpu {
        position: relative;
        border-radius: 25px;
        background-color: #19191b;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
        height: 100%;

        .container-header-img-card-cpu {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 65%;

            img {
                box-shadow: 0 0 50px 0px #48abe0;
            }
        }


        .content-card-cpu {
            position: relative;
            height: 35%;
            display: flex;
            background-color: #0e0e0e;
            border-radius: 25px;
            padding: 25px;


            .panel-left-card-cpu {
                width: 50%;

                h2 {
                    font-size: 16px;
                    color: #fff;
                }

                p {
                    font-size: 12px;
                    color: #fff;
                }
            }

            hr {
                margin: 10px;
                width: 2px;
                height: 100%;
                color: #00d0f6;
                background: #00d0f6;
                border: none;
            }

            .panel-right-card-cpu {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;


                .item-characters-cpu {
                    h4 {
                        font-size: 11px;
                        color: #00d0f6;
                        margin: 0;
                    }

                    p {
                        font-size: 9px;
                        color: #fff;
                        margin: 0;
                    }
                }
            }

        }

    }

}




.section-test {
    background-color: #0C192D;
    display: flex;
    flex-direction: column;

    gap: 50px;
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 50px;
    padding-bottom: 50px;


    .tarjeta-de-prueba {

        border-radius: 25px;
        background-color: #0e0e0e;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
        display: flex;

        .contenedor-tarjeta-prueba {
            text-align: start;
            display: flex;
            flex-direction: column;
            justify-content: center;

            p {
                color: #fff;
            }

            h2 {
                color: #0068b5;
            }
        }


    }

}

footer {
    position: relative;
    width: 100%;
    padding: 60px 15%;
    background-color: #0e0e0e;

    .central-nav ul {
        position: relative;
        display: flex;
        gap: 20px;
    }

    ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-evenly;
    }

    .central-nav a {
        color: #fff;
        text-decoration: underline;
    }

    .footer-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    hr {
        border: none;
        color: #00d0f6;
        background-color: #00d0f6;
        width: 100%;
        height: 1px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .container-nav {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #0068b5;
    }

    .footer-social-links {
        position: relative;
        display: flex;
        gap: 32px;
    }

    .footer-member-block {
        position: relative;
        display: flex;
        gap: 24px;
    }
}