/* Marcações Universais */
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: fonte02;
}

body {
    background: #fcfbf76e;
}

:root {
    --cor0: #FFFFFF;
    --cor1: #000000;
    --cor2: #6EB784;
    --cor3: #3A5E48;
    --cor4: #529D6F;
    --cor5: #8CB973;
    --cor6: #ED7B59;
}

@font-face {
    font-family: fonte01;
    src: url(../fontes/buona-display-trial/BuonaDisplayTrial-DemiBold.otf);
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: fonte02;
    src: url(../fontes/gotham/GothamMedium.ttf);
    font-weight: normal;
    font-style: normal;
}

.nossos {
    color: rgba(14, 14, 14, 0.744);
}

.card {
    background: #fffefc;
}


/* Navbar */
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 40px;
    z-index: 1000;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: #ED7B59;
    text-decoration: none;
    font-weight: 600;
}

/* TOGGLER */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #ED7B59;
    border-radius: 5px;
}

/* OVERLAY MENU */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: #ED7B59;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        height: 60px;
    }
}


/* BOTÃO FECHAR (X) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.close-btn:hover {
    color: #ED7B59;
}


/* logo-loja */
#logo-loja h2 {
    font-family: fonte01;
}

#logo-loja {
    background-color: #3A5E48;
}

#logo-loja h2 {
    color: #ED7B59;
}


/* Header */
.home {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(../img02/img-mulher-vaporizando04.jpg) no-repeat center center / cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 500px;
    color: white;
    padding: 0 2rem;
}

.home-content {
    display: flex;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    padding: 2rem;
    max-width: 800px;
}

.highlight-bar {
    width: 4px;
    background-color: #ED7B59;
    margin-right: 1rem;
}

.text-3 {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.text-3 span {
    color: #ED7B59;
    font-weight: 600;
}

/* Responsivo: centraliza o conteúdo em telas pequenas */
@media (max-width: 768px) {
    .home {
        justify-content: center;
        text-align: center;
    }

    .home-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-bar {
        display: none;
    }
}

/* DESABILITA background-attachment: fixed SOMENTE NO IOS PARA EVITAR BUGS */
@supports (-webkit-touch-callout: none) {
    .home {
        background-attachment: scroll !important;
    }
}


/* APLICAÇÃO */
.img-custom {
    max-width: 100%;
    width: 100%;
    max-width: 400px;
}

#img-app {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 8px;
}

#img-app:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

@media (max-width: 576px) {
    .img-custom {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .img-custom {
        max-width: 100%;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.dropdown-toggle {
    padding: 12px 20px;
    font-size: 16px;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    background-color: #eaeaea;
    outline: none;
}

.dropdown-menu {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    display: block;
}

.dropdown-toggle {
    transition: transform 0.1s ease, background-color 0.1s ease;
}

.dropdown-toggle:active {
    transform: scale(0.97);
    background-color: #f0f0f0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.app-section {
    background-image: url(../img02/post1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: #fff;
    background-attachment: fixed;
}

/* DESABILITA background-attachment: fixed SOMENTE NO IOS PARA EVITAR BUGS */
@supports (-webkit-touch-callout: none) {
    .app-section {
        background-attachment: scroll !important;
    }
}

.APP p {
    text-align: justify;
    text-justify: inter-word;
    max-width: 100%;
}


/* Marcações Article */

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    width: 100%;
    height: 390px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    background-color: #f8f8f8;
}

.card-body {
    padding: 0.5rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    height: auto;
}

.card-title.nossos {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(14, 14, 14, 0.744);
    margin: 0;
    padding: 0;
    text-align: center;
}


/* Marcações Main */

#item-mai h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

#mai {
    margin-bottom: 3rem;
}

#item-mai {
    margin-top: 10px;
}

#main-item {
    font-size: 18px;
}

.card-title3 {
    font-size: 20px;
    padding-top: 15px;
}

.card-text {
    padding: 15px 30px 15px 30px;
}

.card-text2 {
    padding: 0px 30px 0px 30px;
}

.card-text3 {
    margin: auto;
}

#mai .card img {
    height: 320px;
}

.sucess {
    margin: 180px 0px 180px 0px;
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
}

.ntv-text {
    padding: 15%;
}

.card-store-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-store-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* Marcações Footer */
footer {
    background-color: #3A5E48;
    color: #ED7B59;
    padding: 40px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    width: 22%;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 2px solid #ED7B59;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ED7B59;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 18px;
    }

    .footer-bottom {
        margin-top: 20px;
    }
}


/* Java +18*/
#age-check {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal {
    background: rgba(40, 40, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    text-align: center;
    backdrop-filter: blur(6px);
    animation: fadeIn 0.4s ease-in-out;
}

.age-logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

.age-question {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #e0e0e0;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.age-buttons button {
    background: #2d2d2d;
    color: #f0f0f0;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    min-width: 80px;
}

.age-buttons button:hover {
    background: #444;
}

@media (max-width: 500px) {
    .age-logo {
        max-width: 150px;
    }

    .age-question {
        font-size: 1rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .age-buttons button {
        width: 100%;
    }
}

.age-welcome {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}


/* pop-up da Glovo */
#popupGlovo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Posição no lado esquerdo */
    background: #FFFFFF;
    border: 2px solid #529D6F;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    font-family: fonte02;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 360px;
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #3A5E48;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close-btn:hover {
    color: #ED7B59;
}

.popup-text {
    margin-bottom: 15px;
    color: #3A5E48;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.popup-button {
    background-color: #6EB784;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button:hover {
    background-color: #529D6F;
    transform: translateY(-2px);
}

.popup-button:active {
    background-color: #3A5E48;
    transform: translateY(0);
}

.city-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.city-menu li a {
    display: block;
    background-color: #f4f4f4;
    color: #3A5E48;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.city-menu li a:hover {
    background-color: #d9f2e1;
}


/* pop-up do WhatsApp */
#popupWhatsApp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Mantendo o mesmo lado do pop-up da Glovo */
    background: #FFFFFF;
    border: 2px solid #529D6F;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    font-family: fonte02;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 360px;
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: #3A5E48;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close-btn:hover {
    color: #ED7B59;
}

.popup-text {
    margin-bottom: 15px;
    color: #3A5E48;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.popup-button {
    background-color: #6EB784;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.popup-button:hover {
    background-color: #529D6F;
    transform: translateY(-2px);
}

.popup-button:active {
    background-color: #3A5E48;
    transform: translateY(0);
}



/* Uniformiza cards e adiciona hover profissional */
.product-card {
    border: none;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.product-card img.card-img-top {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-card .card-text {
    margin-top: auto;
    color: #6c757d;
    font-size: .95rem;
}

/* Hover elegante */
.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

/* Ajuste de imagem em mobile */
@media (max-width: 767.98px) {
    .product-card img.card-img-top {
        height: 180px;
    }
}