/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    height: 64px;
    max-height: 142px;
    margin: 0 auto;
    padding: 0 20px;
    position: block;
    display: block;
}

.titulo {
    text-align: left;
}

/*Estilo do Menu*/

#menu {
    width: 100%;
    height: 50px;
    background: #000088;
    transition: all .3s ease-in-out;
    box-shadow: rgb(123, 123, 124) 1.95px 1.95px 2.6px;    
}

#menu ul {
    max-width: 800px;
    
    text-align: center;
    margin-left: 215px;
    list-style: decimal;
}

#menu ul li {
    padding: 5px 5px;
    display: inline;
    list-style: decimal;
}

#menu ul li a {
    color: #FFF;
    padding: 20px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    display: inline-block;
    text-decoration: none;
    transition: background .4s;
    text-shadow: rgb(124, 123, 123) 1.95px 1.95px 2.6px; 
}

#menu ul li a:hover {
    color: #ddd;
}

.icons .icon .bi {
    font-size: 28px;
}

#banner {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}

#banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

#banner img.active {
    opacity: 1;
}

/* Estilos do cabeçalho */

.header {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-around;
    background-color: white;
    width: 100%;
    height: 90px;
    margin: 0 auto;
    padding: 20;
}

.logo {
    margin-left: 50px;
    width: 100px;
    height: 100px;
}

.icons {
    margin-right: 50px;
    display: flex;
    flex-direction: row;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 5px 20px 10px 20px;
    height: 40px;
    width: 40px;
    color: #000088;
}

#icon {
    margin-bottom: 1px;
}

.search-box {
    margin-left: auto;
    padding-left: 20px;
}

.search-box form {
    display: flex;
    align-items: center;
}

.search-box input[type="text"] {
    background-color: #e0e0e0;
    border: 2px solid #000088;
    padding: 15px;
    width: 350px;
    border: none;
    border-radius: 10px;
    margin-left: -680px;
}

.search-box button {
    padding: 15px 12px;
    background-color: #e0e0e0;
    border: 2px solid #000088;
    border-radius: 10px;
    margin-left: -15px;
    cursor: pointer;
}

.search-box button:hover {
    color: rgb(255, 255, 255);
    background-color: #000088;
}

a {
    text-decoration: none;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.highlight {
    margin-top: 20px;
    text-align: left; 
}

  /*Sobre*/

  .form-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    margin: 10% 30% 0 30%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container h1 {
    margin-bottom: 20px;
    color: #000088;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container form {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

.form-container form label {
    display: block;
    margin-bottom: 5px;
    color: #000088;
    font-weight: bold;
    text-align: left;
    width: 100%;
    max-width: 300px;
}
.form-container form textarea,
.form-container form input[type="date"],
.form-container form input[type="Password"],
.form-container form input[type="text"]{
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-container form input[type="submit"] {
    width: calc(100% - 20px);
    padding: 12px;
    background-color: #000088;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container form input[type="submit"]:hover {
    background-color: #0056b3;
}

.form-container button {
    background: none;
    border: none;
    margin-top: 10px;
    font-size: 14px;
    color: #000088;
    cursor: pointer;
    text-decoration: underline;
}

.form-container button:hover {
    text-decoration: none;
}

.form-container #dados{
    width: 70%;
    position: relative;
    float: right;
    padding: 2%;
    background-color: #000088;
    color: #fff;
    top: 5%;
    margin-left: 1.5%;
    height: 500px;
    text-align: center;
}
.form-container #dados h4{
    margin-bottom: 20px;
    color: #000088;
}
.form-container #dados h5{
    margin-top: 6%;
    margin-bottom: 4%;
    vertical-align: middle;
}
.form-container #dados h5 img{
    width: 50px;
}

/* Estilos do conteúdo */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.product {
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product h5 {
    margin-bottom: 5px;
}

.product h6 {
    margin-bottom: 5px;
}

.product-price {
    font-size: 20px;
    color: #3877ff;
    font-weight: bold;
    margin-bottom: 5px;
}

.product a {
    color: #f7f7f7;
    padding: 10px 10px 10px 10px;
    margin: 5px 5px 5px 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.product:hover a {
    background-color: #000088;
    color: #f7f7f7;
    padding: 10px 10px 10px 10px;
    margin: 5px 5px 5px 5px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    animation-duration: 1s;
    animation-delay: 1s;
}

.btn:hover {
    background-color: #000088;
    transition: 0.3s;
}

.account-icon {
    position: absolute;
    font-size: 30px;
    font-family: flaticon;
    content: '\f100';
    font-weight: 300;
    left: 1095px;
    top: 50px;
    -webkit-font-smoothing: antialiased;
    transition: all .2s;
}

.account-name {
    align-items: center;
    font-weight: 500;
    font-size: 13px;
    padding-top: 35px;
    text-transform: uppercase;
    color: var(--color-in-bg-clean);
    letter-spacing: -.3px;
    float: right;
    margin-left: 900px;
    margin-top: 50px;
}

.carrito{
    border: 1px solid #000088;
    width: 35%;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: auto;
    position: sticky !important;
    top: 0;
    transition: .3s;
    /* Estilos para ocultar */
    margin-right: -100%;
    opacity: 0;
}
.carrito .header-carrito{
    background-color: #000088;
    color: #fff;
    text-align: center;
    padding: 30px 0;
}
.carrito .carrito-item{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    position: relative;
    border-bottom: 1px solid #000088;
    padding: 20px;
}
.carrito .carrito-item img{
    margin-right: 20px;
}
.carrito .carrito-item .carrito-item-titulo{
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.carrito .carrito-item .selector-cantidad{
    display: inline-block;
    margin-right: 25px;
}
.carrito .carrito-item .carrito-item-cantidad{
    border: none;
    font-size: 18px;
    background-color: transparent;
    display: inline-block;
    width:30px;
    padding: 5px;
    text-align: center;
}
.carrito .carrito-item .selector-cantidad i{
    font-size: 18px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000088;
    cursor: pointer;
}
.carrito .carrito-item .carrito-item-precio{
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 5px;
}
.carrito .carrito-item .btn-eliminar{
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000088;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #000088;
    cursor: pointer;
    display: block;
    background: transparent;
    z-index: 20;
}
.carrito .carrito-item .btn-eliminar i{
    pointer-events: none;
}

.carrito-total{
    background-color: #f3f3f3;
    padding: 30px;
}
.carrito-total .fila{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}
.carrito-total .btn-pagar{
    display: block;
    width: 100%;
    border: none;
    background: #000088;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}
.carrito-total .btn-pagar:hover{
    scale: 1.05;
}




/* SECCION RESPONSIVE */
@media screen and (max-width: 850px) {
    #menu {
      display: block;
    }
    #banner,
    .container{
        width: 100% !important;
    }
    .carrito{
        width: 100%;
    }
  }

