/*
  NOVA PALETA DE CORES - IBIZA CALÇADOS (Dourado/Amarelo e Preto/Grafite)
  - Cor Principal (Dourado/Amarelo): #D4AF37 (ou #FFD700 para um dourado mais vibrante, estou usando o primeiro)
  - Cor de Destaque (Hover): #B8860B (um dourado mais escuro para hover)
  - Cor de Fundo: #000000 (preto) ou #1a1a1a (grafite escuro)
  - Cor de Texto: #ffffff (branco) ou #f0f0f0 (cinza muito claro) para contraste com fundo escuro.
    Mantido preto para seções com fundo claro.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    /* Fundo principal claro */
    color: #000000;
    font-size: 16px;
    position: relative;
}

header {
    position: fixed;
    top: 0;
    height: 11%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.74);
    color: #ffffff;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 150px;
    flex-shrink: 0;
}

.logo {
    width: 200%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 200px;
    transition: transform 0.0s ease;
    padding: 10px 10px;
    padding-left: 30px;
}

.logo-link:hover .logo {
    transform: scale(1.1);
}

.logo-link.touch-feedback-active .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 20px;
    margin-right: 30px;
    margin-top: 3px;
    align-items: center;
}

nav a {
    color: #ffffff;
    /* Links do menu brancos */
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

nav a:hover {
    color: #D4AF37;
    /* Dourado no hover */
    transform: scale(1.05);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #D4AF37;
    /* Linha inferior dourada */
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link i {
    font-size: 28px;
    line-height: 0;
}

.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 11;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: #ffffff;
    /* Cor do ícone do menu no header escuro */
    border-radius: 2px;
    transition: all 0.3s ease;
}

#servicos {
    scroll-margin-top: 10px;
}


#sobre {
    scroll-margin-top: 70px;
}


#contato {
    scroll-margin-top: 70px;
}


#endereco {
    scroll-margin-top: 70px;
}

.hero-section {
    height: 120vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2vw;
    color: #020202;
    position: relative;
    background-image: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.2) 70%), url('background-ibiza.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    /* Dourado escurecido na sobreposição */
    opacity: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    width: 45%;
    z-index: 6;
    text-align: center;
    align-items: center;
    padding-left: 10px;
    transform: translateY(-90px);
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    width: 100%;
    color: #e2e2e2;
    /* Dourado para o título principal */
    text-align: center;
    border-radius: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #ffffff;
    /* Branco para o texto de apoio */
    text-align: center;
    width: 100%;
    border-radius: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero-content.visible h1,
.hero-content.visible p,
.hero-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.visible p {
    transition-delay: 0.2s;
}

.hero-content.visible .btn {
    transition-delay: 0.4s;
}


.container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    background-color: #f8f9fa;
}




.list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    opacity: 0;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 2;

}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 500px;
}

.product-img img {
    width: 75%;
    height: auto;
    max-width: 450px;
    border-radius: 30px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    border-radius: 50px;
}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 900px;
    padding-left: 10px;
}

.product-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #666666;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .product-tag {
    transform: translateX(0);
    opacity: 1;
}

.product-name {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .product-name {
    transform: translateX(0);
    opacity: 1;

}

.description {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 500px;
    text-align: justify;
    opacity: 0;
    transform: translateX(600px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    color: #000000;
    background: linear-gradient(90deg, #D4AF37, #FFD700);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.btn:hover {
    transition-duration: 0.05s;
    transition-timing-function: ease-out;
    background: linear-gradient(90deg, #B8860B, #D4AF37); /* Dourado mais escuro no hover */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

.item .content .btn {
    opacity: 1;
    transform: translateX(700px); /* Define o estado inicial: invisível e fora da tela */
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s; /* Define um pequeno atraso para um efeito cascata */
   
}

.active .content .btn {
    transform: translateX(0); /* Define o estado final: na posição correta */
    opacity: 1; /* E totalmente visível */
}



.arrows {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #D4AF37; /* Dourado para as setas */
    background-color: #1a1a1a; /* Fundo das setas grafite escuro */
    border: 1px solid #D4AF37; /* Borda dourada */
}

.arrow-btn:hover {
    background-color: #B8860B; /* Dourado escuro no hover */
    border-color: #FFD700; /* Dourado vibrante no hover */
}

.indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 10px;
    top: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;

}

.dot.active {
     background-color: #D4AF37;
}

.about-us-section {
    display: flex;
    min-height: 82vh;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    background-color: #000000b4;
    /* Fundo preto para a seção Sobre Nós */
    color: #ffffff;
    /* Texto branco */
}

.about-us-logo {
    max-width: 150px;
    width: 150%;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #D4AF37;
    /* Dourado para o título da seção */
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1.5rem;
    color: #f0f0f0;
    /* Cinza claro para o texto */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: justify;
}

.purpose-section {
    padding: 80px 30px;
    text-align: center;
    background-color: #1a1a1a;
    /* Fundo grafite escuro para a seção Propósito */
    color: #ffffff;
}

.purpose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    /* Dourado para o título principal */
    margin-bottom: 20px;
}

.purpose-section p {
    font-size: 1.1rem;
    color: #f0f0f0;
    /* Cinza claro para o texto */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.purpose-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.purpose-card {
    background-color: #000000;
    /* Fundo preto para os cartões */
    border: 1px solid #333333;
    /* Borda grafite */
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /* Sombra mais intensa */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    /* Sombra dourada no hover */
}

.purpose-card-content {
    padding: 35px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purpose-icon {
    font-size: 3rem;
    color: #D4AF37;
    /* Dourado para os ícones */
    margin-bottom: 20px;
    line-height: 1;
}

.purpose-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    /* Títulos dos cartões brancos */
    margin-bottom: 15px;
}

.purpose-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
    /* Descrição dos cartões cinza claro */
    flex-grow: 1;
}

.address-section {
    height: 90vh;
    padding: 30px 30px;
    text-align: center;
    margin-bottom: 1px;
    background-color: #f8f9fa;
    /* Fundo claro para a seção de endereço */
}

.address-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;
}

#endereco-link {
    display: inline-block;
    color: #D4AF37;
    /* Dourado para o link do endereço */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

#endereco-link:hover {
    color: #B8860B;
    /* Dourado escuro no hover */
    transform: scale(1.05);
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #D4AF37;
    /* Linha inferior dourada */
    transition: width 0.3s ease;
}

#endereco-link:hover::after {
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 410px;
    border-radius: 15px;
    top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Sobreposição escura para o mapa */
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.map-overlay::after {
    content: 'Clique aqui para interagir com o mapa';
    font-weight: 600;
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-section {
    height: auto;
    min-height: 90vh;
    padding: 30px 30px;
    text-align: center;
    background-color: #2c2c2c;
    /* Fundo preto para a seção de contato */
    color: #ffffff;
    /* Texto branco */
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #D4AF37;
    /* Dourado para o título */
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #f0f0f0;
    /* Cinza claro para o texto */
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.contact-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-top: 10px;
}

.contact-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333333;
    /* Borda grafite */
    background-color: #1a1a1a;
    /* Fundo do cartão grafite */
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 0 5px #D4AF37;
    /* Sombra dourada no hover */
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    /* Dourado para os títulos dos cartões */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-card p {
    color: #ffffff;
    /* Texto branco nos cartões */
}

.contact-card .btn {
    opacity: 1;
    transform: none;
    margin-top: 20px;
    display: inline-block;
    color: #000000;
    /* Texto do botão preto */
}

.social-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    /* Ícones sociais brancos */
    font-size: 22px;
    text-decoration: none;
    background-color: #2e2e2eab;
    /* Fundo dos ícones grafite transparente */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.social-bar a[href*="facebook.com"]:hover {
    background-color: #004eb4;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366;
}

.social-bar a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

footer {
    padding: 40px 20px;
    padding-bottom: 80px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;
    /* Fundo preto para o rodapé */
}

.legal-page-content {
    background-color: #ffffff;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    /* Dourado para o título */
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.legal-page-content>p:first-of-type {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef;
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #343a40;
    margin-bottom: 1.2em;
}

.legal-page-content ul,
.legal-page-content ol {
    padding-left: 25px;
    margin-bottom: 1.2em;
}

.legal-page-content li {
    margin-bottom: 0.8em;
}

.legal-page-content strong {
    color: #D4AF37;
    /* Dourado para destaque */
}

.legal-page-content a {
    color: #D4AF37;
    /* Dourado para links */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #D4AF37;
    transition: all 0.3s ease;
}

.legal-page-content a:hover {
    color: #000000;
    /* Preto no hover do link */
    background-color: #D4AF37;
    border-bottom-color: #D4AF37;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    /* Fundo grafite para o banner de cookies */
    border-top: none;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    color: #ffffff;
    /* Texto branco no banner */
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-text a {
    color: #D4AF37;
    /* Dourado para links no banner */
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #fff;
}

#accept-consent-btn {
    flex-shrink: 0;
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {

    .logo-link {
        width: 70%;
        max-width: none;
        padding: 5px 10px 10px;
        display: block;
        text-align: left;
    }

    .logo {
        width: 150%;
        max-width: 150px;
        display: inline-block;
        padding: 20px 10px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 10%;
        transition: background-color 0.3s ease;

    }

    header.open {
        width: 100%;
        height: auto;
        background-color: rgba(0, 0, 0, 0.74);
        /* Fundo do cabeçalho escuro no mobile */
        padding-bottom: 20px;
        height: auto;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 1px 0px;
        margin-top: 1px;
    }

    header.open nav {
        display: flex;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding: 1px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 1rem;
        color: #ffffff;
        /* Links do menu brancos no mobile */
    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 3px solid rgba(255, 255, 255, 0.15);
        /* Borda branca transparente */
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    nav a:hover {
        color: #D4AF37;
        /* Dourado no hover */
    }

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #D4AF37;
        /* Linha inferior dourada */
        transition: width 0.3s ease;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 40px;
        right: 25px;
        margin-top: -3%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    #servicos {
        scroll-margin-top: 100px;
    }

    #sobre {
        scroll-margin-top: 80px;
    }


    #proposito,


    #contato {
        scroll-margin-top: 80px;
    }

    #endereco {
        scroll-margin-top: 100px;
    }

    .hero-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        box-sizing: border-box;
        bottom: 0;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url('background-ibiza.png');
        /* Imagem de fundo escura */
        background-size: cover;
        background-position: center;
        filter: brightness(80%) contrast(100%);
        /* Ajustar para a paleta escura */
    }

    .hero-content {
        position: absolute;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 15%;


    }

    .hero-content h1 {
        font-size: 2.5rem;
        width: 100%;
        text-align: center;
        align-items: center;
        color: #e2e2e2;
        /* Dourado para o título */
        font-weight: 800;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);

    }

    .hero-content p {
        font-size: 1.2rem;
        justify-content: center;
        width: 90%;
        text-align: center;
        color: #ffffff;
        /* Branco para o texto */
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);

    }

    .highlight {
        color: #D4AF37;
        /* Dourado para o destaque */
        font-weight: 700;
    }

    .hero-content .btn {
        width: 70%;
        max-width: 300px;
        padding: 15px 10px;
        text-align: center;
        box-sizing: border-box;
        color: #000000;
        /* Texto do botão preto */
    }


    .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
        margin-top: 0;
        padding-top: 0;


    }

    .item {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 0;
        padding-top: 0px;
        margin-top: 0;
        text-align: center;
        opacity: 0;
        transform: translateX(100vw);
        transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
        z-index: 2;

    }

    .active {
        opacity: 1;
        transform: translateX(0);
    }

    .product-img {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1px;
    }

    .product-img img {
        width: 100%;
        height: 100%;
    }

    .active .product-img img {
        transform: translateX(0);
        opacity: 1;
    }

    .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .product-tag {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .active .product-tag {
        transform: translateX(0);
        opacity: 1;
    }

    .product-name {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 8px;
        max-width: 95%;
        color: #D4AF37;
        /* Dourado para o nome do produto */
    }

    .active .product-name {
        transform: translateX(0);
        opacity: 1;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 16px;
        max-width: 90%;
    }

    .active .description {
        transform: translateX(0);
        opacity: 1;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
        color: #000000;
        /* Texto do botão preto */
    }

    .active .btn {
        transform: translateX(0);
        opacity: 1;
    }

    .arrows {
        width: 95%;
        height: auto;
        top: 42%;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        color: #D4AF37;
        /* Dourado para as setas */
        background-color: #1a1a1a;
        /* Fundo das setas grafite escuro */
    }

    .indicators {
        bottom: 100px;
    }

    .dot {
        width: 25px;
    }


    .about-us-section {
        top: 0;
        margin-top: 0;
        padding-top: 10;
        margin-bottom: 0px;
    }

    .about-us-section h2 {
        font-size: 2rem;
        line-height: 1.2;
        color: #D4AF37;
        /* Dourado para o título */
    }

    .about-us-section p {
        font-size: 1rem;
        color: #f0f0f0;
        /* Cinza claro para o texto */
    }

    .purpose-section {
        padding: 60px 20px;
    }

    .purpose-section h2 {
        font-size: 2.2rem;
        color: #D4AF37;
        /* Dourado para o título */
    }

    .purpose-section p {
        font-size: 1rem;
        margin-bottom: 40px;
        color: #f0f0f0;
        /* Cinza claro para o texto */
    }

    .purpose-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .purpose-card {
        max-width: 300px;
        background-color: #000000;
        /* Fundo preto para os cartões */
        border-color: #333333;
        /* Borda grafite */
    }

    .purpose-icon {
        color: #D4AF37;
        /* Dourado para os ícones */
    }

    .purpose-title {
        color: #ffffff;
        /* Títulos dos cartões brancos */
    }

    .purpose-description {
        color: #e0e0e0;
        /* Descrição dos cartões cinza claro */
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .article-actions {
        flex-direction: column;
        gap: 30px;
    }

    .address-section {
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 15px;
        padding-top: 35px;
        bottom: 100px;
        margin-bottom: 30px;
    }

    .address-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    #endereco-link {
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: #D4AF37;
        /* Dourado para o link do endereço */
    }

    .map-container {
        height: 280px;
        top: 15px;
    }

    .map-overlay::after {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-section {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 5px;
        align-items: center;
        background-color: #000000;
        /* Fundo preto para a seção de contato */
    }

    .contact-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        color: #D4AF37;
        /* Dourado para o título */
    }

    .contact-section p {
        font-size: 1rem;
        margin-bottom: 30px;
        color: #f0f0f0;
        /* Cinza claro para o texto */
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .contact-card {
        width: 95%;
        max-width: 320px;
        padding: 20px;
        background-color: #1a1a1a;
        /* Fundo do cartão grafite */
        border-color: #333333;
        /* Borda grafite */
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #D4AF37;
        /* Dourado para os títulos dos cartões */
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        color: #ffffff;
        /* Texto branco nos cartões */
    }

    .contact-card .btn {
        width: 70%;
        padding: 15px 20px;
        font-size: 0.9rem;
        color: #000000;
        /* Texto do botão preto */
    }

    footer {
        padding: 40px 20px;
        padding-bottom: 80px;
        background-color: #000000;
        /* Fundo preto para o rodapé */
    }

    footer p,
    footer P {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer-links {
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .social-bar {
        bottom: 20px;
        gap: 10px;
    }

    .social-bar a {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .arrow-btn:hover {
        background-color: #1a1a1a;
        /* Mantém o fundo grafite no hover */
        border: 1px solid #D4AF37;
        /* Borda dourada no hover */
    }

    .arrow-feedback-active {
        background-color: #FFD700 !important;
        /* Dourado vibrante para feedback */
        border-color: #D4AF37 !important;
        /* Borda dourada */
    }

    .facebook-feedback-active {
        background-color: #1877F2 !important;
    }

    .whatsapp-feedback-active {
        background-color: #25D366 !important;
    }

    .instagram-feedback-active {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    }

    #consent-banner {
        flex-direction: column;
        padding: 15px 10px;
        text-align: center;
        background-color: #333333;
        /* Fundo grafite para o banner de cookies */
    }

    .consent-text {
        font-size: 0.75rem;
        margin-bottom: 10px;
        color: #ffffff;
        /* Texto branco */
    }

    .consent-text a {
        color: #D4AF37;
        /* Dourado para links no banner */
    }

    #accept-consent-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
        color: #000000;
        /* Texto do botão preto */
    }
}