Descrição
.pdp5 * { box-sizing: border-box; margin: 0; padding: 0; }
.pdp5 {
font-family: -apple-system, BlinkMacSystemFont, ‘Helvetica Neue’, Arial, sans-serif;
color: #1a1a1a;
background: #fff;
–blue: #2d7dd2;
–blue-light: #e8f2fc;
–navy: #1a2744;
–gray: #f7f8fa;
–border: #e8eaed;
–muted: #6b7280;
}
/* ===== HERO ===== */
.pdp5-hero {
width: 100%;
margin-bottom: 60px;
border-radius: 20px;
overflow: hidden;
line-height: 0;
}
.pdp5-hero img { width: 100%; display: block; object-fit: cover; }
/* ===== SECTION ===== */
.pdp5-section { margin-bottom: 72px; }
.pdp5-section-head {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 40px;
gap: 6px;
}
.pdp5-section-label {
font-size: 10px;
letter-spacing: 3px;
text-transform: uppercase;
color: var(–blue);
font-weight: 700;
}
.pdp5-section-title {
font-size: 22px;
font-weight: 700;
color: #111;
}
.pdp5-section-rule {
width: 40px;
height: 3px;
background: var(–blue);
border-radius: 2px;
margin-top: 4px;
}
/* ===== FEATURE CARDS — no shadow, smaller top padding ===== */
.pdp5-feat {
display: flex;
align-items: center;
margin-bottom: 24px;
border-radius: 20px;
background: #fff;
border: 1px solid var(–border);
padding: 12px 24px 24px; /* top reduced, sides & bottom unchanged */
gap: 24px;
}
.pdp5-feat.flip { flex-direction: row-reverse; }
/* Image: 1:1 square, white bg, rounded corners */
.pdp5-feat-img {
flex: 0 0 calc(50% – 12px);
position: relative;
overflow: hidden;
background: #fff;
border-radius: 14px;
}
.pdp5-feat-img::before {
content: ”;
display: block;
padding-top: 100%;
}
.pdp5-feat-img img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 14px;
transition: transform 0.4s ease;
}
.pdp5-feat:hover .pdp5-feat-img img { transform: scale(1.03); }
/* Text body */
.pdp5-feat-body {
flex: 0 0 calc(50% – 12px);
padding: 0 8px;
display: flex;
flex-direction: column;
justify-content: center;
}
.pdp5-feat-num {
font-size: 9px;
letter-spacing: 3px;
text-transform: uppercase;
color: var(–blue);
font-weight: 700;
margin-bottom: 10px;
}
.pdp5-feat-heading {
font-size: 19px;
font-weight: 700;
color: #111;
line-height: 1.3;
margin-bottom: 6px;
}
.pdp5-feat-sub {
font-size: 11px;
letter-spacing: 0.8px;
text-transform: uppercase;
color: var(–muted);
margin-bottom: 14px;
font-weight: 500;
}
.pdp5-feat-rule {
width: 32px;
height: 2px;
background: var(–blue);
border-radius: 1px;
margin-bottom: 14px;
}
.pdp5-feat-desc {
font-size: 13.5px;
color: #555;
line-height: 1.8;
}
/* ===== SPECS ===== */
.pdp5-specs-grid { display: flex; gap: 24px; flex-wrap: wrap; }
.pdp5-specs-col {
flex: 1;
min-width: 240px;
border-radius: 16px;
overflow: hidden;
border: 1px solid var(–border);
}
.pdp5-specs-head {
background: var(–navy);
color: #fff;
padding: 13px 20px;
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
text-align: center;
}
.pdp5-spec-row {
display: flex;
justify-content: space-between;
align-items: baseline;
padding: 11px 20px;
border-bottom: 1px solid var(–border);
gap: 12px;
background: #fff;
}
.pdp5-spec-row:last-child { border-bottom: none; }
.pdp5-spec-row:nth-child(even) { background: var(–gray); }
.pdp5-spec-key {
font-size: 11px;
color: var(–muted);
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
flex-shrink: 0;
}
.pdp5-spec-val {
font-size: 12px;
color: #111;
font-weight: 600;
text-align: right;
}
/* ===== FAQ ===== */
.pdp5-faq-item { border-bottom: 1px solid var(–border); }
.pdp5-faq-item:first-of-type { border-top: 1px solid var(–border); }
.pdp5-faq-item summary {
list-style: none;
padding: 18px 0;
font-size: 14px;
font-weight: 600;
color: #111;
cursor: pointer;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
user-select: none;
}
.pdp5-faq-item summary::-webkit-details-marker { display: none; }
.pdp5-faq-item summary:hover { color: var(–blue); }
.pdp5-faq-q { flex: 1; }
.pdp5-faq-icon {
flex-shrink: 0;
width: 22px; height: 22px;
border: 1.5px solid var(–blue);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
color: var(–blue);
font-weight: 400;
transition: transform 0.2s;
line-height: 1;
}
details[open] .pdp5-faq-icon { transform: rotate(45deg); }
.pdp5-faq-ans {
padding: 0 0 18px 16px;
font-size: 13px;
color: #666;
line-height: 1.8;
max-width: 640px;
border-left: 3px solid var(–blue-light);
}
@media (max-width: 640px) {
.pdp5-hero { border-radius: 12px; }
.pdp5-feat, .pdp5-feat.flip { flex-direction: column; gap: 16px; padding: 16px 16px 20px; }
.pdp5-feat-img { flex: none; width: 100%; }
.pdp5-feat-body { flex: none; padding: 0; }
.pdp5-specs-grid { flex-direction: column; }
}





















Avaliações
Ainda não existem avaliações.