/* Remove margens e paddings padrão do body */
body,
html {
    margin: 0;
    padding: 0;
    padding-top: 51px;
}

/* Estilo do cabeçalho */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3b231b;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
}

/* Ajuste da logo */
.logo {
    display: flex;

    align-items: center;
    
}

.logo img {
    max-height: 100%;
    height: 100px;
   
    width: auto;
    margin: 0;
    
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    margin-left: 40px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.user-options {
    display: flex;
    gap: 15px;
    position: relative;
    left: 0px;
}

.user-options a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

header a:hover {
    color: #ccc;
}

/* Estilo para o carrossel de banners */
.banner-carousel .carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0px 0;
}

.banner-carousel .carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    user-select: none;
}

.banner-carousel .carousel-slides.dragging {
    cursor: grabbing;
}

.banner-carousel .carousel-slides img {
    width: 100vw;
    flex: none;
    user-select: none;
    pointer-events: none;
    cursor: default;
}

/* Estilo das setas do carrossel de banners */
.banner-carousel .carousel-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 80px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    z-index: 10;
}

/* Para a seta da esquerda */
.banner-carousel .carousel-btn.prev {
    right: 130px;
}

/* Para a seta da direita */
.banner-carousel .carousel-btn.next {
    right: 20px;
}

/* Estilo para os indicadores do banner */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-indicators .indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.banner-indicators .indicator.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Estilo para o carrossel de produtos */
.product-carousel {
    margin-top: 0px;
    text-align: center;
}

.product-carousel h2 {
    text-align: center;
    margin: 0px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    padding-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.product-carousel .carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0px;
}

.product-carousel .carousel-slides {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.product-carousel .product-row {
    display: flex;
    gap: 23px;
}

.product-carousel .product-item {
    flex: none;
    width: 350px;
    text-align: center;
}

.product-item img {
    width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.product-link {
    color: inherit;
    text-decoration: none;
}

.product-link h3,
.product-link p {
    margin: 3px;
    font-family: 'Poppins', sans-serif;
}

.product-carousel .product-item h3 {
    margin-top: 7px;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}


.product-carousel .product-item:hover h3 {
    color: #808080;
}


.product-carousel .product-item:hover p {
    color: #000000;
}

/* Estilo do botão "Comprar" */
.product-carousel .buy-btn {
    margin-top: 15px;
    display: inline-block;
    background-color: #3b231b;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.product-carousel .buy-btn:hover {
    background-color: #b6542e;
    color: #ffffff;

}


.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-controls .carousel-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 30px;
    margin: 0 10px;
}

.image-container {
    width: 350px;
    height: 380px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
  
}

/* Definição das imagens */
.front-image,
.back-image {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
   
}

/* Imagem de trás oculta inicialmente */
.back-image {
    opacity: 0;

}

/* Troca de imagem apenas quando o mouse está sobre a imagem */
.image-container:hover .front-image {
    opacity: 0;
    
}

.image-container:hover .back-image {
    opacity: 1;
}

.image-container img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.product-item:hover .front-image,
.product-item:hover .back-image {
    transform: scale(1.08);
}

/* Estilo para a seção de imagens em grade */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.image-item {
    flex: 0 0 45%;
    margin: 10px;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.marquee {
    background-color: rgb(180, 86, 58);
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: marquee 45s linear infinite;
}

.marquee span {
    display: inline-block;
    padding: 0 20px;
    font-size: 34px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/* Efeito de animação */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* SEÇÃO DAS ROUPAS*/
.product-secao {
    margin: 20px 0;
    text-align: center;
}

.product-secao h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 100px;
    color: #000000;
    margin-bottom: 0px;
}

.secao-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.secao-slides {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.secao-row {
    display: flex;
    flex-wrap: wrap;
    gap: 120px;
    justify-content: center;
}

.secao-item {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    margin-bottom: 0px;
}

.secao-container {
    position: relative;
    width: 275px;
    height: 280px;
    overflow: hidden;
}

.front-image-secao,
.back-image-secao {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s ease, transform 0.6s ease;
}

.front-image-secao {
    opacity: 1;
    z-index: 2;
}

.back-image-secao {
    opacity: 0;
    z-index: 1;
}

.golden-text {
    position: relative;
    z-index: 2;
}

/* Força a exibição da imagem fmp */
.secao-item:nth-child(3) .front-image-secao {
    opacity: 1 !important;
    display: block !important;
    z-index: 10 !important;
}

.secao-item:hover .front-image-secao {
    transform: scale(1.08);
}

.secao-item:hover .back-image-secao {
    transform: scale(1.08);
}

.secao-container:hover .front-image-secao {
    opacity: 0;
}

.secao-container:hover .back-image-secao {
    opacity: 1;
}

.secaobuy-btn {
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #3b231b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.secaobuy-btn:hover {
    background-color: #b6542e;
}

.secao-link {
    text-decoration: none;
    color: inherit;
}

.secao-link h3:hover {
    color: gray;
}

.secao-item:hover h3 {
    color: gray;
}

.secao-link:hover {
    color: inherit;
    text-decoration: none;
}

.whatsapp-icon {
    position: fixed;
    bottom: 15px;
    right: 13px;
    width: 60px;
    height: 60px;
    z-index: 700;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}

/* COOKIEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE*/

.cookie-hidden {
    display: none;
}

.cookieWrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 365px;
    background: #ffffff;
    padding: 25px 25px 30px 25px;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 3px solid #FCBA7F;
    z-index: 700;
}

.cookieWrapper h2 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
}

.cookieWrapper p {
    font-family: 'Poppins', sans-serif;
}

.cookieWrapper.hide {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

::selection {
    color: #fff;
    background: #FCBA7F;
}

.cookieWrapper img {
    max-width: 90px;
}

.cookieContent header {
    font-size: 25px;
    font-weight: 50;
}

.cookieContent {
    margin-top: 10px;
}

.cookieContent p {
    color: #858585;
    margin: 5px 0 20px 0;
}

.cookieContent .cookieButtons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookieButtons button {
    padding: 10px 20px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    background: #FCBA7F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookieButtons button:hover {
    transform: scale(0.97);
}

.cookieButtons .cookieItem {
    margin: 0 10px;
}

.cookieButtons a {
    color: #FCBA7F;
    font-family: 'Poppins', sans-serif;
}

/* COOKIEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE*/

footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000000;
    color: #fff;
    padding: 30px 0;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-section {
    width: 100%;
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section.siga-nos {
    display: block;
    text-align: center;
    margin-left: -40px;
}

.footer-section.siga-nos h4 {
    margin-bottom: 10px;
}

.footer-section.siga-nos a img {
    margin-right: 10px;
    vertical-align: middle;
    width: 50px;
    height: auto;
}

.footer-section.siga-nos a[href*="instagram"] img {
    margin-left: -5px;
}

.footer-section.siga-nos a[href*="facebook"] img {
    margin-left: -9px;
}

.footer-section.siga-nos a img:last-child {
    margin-right: 0px;
}

.footer-section.metodos-pagamento img {
    margin-right: 3px;
    vertical-align: middle;
    width: 40px;
    height: auto;
}

.footer-section.metodos-pagamento img:last-child {
    margin-right: 0;
}

.footer-section.seguranca {
    position: relative;
    left: 60px;
}

.footer-section.seguranca img {
    width: 100px;
    height: auto;
    margin-right: 10px;
    display: block;
    margin-bottom: 5px;
}

.footer-section.seguranca img[alt="SSL"] {
    width: 138px;
    height: 85px;
}

.footer-section.seguranca img:last-child {
    margin-right: 0;
}

.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section img {
    width: 30px;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    color: white;
    background-color: #0f0f0f;
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

body {
    overflow-x: hidden;
}

.rodape-links {
    position: relative;
    left: 25px;
    bottom: -20px;
    text-align: left;
    width: 47%;
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #000000;
    z-index: 500;
    margin-top: 0px;
    font-family: 'Popins', sans-serif;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
}

.rodape-links ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.rodape-links ul li {
    margin-bottom: 5px;
    position: relative;
}

.rodape-links ul li a {
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 65px;
    display: inline;
    width: auto;
    text-shadow: 100px 1 1 #fff, 200px 1 1 #fff, 1 1px 1 #fff, 1 1px 1 #fff;
}

.rodape-links ul li a:hover {
    text-decoration: none;
    color: #dbdbdb;
}

.rodape-links ul li::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 3px;
    left: 0;
}

.contato-section {
    position: relative;
    left: 75px;
}

.footer {
    position: relative;
    left: 25px;
}

.endereco {
    white-space: nowrap;
}

/* Estilos para o pop-up */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes slideUp {
    from {
        transform: translateY(200%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(200%);
    }
}

.popup.hidden {
    display: none;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
    position: relative;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
}

.popup-content.slide-up {
    animation-name: slideUp;
}

.popup-content.slide-down {
    animation-name: slideDown;
}

.popup-image {
    width: 100%;
    margin-left: -15px;
    max-width: 430px;
    height: auto;
    user-select: none;
}

.popup-details {
    flex: 1;
    text-align: left;
    margin-bottom: 35px;
    margin-top: 0;
}

.popup-details h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    margin-top: 0px;
}

.popup-details p {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: -10px;
    margin-bottom: 35px;
}

.tamanho-options {
    margin-bottom: 20px;
}

.tamanho-options button {
    background-color: white;
    border: 1px solid rgb(207, 205, 205);
    padding: 3px 9px;
    font-size: 0.770rem;
    cursor: pointer;
    margin-right: 5px;
    font-family: "poppins", sans-serif;
    color: black;
    transition: background-color 0.3s, border-color 0.6s;
}

.tamanho-options button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(197, 197, 197);
    border: 1px solid rgb(207, 206, 206);
    transition: background-color 0.3s, border-color 0.6s, color 0.3s;
}

.tamanho-options button.selected {
    background-color: rgb(236, 235, 235);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(000, 000, 000);
    transition: background-color 0.3s, border-color 0.6s, color 0.3s;
}

.tamanho-options label {
    font-size: 0.750rem;
}

#tamanho-selecionado {
    font-size: 0.750rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.qty-selector button {
    background-color: #3b231b;
    border: none;
    padding: 15px 17px;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease;
}

.qty-selector button:hover {
    background-color: #e49c73;
    ;
}

.qty-selector input {
    width: 40px;
    text-align: center;
    border: 1px solid rgb(187, 186, 186);
    margin: 0 10px;
    padding: 14px 8px;
    border-radius: 5px;
}

.qty-selector .compra-btn {
    margin-left: 10px;
    background-color: #3b231b;
    color: white;
    padding: 10px 55px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s;
}

.qty-selector .compra-btn:hover {
    background-color: #e49c73;
}

.close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

.secaobuy-btn {
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

.bold {
    font-weight: bold;
}

@keyframes shine {
    0% {
        background-position: -400%;
    }
    100% {
        background-position: 400%;
    }
}

.golden-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #4B0082;
    background: linear-gradient(90deg, #8A2BE2, #DA70D6, #8A2BE2);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    transition: color 0.3s ease, background 0.3s ease;
}

.secao-link:hover .golden-text h3,
.secao-link:hover .shiny-price + .golden-text h3,
.secao-link:hover .secao-container + .golden-text h3 {
    background: linear-gradient(90deg, #5A189A, #9D4EDD, #5A189A);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

.shiny-price {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #8A2BE2;
    background: linear-gradient(90deg, #8A2BE2, #DA70D6, #8A2BE2);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    transition: color 0.3s ease;
}

.special-button {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(90deg, #8A2BE2, #DA70D6, #8A2BE2);
    background-size: 200%;
    border: none;
    padding: 10px 20px;
    border-radius: 5px; 
    cursor: pointer;
    animation: shine 3s linear infinite;
    transition: background-position 0.3s ease, box-shadow 0.3s ease; 
}

.special-button:hover {
    background-position: 200%;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7), 0 0 30px rgba(218, 112, 214, 0.7); 
}

/* ESTILOS DO MODAL DE LOGIN */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.login-modal.hidden {
    display: none;
    opacity: 0;
}

.login-modal-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 0;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.login-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1;
}

.login-close:hover {
    color: #000;
}

.login-container {
    padding: 20px;
}

.login-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #3b231b;
    border-bottom-color: #3b231b;
}

.tab-btn:hover {
    color: #3b231b;
}

.form-container {
    display: none;
}

.form-container.active {
    display: block;
}

.form-container h2 {
    margin: 0 0 20px 0;
    color: #3b231b;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    text-align: center;
}

.form-container p {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #3b231b;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3b231b;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #3b231b;
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #2a1a14;
}

.login-options {
    text-align: center;
    margin-top: 15px;
}

.login-options a {
    color: #3b231b;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.login-options a:hover {
    text-decoration: underline;
}

