* {
    font-family: "Fira Sans Condensed", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(143, 155, 177);
    height: 10vh;
    padding: 0 1em;
    position: sticky;
    top: 0;
    z-index: 10;
    overflow: hidden;

}

.fixed-size {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#logo {
    max-height: 100%;
    max-width: auto;
    height: auto;
}



.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-list li:last-child {
    border-bottom: none;
}

.total {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 10px;
    text-align: right;
}
.flexible-size {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.navHeader {
    box-sizing: border-box;

    .ulHeader {
        list-style: none;

        .listaItem {
            align-items: first baseline;
            justify-content: baseline;
            display: inline-flex;
            background-color: #6200EA;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            margin: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .linkHeader {
            text-decoration: none;
            color: #ffffff;
        }
    }

}

.main {
    font-family: Arial, sans-serif;
    background-color: #7c7cb8;
    
    a{
            text-decoration: none;
            background-color: #2baa4b;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
    }

    .botonClear {
        background-color: #4b2186;
        color: #fff;
        padding: 10px 20px;
        border: none;
        border-radius: 25px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        font-size: 16px;
    }
    
    .botonClear:hover {
        background-color: #3700B3;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }

    .botonClear:active {
        background-color: #30009C;
        box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
        transform: scale(0.95);
    }
}
.container{
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        height: 65vh;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        background-color: #78d0eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        }
.footer {
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 0 1em;
    z-index: 10;
    overflow: hidden;
    background-color: #6200EA;
                color: #fff;

    ul {
        padding-top: 5px;
        list-style: none;

        .fa-instagram,
        .fa-facebook,
        .fa-x-twitter {
            font-size: 3em;
            color: black;
        }
    }

    .fa-whatsapp {
        font-size: 5em;
        color: rgb(59, 150, 86);
        position: fixed;
        bottom: 15px;
        right: 15px;
    }

    .form-group {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding-top: 5px;
    }

    .form-group label {
        flex: 0 0 150px;
        margin-right: 10px;
    }

    .form-group input,
    .form-group textarea {
        flex: 1;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .form-group textarea {
        resize: vertical;
    }

    button {
        background-color: #4CAF50;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 30px;
    }

    button:hover {
        background-color: #45a049;
    }

    p {
        font-size: 1em;
    }
}