* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 60px;
}

nav .logo {
    display: flex;
    align-items: center;
}

nav .logo a {
    display: inline-block;
}

nav .logo-img {
    max-height: 100px;
    width: auto;
}

/* Navegação - Itens */
nav .menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav .menu li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.carrinho{
    height: 84px;
    width: 84px;
}

nav .menu li a:hover {
    text-decoration: underline;
}

.frase {
    position: fixed;
    top: 60px;
    width: 100%;
    background-color: #8c52ff;
    color: white;
    text-align: center;
    padding: 8px 20px;
    line-height: 1.4;
    z-index: 999;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frase p {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.foto-container {
    margin-top: 100px;
}

.foto {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.catalogo {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.titulo-catalogo {
    text-align: center;
    color: #555;
    margin-top: 25px;
    font-size: 15px;
}

.produto {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.produto img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.produto p {
    font-size: 18px;
    color: #333;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    margin-top: 50px;
}

/* setas - navegação */
.catalogo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev, .next {
    background-color: #8c52ff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.prev:hover, .next:hover {
    background-color: #6e3bd1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Localização */
.visite-loja {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 60px;
    margin-bottom: 50px;
}

.img-mapa {
    align-self: flex-start;
    max-width: 65%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img-visite {
    align-self: flex-end;
    max-width: 30%;
    width: 100%;
    height: auto;
}

.catalogo-estilos {
    display: flex;
    gap: 20px;
    padding: 40px 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.destaque-cores {
    flex: 1 1 50%;
    min-width: 300px;
    position: relative;
}

.imagem-destaque {
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background-image: url('../images/brilhantes.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.texto-destaque {
    color: white;
    text-align: left;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.texto-destaque h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
}

.texto-destaque p {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.botao-destaque {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: black;
    color: white;
    padding: 20px 30px;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 5px;
    z-index: 2;
}
/* Grid (Direita) */
.tipos-cores-grid {
    flex: 1 1 40%;
    min-width: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.bloco-cor {
    background-color: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 150px;
}

.cor-preview {
    height: 70%;
    background-color: #ddd; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fosca .cor-preview {
    background-image: url('../images/fosca.png');
}

.acetinada .cor-preview {
    background-image: url('../images/acetinada.png');
}

.emborrachada .cor-preview {
    background-image: url('../images/emborachada.png');
}

.semibrilhosa .cor-preview {
    background-image: url('../images/semibrilante.png');
}

.texto-bloco {
    background-color: white;
    padding: 10px 15px;
    text-align: left;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta-bloco {
    color: black;
    font-size: 1.2em;
}
