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

:root {
    --bg-principal: #FFFFFF;
    --bg-suave: #F7F2EF;
    --nude-rosado: #CFA095;
    --texto-principal: #4A4A4A;
    --texto-secundario: #6F6F6F;
    --bordas-suaves: #E6E0DC;
    --hover: #B88D82;
    --sombra-leve: rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Baskerville', serif;
    color: var(--texto-principal);
    background-color: var(--bg-principal);
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--texto-secundario);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    background-color: var(--bg-principal);
    padding: 2rem 0;
    box-shadow: 0 2px 10px var(--sombra-leve);
}

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

.logo img {
    height: 220px;
    width: auto;
}

.hero {
    padding: 6rem 0 4rem;
    background-color: var(--bg-suave);
    text-align: center;
}

.hero h1 {
    color: var(--texto-principal);
}

.subtitle {
    font-size: 3.5rem;
    color: var(--texto-principal);
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.produtos {
    padding: 6rem 0;
    background-color: var(--bg-principal);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.produto-card {
    background-color: var(--bg-principal);
    border: 2px solid var(--bordas-suaves);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.produto-card:not(.em-breve):hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--sombra-leve);
    border-color: var(--nude-rosado);
}

.produto-card.em-breve {
    opacity: 0.7;
    cursor: default;
}

.produto-image {
    width: 100%;
    height: 300px;
    background-color: var(--bg-suave);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-image.placeholder {
    background-color: var(--bg-suave);
}

.produto-image.placeholder svg {
    color: var(--nude-rosado);
    opacity: 0.3;
}

.produto-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-content h3 {
    color: var(--texto-principal);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.produto-content p {
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
}

.produto-content .btn-produto {
    display: inline-block !important;
    margin-top: 1.5rem !important;
    padding: 1rem 2.5rem !important;
    background-color: var(--nude-rosado) !important;
    color: var(--bg-principal) !important;
    border-radius: 30px !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-family: 'Libre Baskerville', serif !important;
}

.produto-card:hover .produto-content .btn-produto {
    background-color: var(--hover) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(207, 160, 149, 0.3) !important;
}

.produto-content .badge-breve {
    display: inline-block !important;
    margin-top: 1.5rem !important;
    padding: 0.75rem 1.5rem !important;
    background-color: var(--bg-suave) !important;
    color: var(--texto-secundario) !important;
    border-radius: 30px !important;
    font-size: 1.5rem !important;
    text-align: center !important;
    font-family: 'Libre Baskerville', serif !important;
}

footer {
    padding: 3rem 0;
    background-color: var(--bg-suave);
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.15rem;
    }

    .logo img {
        height: 140px;
    }

    .subtitle {
        font-size: 2.25rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .produtos {
        padding: 4rem 0;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .produto-image {
        height: 250px;
    }

    .produto-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .logo img {
        height: 100px;
    }

    .subtitle {
        font-size: 1.75rem;
    }
}
