* {
box-sizing: border-box;
}

body {
margin: 0;
min-height: 100vh;
background: linear-gradient(135deg, #ffd6e7, #ffeaf3);
font-family: "Segoe UI", Arial, sans-serif;
color: #2d2230;
}

.produto-home {
position: fixed;
top: 18px;
left: 18px;
z-index: 20;
min-height: 42px;
padding: 0 14px;
display: inline-flex;
align-items: center;
gap: 8px;
border: 1px solid #efbed2;
border-radius: 8px;
background: rgba(255, 255, 255, 0.9);
color: #b92d61;
font-size: 14px;
font-weight: 800;
text-decoration: none;
box-shadow: 0 12px 32px rgba(85, 35, 55, 0.18);
transition: transform 0.18s ease, background 0.18s ease;
}

.produto-home:hover,
.produto-home:focus-visible {
transform: translateY(-2px);
background: #fff;
outline: none;
}

.produto-publico {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}

.produto-card {
width: min(920px, 100%);
min-height: 430px;
background: #fff;
border-radius: 14px;
box-shadow: 0 22px 60px rgba(85, 35, 55, 0.18);
padding: 32px;
display: flex;
align-items: center;
justify-content: center;
}

.produto-conteudo {
width: 100%;
display: grid;
grid-template-columns: minmax(260px, 360px) 1fr;
gap: 34px;
align-items: center;
}

.produto-imagem-wrap {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: 12px;
background: #fff5f9;
border: 1px solid #f2cadb;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.produto-imagem {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.produto-imagem.placeholder {
object-fit: contain;
padding: 34px;
background: #fff5f9;
}

.produto-info {
min-width: 0;
}

.produto-logo {
height: 76px;
width: auto;
object-fit: contain;
margin-bottom: 18px;
}

h1 {
font-size: clamp(26px, 4vw, 42px);
line-height: 1.08;
margin: 0 0 16px;
font-weight: 800;
letter-spacing: 0;
color: #241a26;
text-transform: uppercase;
}

.produto-preco {
font-size: clamp(24px, 3vw, 34px);
font-weight: 800;
color: #e75480;
margin-bottom: 28px;
}

.produto-bloco {
margin-top: 20px;
}

.produto-label {
display: block;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #6d5b64;
margin-bottom: 10px;
}

.produto-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}

.produto-categoria {
display: inline-flex;
border: 1px solid #efbed2;
background: #fff7fa;
color: #3a2931;
border-radius: 8px;
padding: 8px 12px;
font-size: 14px;
font-weight: 800;
text-transform: uppercase;
}

.produto-tag {
border: 1px solid #efbed2;
background: #fff7fa;
color: #3a2931;
border-radius: 8px;
padding: 8px 12px;
font-size: 14px;
font-weight: 700;
}

.produto-vazio {
color: #8d7b84;
font-size: 14px;
font-weight: 600;
}

.produto-loading,
.produto-erro {
font-size: 18px;
font-weight: 700;
color: #e75480;
text-align: center;
}

@media (max-width: 760px) {
.produto-publico {
padding: 70px 14px 14px;
align-items: flex-start;
}

.produto-home {
top: 12px;
left: 12px;
min-height: 40px;
}

.produto-card {
padding: 18px;
min-height: auto;
}

.produto-conteudo {
grid-template-columns: 1fr;
gap: 22px;
}

.produto-logo {
height: 58px;
}
}
