/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    font-weight: bold;
}

.logo {
   margin: 0 15px; /* Espaço entre a logo e o h1 */
    font-size: 1.8rem;
    color: #333;
    white-space: nowrap; /* Garante que o texto não quebre em linhas */
}

.logodoce{
margin-left: 15px;
justify-content: center; 
max-width: 20px;
}

.logodoce img{
    height: 200px;
    margin-top: 30px;
}

.navlinks {
font-size: 20px;
font-weight: bold;
gap: 5px;
align-items: center;
justify-content: center;

}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #f8b7d4;
    padding: 20px 0;
    border-bottom: 2px solid #e091ae;
    display: flex; /* Ativa o layout flexbox */
    align-items: center; /* Alinha verticalmente o conteúdo */
    height: 250px;
}

/* Carrinho */
.carrinho-icon {
    position: absolute;
    top: 85px;
    right: 70px;
    font-size: 1.5rem;
}

.carrinho-icon a {
    color: #333;
    text-decoration: none;
    position: relative;
}

.carrinho-contador {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #974563;
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    display: none;
}

/* button scroll-top */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 25px;
    background-color: #e091ae;
    color: #fff;
    border: 1px solid #b66884;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 1000;
}

@media screen and (max-width: 720px) {
    .scroll-top {
        font-size: 14px;
    }
}
/* fim do button scroll-top */

.logo {
    font-size: 50px;
    color: #333;
    text-align: center;
    font-style: italic;
    margin-left: 100px; /* Espaço entre a logo e o h1 */
    margin-top: -200px;
    padding: 50px 10px;
}

.navlinks ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-left: 30px;
}

.navlinks a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.navlinks a:hover {
    color: #ffffff;
}

.hero {
    background: #ffe9f1;
    text-align: center;
    padding: 50px 20px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

p {
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #e091ae;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #d1738f;
}

.produtos {
    padding: 40px 20px;
    background: #fff;
}

.produtos h2 {
    text-align: center;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.produto {
    position: relative; /* Necessário para fixar o botão dentro do card */
    text-align: center;
    padding: 40px;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    transition: transform 0.3s;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px; /* Garante espaço para o botão */
}

.produto:hover {
    transform: scale(1.05);
}

.produto img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    max-height: 200px;
    max-width: 500px;
}

.produto h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.produto p {
    font-size: 1rem;
    color: #382e2eee;
}

/* button preços */
.button-valor {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%; /* Reduzindo a largura */
    text-align: center;
    padding: 8px 10px; /* Diminuindo o padding */
    font-size: 0.9rem; /* Diminuindo o tamanho da fonte */
    background: #e091ae;
    color: #fff;
    text-decoration: none;
    border: 1px solid #333;
    border-radius: 10px; /* Bordas um pouco menores */
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Efeito hover */
.button-valor:hover {
    background: #d17895;
}

.contato {
    padding: 40px 20px;
    background: #ffe9f1;
}

.contato h2 {
    text-align: center;
    margin-bottom: 20px;
}


/* footer */
.footer{
    margin-top: 100px;
    padding: 60px 20px 30px 20px;
    width: 100%;
    background-color: #ffe9f1;
    height: auto; /* Ajustado para não ocupar 100% da altura */
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.1); /* Suave sombra */
    text-align: center;
}

footer .column {
    text-align: center; /* Centraliza os itens */
    margin-bottom: 2rem;
}

footer .column p {
    color: #5c4d4d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

footer .column .socials {
    display: flex;
    justify-content: center; /* Alinha os itens horizontalmente */
    gap: 1.5rem;
    margin-bottom: 20px;
}

footer .column .socials a {
    color: #382e2eee;
    border: 2px solid #382e2eee;
    padding: 12px;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    background-color: white; /* Fundo branco para destacar os ícones */
}

footer .column .socials a:hover {
    color: #ffffff;
    background-color: #e091ae;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0px 6px 12px rgba(255, 255, 255, 0.4);
}

/* Estilização dos títulos e links do footer */
footer .column h4 {
    color: #382e2eee;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center; /* Centraliza o título */
}

footer .column > a {
    display: block;
    color: #ccc;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .column > a:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

/* Copyright */
.copyright {
    max-width: 2000px;
    margin-top: 20px;
    padding-top: 10px;
    color: #382e2eee;
    font-size: 1rem;
    text-align: center;
}

footer .socials-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

footer .socials-wrapper h4 {
    margin-bottom: 1rem;
}

.footer--area {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer--logo {
    flex: 1;
    text-align: center;
}

.footer--links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer--link {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


@media screen and (max-width: 480px) {
    .logo{
        display: none;
    }
    .logodoce img {
        height: 150px;
        width: 150px;
        margin-top: 30px;
        margin-left: 10px;
    }

    .navlinks ul {
        margin-left: 0;
        margin-bottom: 40px;
    }
    .carrinho-icon {
        position: absolute;
        top: 90px;
        right: 80px;
        font-size: 2rem;
    }

}