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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    background-color: #fff0f5;
    color: #333;
    line-height: 1.5;
}

header {
    text-align: center;
    padding: 20px;
    background: #ff4d6d;
}

header img{
    width: 160px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;

}

nav a {
    text-decoration: none;
    color: #ff4d6d;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #ff4d6d;
    color:white;
    transform: scale(1.03);
}

nav a:active {
    transform: scale(0.97);
}

section {
    padding: 30px 20px;
    margin-bottom: 40px;
    scroll-margin-top: 80px;
    border-bottom: 1px solid #ffd6e0;

}

h2 {
    text-align: center;
    color: #ff4d6d;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.produto {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
    overflow: hidden;
    position: relative;
}

.esgotado {
    position: absolute;
    top: 10px;
    left: 10px;
    background: black;
    color: white;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.esgotado-card {
    opacity: 0.85;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.produto img {
    width: 100%;
    height: 250px;
    display: block;
    margin: 0 auto 10px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 10px;
    transition: 0.3s;
    border: 2px solid #ffe4ec;

}

.produto:hover img {
    transform: scale(1.08);
}

#babydoll-adulto .produto img,
#babydoll-infantil .produto img,
#camisolas .produto img {
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

#babydoll-adulto .produto img,
#babydoll-infantil .produto img,
#camisolas .produto img {
    display: block;
    margin: 0 auto;
}

#babydoll-adulto .produto:hover img,
#babydoll-infantil .produto:hover img,
#camisolas .produto:hover img {
    transform: none;    
}


.preco {
    margin-bottom: 5px;
    font-size: 18px;
    color: #e60073;
    font-weight: 600;

}

.tamanho {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;

}

.cor {
    font-size: 14px;
    margin-bottom: 10px;
    color: #722f37;
}


.btn-whatsapp {
    width: 100%;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    display: inline-block;
    background: linear-gradient(135deg, #ff4d6d, #e60073);
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgb(0,0,0,0.25);
}

.btn-whatsapp:active {
    transform: scale(0.97);
}

.produto h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.whatsapp-fixo i {
    font-size: 26px;
}

.whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-fixo:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1);}
}

.whatsapp-fixo {
    animation: pulse 3s infinite;
}

footer {
    background: #ff4d6d;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 500px) {
    nav {
        gap: 8px;
        padding: 10px;
    }

    nav a {
        font-size: 14px;
        padding: 6px 10px;
    }

    .produto img {
        height: 200px;
    }
}

.encomendas-btn {
    background: linear-gradient(135deg, #ff4d6d, #e60073);
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0,3s;
}

.encomendas-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.destaque {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffe4ec, #fff0f5);
}

.destaque h2 {
    color: #ff4d6d;
}

.destaque p {
    color: #666;
}

.cta-encomendas {
    text-align: center;
    padding: 30px 20px;
    background: #ff4d6d;
    color: white;
}

.cta-encomendas h2 {
    margin-bottom: 10px;
    color: white;
}

.cta-encomendas p {
    margin-bottom: 15px;
    font-size: 14px;
}

.btn-encomendas {
    display: inline-block;
    background: white;
    color: #ff4d6d;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-encomendas:hover {
    transform: scale(1.08);
}