/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #ffffff; /* Alterado para branco */
    height: 100%;
    overflow: visible;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff; /* Alterado para branco */
    color: #333; /* Alterado para combinar com o texto */
    border-bottom: 1px solid #e0e0e0; /* Adicionada uma borda inferior */
}

.navbar {
    display: flex;
    justify-content: space-between; /* Alinha espaçadamente */
    align-items: center;
    padding: 10px 20px;
}

.nav-left, .nav-right {
    flex: 1; /* Faz as barras de navegação ocuparem o mesmo espaço */
}

.nav-right {
    justify-content: flex-end;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333; /* Alterado para combinar com o texto */
    font-size: 1.1em;
    padding: 5px 15px;
    transition: background 0.3s ease;
    font-family: 'Bebas Neue', sans-serif; /* Fonte forte e impactante */
}

.navbar ul li a:hover {
    background-color: #f0f0f0;
    border-radius: 5px;
}

.logo {
    flex: 0; /* Faz a logo ocupar o menor espaço necessário */
}

.logo h1 {
    font-size: 1.8em;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: 'Graffiti Font', sans-serif; /* Fonte de grafite ou manual */
    text-align: center; /* Garante que a logo esteja no centro */
}


/* Estilo para o link dentro do título */
.titulo {
    color: #333; /* Alterado para combinar com o texto */
    text-decoration: none;
}

.titulo:active,
.titulo:focus,
.titulo:hover {
    color: #333;
}

.hero, .features {
    min-height: 100vh; /* Cada seção ocupa a tela inteira */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero {
    background-image: url('imgs/dukria.jpg');
    background-size: cover;
    background-position: center;
    color: #333; /* Alterado para combinar com o texto */
    position: relative;
    z-index: 1;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* Alterado para branco semitransparente */
    z-index: -1;
}

.hero h2 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', sans-serif;
}

.hero button {
    padding: 15px 30px;
    font-size: 1.2em;
    background-color: #333; /* Alterado para combinar com o texto */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
main.sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Altura total da viewport */
    text-align: center;
}

main.sobre p {
    max-width: 600px;
    /* Define uma largura máxima para o texto, opcional */
    padding: 20px;
    /* Adiciona algum espaço ao redor do texto */
    font-size: 1.5em;
    /* Ajuste o tamanho da fonte conforme desejado */
}
.hero button:hover {
    background-color: #555;
}

.features {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1px;
}

.feature {
    text-align: center;
    padding: 10px;
    flex: 1;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin: 10px;
}

.feature img {
    width: 100%;
    height: auto;
    margin-bottom: 1px;
    border-radius: 10px;
    object-fit: cover;
}

.feature:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #fff; /* Alterado para branco */
    color: #333; /* Alterado para combinar com o texto */
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #e0e0e0; /* Adicionada uma borda superior */
    margin-top: 20px;
}

footer .social-media {
    margin-bottom: 15px;
}

footer .social-media a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-media img {
    height: 1.3rem;
    width: 1.3rem;
}

footer p {
    font-size: 0.9em;
}
/* Estilos para o carrossel */
.carousel-container {
    position: relative;
        width: 100%;
        max-width: 700px;
        /* Ajuste conforme necessário */
        margin: 0 auto;
        overflow: hidden;
        transform: translateX(20px);
        /* Move o carrossel 20px para a direita */
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item img {
    width: 90%;
        /* Reduzido para 90% da largura do container */
        height: auto;
        border-radius: 10px;
        object-fit: cover;
        margin: 0 auto;
        /* Centraliza a imagem */
    }

/* Controles do carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 1000;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 80px;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Cards flutuantes */
.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 80%;
}

.collection-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    width: 30%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.collection-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.hidden {
    display: none;
}


/* Responsividade */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .collection-card {
        width: 80%;
    }
}

/* Loja */
.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 80px;
    padding: 20px;
}

.product {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    width: 300px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product select,
.product input {
    margin: 10px 0;
    padding: 5px;
    width: 100%;
}

.product button {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 5px;
}

.product button:hover {
    background-color: #555;
}

.frete {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.frete-result {
    min-height: 1em;
}