* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-gostik {
    background-color: #742D50;
    position: sticky;
    top: 0;
    z-index: 9999;
    padding-top: 35px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
    z-index: 10;
}
/* 
.logo img {
    height: 110px;
    position: relative;
    bottom: -45px;
} */

.custom-logo {
    max-height: 100px;
    margin-bottom: -60px;
    margin-left: 50px;
}

@media (max-width: 1030px) {
    .custom-logo {
        margin-left: 0px;
    }
}


.menu-list {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu-list li {
    position: relative;
}

.menu-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
}

.menu-list a:hover {
    color: #742D50;
    background-color: #60BB51;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
}

.dropdown-custom:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-box {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    /* border: 2px solid #742D50; */
    border-radius: 12px;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-box ul {
    list-style: none;
}

.dropdown-box li {
    margin-bottom: 8px;
    min-width: 150px;
}

.dropdown-box a {
    color: #742D50;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-box a:hover {
    color: #60BB51;
}

.btn-pedido {
    background-color: #60BB51;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pedido:hover {
    background-color: #4fa843;
    transform: scale(1.05);
}

.linha-verde {
    height: 19px;
    background-color: #60BB51;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .menu {
        display: none;
    }
}

.btn-cupom-pulse {
    display: inline-block;
    /* background-color: #000; */
    color: #61bb51;
    font-family: 'Permanent Marker', cursive;
    font-size: 32px;
    padding: 10px 55px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    /* border-radius: 45% 55% 50% 45% / 85% 85% 85% 85%; */
    transform: rotate(-3deg);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: pulse-organico 2s infinite ease-in-out;
}

.btn-cupom-pulse::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: #000; */
    z-index: -1;
    /* border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; */
    transform: rotate(2deg);
}

.btn-cupom-pulse {
    padding: 20px;
}

.btn-cupom-pulse img.img-cupom {
    max-width: 277px !important;
    height: auto;
}

@media (max-width: 550px) {
    .btn-cupom-pulse img.img-cupom {
        max-width: 150px !important;
    }
}
    
@media (max-width: 550px) {
    .btn-cupom-pulse img.img-cupom {
        max-width: 120px !important;
    }
}

@keyframes pulse-organico {
    0% {
        transform: scale(1) rotate(-3deg);
    }
    50% {
        transform: scale(1.1) rotate(-3deg);
        filter: drop-shadow(0 0 15px rgba(97, 187, 81, 0.4));
    }
    100% {
        transform: scale(1) rotate(-3deg);
    }
}

.custom-cupom {
    right: 0% !important;
    bottom: 6.45rem !important;
    left: 17% !important;
}

@media (max-width: 1025px) {
    .custom-cupom {
        bottom: 2.45rem !important;
    }
}

@media (max-width: 769px) {
    .custom-cupom {
        bottom: 0rem !important;
    }
}



@media (max-width: 992px) {

    .header-content {
        justify-content: center;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .custom-logo {
        margin-bottom: -40px;
        max-height: 90px;
    }

    .menu {
        display: none;
    }

    .btn-hamburger {
        position: absolute;
        left: 15px;
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
        z-index: 20;
    }

    .menu-mobile {
        background-color: #742D50;
    }

    .menu-mobile a {
        display: block;
        color: #742D50;
        text-decoration: none;
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .menu-mobile a:hover {
        color: #60BB51;
    }

    .logo-mobile {
        max-height: 60px;
    }

    .c-btn-pedido-desktop {
        display: none;
    }
}

.c-btn-pedido-desktop {
    margin-top: -15px !important;
    margin-right: 190px !important;
}

@media (max-width: 1050px) {
    .c-btn-pedido-desktop {
        margin-right: 0px !important;
        min-width: 200px;
    }
}

.footer-gostik {
    background-color: #60BB51;
    color: #fff;
    padding: 60px 0 25px;
    font-family: Arial, sans-serif;
}

/* LOGO */
.footer-logo img {
    max-width: 160px;
}

/* TÍTULOS */
.footer-menu h4,
.footer-contato h4 {
    color: #FFFF00;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

/* MENU */
.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #FFFF00;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.footer-menu a:hover {
    text-decoration: underline;
}

/* CONTATO */
.footer-contato p {
    margin-bottom: 10px;
    font-size: 15px;
    color: #FFFF00;
    display: flex;
    align-items: center;
}

.footer-contato .dot {
    width: 14px;
    height: 14px;
    background-color: #FFFF00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.footer-contato .social-text {
    margin-top: 20px;
    font-weight: 500;
}

/* DIVISÓRIA */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 40px 0 20px;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    opacity: 0.9;
}

/* ========================= */
/* AJUSTES MOBILE */
/* ========================= */
@media (max-width: 768px) {

    .footer-logo {
        text-align: center;
    }

    .footer-menu,
    .footer-contato {
        text-align: left;
    }

    .footer-copy {
        text-align: center;
    }
}
