/* Estilos básicos para Efeito Sensual */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --cor-principal: #E87A90; /* Rosa do logo (aproximado) */
    --cor-texto: #333;
    --cor-fundo: #fff;
    --cor-fundo-header-footer: #f8f8f8; /* Um cinza bem claro */
    --fonte-titulo: 'Dancing Script', cursive;
    --fonte-corpo: 'Montserrat', sans-serif;
}

body {
    font-family: var(--fonte-corpo);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
}

header {
    background-color: var(--cor-fundo-header-footer);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-family: var(--fonte-titulo);
    color: var(--cor-principal);
    font-size: 2.8em; /* Aumentar um pouco */
    margin-bottom: 0.2rem; /* Reduzir espaço abaixo do H1 */
    font-weight: 600;
}

header img {
    display: block; /* Para centralizar mais fácil */
    margin: 0 auto 0.5rem auto; /* Centraliza e adiciona espaço abaixo */
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

nav ul li {
    display: inline;
    margin: 0 15px; /* Aumentar espaçamento */
}

nav a {
    text-decoration: none;
    color: var(--cor-texto);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
    color: var(--cor-principal);
}

main {
    padding: 2rem;
    min-height: 60vh; /* Garante um espaço mínimo */
    max-width: 1200px; /* Limita largura do conteúdo */
    margin: 0 auto; /* Centraliza o conteúdo */
}

main h2 {
    color: var(--cor-principal);
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--fonte-titulo);
    font-size: 2.2em;
    font-weight: 600;
}

footer {
    background-color: var(--cor-fundo-header-footer);
    color: var(--cor-texto);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid #eee;
}

/* Estilos específicos para a página da loja */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Layout responsivo */
    gap: 1.5rem; /* Aumentar espaço */
    margin-top: 1rem;
}

.product-item {
    border: 1px solid #eee;
    padding: 1rem;
    text-align: center;    background-color: #FFF5F7; /* Rosa bem claro */   border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.product-item h3 {
    font-size: 1.1em;
    margin-bottom: 0.5rem;
    color: var(--cor-texto);
}

.product-item span {
    display: block;
    font-weight: bold;
    color: var(--cor-principal);
    margin-top: 0.5rem;
}

/* Estilos específicos para a página de contato */
.contact-info {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.8rem;
}

.contact-info a {
    color: var(--cor-principal);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#map {
    height: 350px; /* Aumentar altura */
    background-color: #eee; /* Placeholder para o mapa */
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 5px;
}

/* Responsividade básica */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }
    main h2 {
        font-size: 1.8em;
    }
    nav ul li {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    main {
        padding: 1rem;
    }
    .product-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }
}




/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366; /* Verde WhatsApp */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #FFF;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Verde mais escuro no hover */
}

