/* Imports */
@import url(./colors.css);
@import url(./fonts.css);
@import url(../components/home-header.css);
@import url(../components/header.css);
@import url(../components/footer.css);
@import url(../components/cart.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: white;
}

header {
    position: absolute;
    z-index: 9999;
    height: 90px;
    padding: 20px 58px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

header ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 0 !important;
}

header ul li {
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding-bottom: 2px;
}

#li1, #li2, #li3 {
    position: relative;
}

#li1::after, #li2::after, #li3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-bottom: 2px solid white;
    transition: width 0.3s ease;
}

#li1:hover::after, #li2:hover::after, #li3:hover::after {
    width: 100%;
}

/* Header-1 */
.header-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 4rem;
}

.header-1 div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-1 div h2 {
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 600;
}

h1 {
    font-family: baumans, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 40px;
}

.principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 30px;
}

.principal img{
    width: 55%;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px auto;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.container h2 {
    color: aliceblue !important;
}

.card-top,
.card-bottom {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #23232b;
    border: none;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.12);
    transition: transform 0.18s;
}

.card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px 0 #d94140bb;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 1.2rem;
}

.card-text {
    color: #e0e0e0;
    font-size: 1rem;
}

.image {
    height: 600px;
    background: url(../../../public/assets/images/Frame-bg.png) no-repeat top center/cover;
    position: relative;
}

.mod, .mod2 {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
}

.mod {
    background-color: black;
    opacity: 62%;
}

.mod2 {
    background-color: #247FFF;
    opacity: 40%;
}

.navigation {
    position: fixed;
}

.titulo {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: center;
    align-items: center;
}

.titulo h2,
.titulo p,
.button-contact {
    font-family: 'Inter', sans-serif;
}

.titulo h2 {
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: var(--bold-inter);
    color: var(--text-color);
}

.titulo p {
    margin-bottom: 40px;
    font-size: 25px;
    font-weight: var(--light-inter);
    color: var(--text-color);
}

.button-contact {
    padding: 14px 20px;
    color: #ffffff;
    background-color: var(--akatsuki-color);
    font-weight: var(--medium-inter);
    border: 0;
    font-size: 18px;
    margin: 14px 0 140px 0;
    transition: animation 0.2s, box-shadow 0.8s;
    text-transform: uppercase;
}

.button-contact:hover {
    animation: scaleButton 0.8s alternate infinite;
    box-shadow: 0 0 10px 0 #d94140;
}

.btn {
    transition: all 0.2s;
}

.btn:hover {
    background-color: #2569d8 !important;
}

.carousel-control-prev-icon.bg-dark,
.carousel-control-next-icon.bg-dark {
    background-color: #292828 !important;
    padding: 1.2rem;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    background: none;
}

.carousel-inner,
.carousel-item {
    overflow: visible !important;
}

@keyframes scaleButton {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.07);
    }
}

@media (max-width: 600px) {
    header {
        display: flex;
        flex-direction: column;
        height: 100px;
    }
    h1 {
        display: none;
    }
    .card-img-top {
        height: 120px;
    }
    .btn-success,
    .btn-danger {
        min-width: 120px;
        font-size: 1rem;
        padding: 8px 0;
    }
}