﻿/*html {
    font-size: 14px;
}

@media (width < 995px) {
    .navbar-collapse {
        margin-left: 20px;
    }
}

@media (width < 995px) {
    .btnCarrinho {
        margin-right: 50px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}*/

.menu-toggle {
    display: none; /* Hide by default */
    flex-direction: column;
    cursor: pointer;
    z-index: 10; /* Ensure it stays above other elements */
}

    .menu-toggle .bar {
        height: 3px;
        width: 25px;
        background-color: white;
        margin: 3px 0;
        transition: all 0.3s ease; /* Smooth transitions for hamburger icon */
    }

.menu {
    display: flex; /* Default display for larger screens */
    flex-wrap: wrap; /* Allow wrapping for larger menus */
}

@media (max-width: 900px) {
    .menu {
        display: none; /* Hide menu by default on mobile */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute; /* Position it absolutely */
        top: 60px; /* Adjust this to position below the navbar */
        left: 0;
        right: 0; /* Make it full width */
        background-color: #4A0D2C; /* Same as nav-bar */
        padding: 10px 0; /* Add some padding for aesthetics */
        z-index: 5; /* Ensure it appears above other content */
    }

        .menu.active {
            display: flex;
        }

        .menu a {
            padding: 10px 15px;
            text-align: center;
            color: white;
            text-decoration: none;
        }

            .menu a:hover {
                background-color: #FF8091;
            }

    .menu-toggle {
        display: flex;
    }

        /* Animation for the hamburger icon */
        .menu-toggle.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
}

.alert-warning {
    background-color: #7E1141;
    color: white;
    border-color: #7E1141;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica', 'Arial', sans-serif;
    min-height: 140vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}


    body h1 {
        font-size: 50px;
        font-weight: bold;
        color: #7E1141;
    }

    body p {
        font-size: 24px;
        font-weight: normal;
    }

    body li {
        font-size: 24px;
        font-weight: normal;
    }

@media (max-width: 768px) {
    body p {
        font-size: 14px;
    }

    body h1 {
        font-size: 30px;
        font-weight: bold;
        /*color: #545454;*/
    }

    body h2 {
        font-size: 20px;
   
        /*color: #545454;*/
    }


    body h3 {
        font-size: 18px;
        /*color: #545454;*/
    }

    body li{
        font-size:14px;
    }

}

.form-control {
    border-width: 2px;
    border-color: #7E1141;
}

body button {
    font-size: 20px;
}

.banner {
    background-color: #FF8091;
    color: white;
    text-align: center;
    padding: 4px 0;
    font-size: 16px;
    font-weight: normal;
}

@media (max-width: 768px) {
    .banner{
        font-size:12px;
    }
}

/*.top-bar {
    background-color: #7E1141;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .top-bar .logo img {
        width: 95px;
        height: 85px;
        margin: 0 5px;
    }

    .top-bar .social-icons a {
        color: white;
        margin: 0 10px;
        text-decoration: none;
    }

        .top-bar .social-icons a i {
            font-size: 20px;
        }

    .top-bar .flags img {
        width: 25px;
        height: 15px;
        margin: 0 5px;
    }

        .top-bar .flags img:hover {
            border-color: #ff6600;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
            border-radius: 5px;
            border: 1px;
        }*/

.top-bar {
    background-color: #7E1141;
    padding: 10px 0;
    display: flex;
    justify-content: space-between; /* Ensures space between social icons, logo, and flags */
    align-items: center; /* Align items vertically */
    flex-wrap: nowrap; /* Prevent wrapping of elements */
}
    .top-bar .logo {
        display: flex;
        justify-content: center; /* Center the logo inside the container */
        flex-grow: 1; /* Make sure logo can grow to take available space */
    }


    .top-bar .logo img {
        width: 95px;
        height: 85px;
        margin: 0 5px;

    }

    .top-bar .social-icons {
        display: flex;
        justify-content: flex-start; 
        margin-right: auto; 
    }

        .top-bar .social-icons a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
        }

            .top-bar .social-icons a i {
                font-size: 20px;
            }

                .top-bar .social-icons a i:hover {
                    color: #FF8091;
                }

    .top-bar .flags {
        display: flex;
        justify-content: flex-end; 
    }

        .top-bar .flags img {
            width: 25px;
            height: 15px;
            margin: 0 5px; 
        }

            .top-bar .flags img:hover {
                border-color: #ff6600;
                box-shadow: 0 0 10px rgba(255, 102, 0, 0.8);
                border-radius: 5px;
                border: 1px;
            }

/* Adjustments for smaller screens */
@media (max-width: 600px) {
    .top-bar {
        padding: 10px 20px;
        justify-content: space-between; 
    }

        .top-bar .logo {
            margin: 0 auto; 
        }

        .top-bar .social-icons {
            display: flex;
            justify-content: flex-start; 
            margin-right: auto; 
        }

        .top-bar .flags {
            display: flex;
            justify-content: flex-end; 
            margin-left: 10px;
        }

        .top-bar .social-icons a {
            margin: 0 5px; 
        }

        .top-bar .flags img {
            margin: 0 3px; 
        }

   
}

.nav-bar {
    background-color: #4A0D2C;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .nav-bar .menu a {
        color: white;
        margin: 0 15px;
        text-decoration: none;
        font-size: 16px;
    }

        .nav-bar .menu a:hover {
            color: #FF8091;
        }

    .nav-bar .icons a {
        color: white;
        text-decoration: none;
        display: inline;
    }


        .nav-bar .icons a:hover {
            color: #FF8091;
        }

        .nav-bar .icons a i {
            font-size: 20px;
        }

@media (max-width: 900px) {

    #notification{
        font-size:12px;
    }
}
@media (max-width: 900px) {
    .nav-bar .menu a:hover {
        color: white;
        background-color: #FF8091;
    }

    .top-bar .logo img {
      margin-left:46px;
    }

 
}

.icons > a,
.icons > form {
    display: inline-block;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .nav-bar .menu a {
        margin: 0 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-bar .menu a {
        margin: 0 5px;
        font-size: 12px;
    }
}

footer {
    background-color: #7E1141;
    color: #FFFFFF;
    padding: 20px;
    margin-top: auto;
    padding-bottom: 0;
    
}

    footer .logo {
        justify-content: center;
        display: flex;
    }

        footer .logo img {
            width: 105px;
            height: 95px;
            margin: 0 5px;
        }

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center footer content */
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    padding: 10px;
    min-width: 200px;
    max-width: 250px;
    text-align: left; /* Center text in columns */
}

    .footer-column.newsletter {
        margin-left: 0; /* Reset left margin */
    }

    .footer-column h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 0 0 2px 0;
    }

    .footer-column p,
    .footer-column ul,
    .footer-column li {
        font-size: 16px;
        margin-bottom: 10px;
        padding: 0;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin: 5px 0;
        }

    .footer-column a {
        color: white;
        text-decoration: none;
    }

        .footer-column a:hover {
            color: #FF8091;
        }

.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .newsletter input[type="email"] {
        padding: 10px;
        margin: 10px 0;
        border: none;
        width: 100%;
        font-size: 16px;
    }

    .newsletter input[type="submit"] {
        padding: 10px;
        border: none;
        background-color: #4A0D2C;
        color: #fff;
        cursor: pointer;
        width: 80%;
        font-size: 20px;
    }

        .newsletter input[type="submit"]:hover {
            background-color: #FF8091;
        }

.payment-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .payment-icons img {
        width: 40px;
        margin: 0 5px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .social-icons a {
        color: #fff;
        margin: 0 10px;
        font-size: 24px;
    }

        .social-icons a i:hover {
            color: #FF8091;
        }

.footer-bottom {
    text-align: center;
    padding: 10px;
    font-size: 16px;
    padding-bottom: 0;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center; /* Center all columns */
    }

    .footer-column {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center; /* Center text in each column */
        padding-left: 0;
        padding-right: 0;
    }

        /* Reset the inline styles for specific columns */
        .footer-column[style*="padding-left: 5%"],
        .footer-column[style*="margin-left: 10%"] {
            padding-left: 0 !important;
            margin-left: 0 !important;
        }

    .newsletter input[type="submit"] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 15px;
    }

        footer .logo img {
            width: 80px;
            height: 70px;
        }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column p,
    .footer-column ul,
    .footer-column li {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .payment-icons img {
        width: 30px;
        height:30px;
    }
}



.botao {
    border: none;
    background-color: #4A0D2C;
    color: #fff;
    cursor: pointer;
    width: auto;
    font-size: 20px;
    text-decoration: none;
    padding: 3px;
    border-radius: 5px;
}

    .botao:hover {
        background-color: #FF8091;
    }

#cookieConsent {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

    #cookieConsent p {
        /*margin: 0;*/
        padding: 0;
        display: inline;
        font-size: 16px;
    }

    #cookieConsent button {
        margin-left: 20px;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

/* Media query for smaller screens */
@media (max-width: 768px) {
    #cookieConsent {
        padding: 15px;
        text-align: left;
    }

        #cookieConsent p {
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }

        #cookieConsent button {
            display: block;
            width: 100%;
            margin-left: 0;
            padding: 10px;
            font-size: 14px;
        }
    .botao{
        font-size:14px;
    }

   
}


.age-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1001;
    padding: 20px;
}

.popup-content {
    text-align: center;
}

.popup-buttons {
    margin-top: 20px;
}

    .popup-buttons .btn {
        margin: 0 10px;
    }

.dropdown-menu {
    background-color: #7E1141 !important;
}


    .dropdown-menu .dropdown-item {
        color: white !important;
    }


        .dropdown-menu .dropdown-item:hover {
            background-color: #7E1141 !important;
            color: #FF8091 !important;
        }

.nav-item{
    font-size:16px;
}
.nav-item:active {
    background-color: none;
}

@media (max-width: 768px) {

    .nav-item {
        font-size: 12px;
    }

        .nav-item button {
            font-size: 12px;
        }
}

    /* Chat container */
    .whatsapp-chat-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    /* WhatsApp button */
    .whatsapp-chat-button {
        background-color: #25d366;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .whatsapp-chat-button img {
            width: 40px;
            height: 40px;
        }

    /* Hidden chat box */
    .whatsapp-chat-box {
        display: none;
        position: absolute;
        bottom: 80px;
        right: 0;
        width: 300px;
        padding: 15px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

        .whatsapp-chat-box p {
            margin: 0;
            padding: 10px;
            font-size: 14px;
            color: #444;
        }

        .whatsapp-chat-box a {
            display: inline-block;
            background-color: #25d366;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 10px;
        }

            .whatsapp-chat-box a:hover {
                background-color: #20b954;
            }

