/* ============================================================
   Modelo: Vinho Quente — bege quente + vinho, centralizado
   ============================================================ */
:root { --accent: #7a2230; --wine: #7a2230; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
.pf { font-family: 'Inter', system-ui, sans-serif; color: #3a2a26; background: #f5ece3; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.pf h1, .pf h2 { font-family: 'Playfair Display', serif; font-weight: 500; margin: 0; }
.pf a { color: inherit; }
.pf section { padding: 0 24px; }

.pf-nav { position: absolute; top: 0; left: 0; right: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding: 22px 30px; color: #fff; }
.pf-brand { font-family: 'Playfair Display', serif; font-size: 20px; letter-spacing: .03em; }
.pf-navlink { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; opacity: .9; }
.pf-navlink:hover { opacity: 1; }

/* hero — nome central grande */
.pf-hero { position: relative; height: 90vh; min-height: 560px; max-height: 860px; display: grid; place-items: center; overflow: hidden; padding: 0; }
.pf-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pf-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,28,30,.25), rgba(58,28,30,.15) 45%, rgba(58,28,30,.45)); }
.pf-hero:not(:has(.pf-hero-img)) { background: linear-gradient(135deg, #caa, #e7d3c8); }
.pf-hero-text { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; }
.pf-eyebrow { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; margin: 0 0 8px; opacity: .95; }
.pf-hero-text h1 { font-size: clamp(46px, 10vw, 116px); line-height: .92; font-weight: 600; text-shadow: 0 3px 30px rgba(40,10,15,.4); }
.pf-tagline { margin: 14px 0 0; font-size: clamp(13px, 2vw, 17px); letter-spacing: .28em; text-transform: uppercase; opacity: .95; }

/* niches — fita vinho */
.pf-niches { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 36px; padding: 18px 24px; background: var(--wine); color: #f3e6df; text-transform: uppercase; letter-spacing: .24em; font-size: 13px; font-weight: 500; }

/* sobre */
.pf-about { max-width: 1000px; margin: 96px auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.pf-about-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; box-shadow: 0 26px 60px rgba(90,30,40,.2); }
.pf-eyebrow2 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 19px; color: var(--wine); margin: 0 0 6px; }
.pf-about-text h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 18px; }
.pf-about-text p { color: #5b463f; font-size: 16px; margin: 0; }

/* estilos */
.pf-styles { max-width: 1000px; margin: 0 auto; padding: 116px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pf-styles h2 { font-size: clamp(34px, 6vw, 56px); line-height: 1; color: var(--wine); }
.pf-styles-list { margin: 0; padding: 0; list-style: none; counter-reset: st; columns: 2; column-gap: 30px; }
.pf-styles-list li { counter-increment: st; font-size: 16px; padding: 9px 0; break-inside: avoid; }
.pf-styles-list li::before { content: counter(st) '  '; font-family: 'Playfair Display', serif; font-weight: 600; color: var(--wine); margin-right: 6px; }

/* videos */
.pf-videos { max-width: 1100px; margin: 90px auto; text-align: center; }
.pf-videos h2 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: 34px; }
.pf-videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 26px; }
.pf-video { text-decoration: none; display: block; color: inherit; }
.pf-phone { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 9/16; background: #e8d5cb; border: 5px solid #fff; box-shadow: 0 18px 40px rgba(90,30,40,.18); transition: transform .25s ease; }
.pf-video:hover .pf-phone { transform: translateY(-6px); }
.pf-phone img, .pf-phone video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-phone-empty { width: 100%; height: 100%; display: grid; place-items: center; font-size: 30px; color: var(--wine); }
.pf-video-brand { font-weight: 600; margin: 14px 0 0; display: block; }
.pf-video-style { font-family: 'Playfair Display', serif; font-style: italic; color: #9a7d75; margin: 2px 0 0; }

.pf-mute { position: absolute; bottom: 10px; right: 10px; z-index: 3; display: inline-flex; align-items: center; gap: 5px; background: rgba(58,20,24,.65); color: #fff; border: none; cursor: pointer; border-radius: 999px; padding: 7px 11px; font: inherit; font-size: 11px; font-weight: 600; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: background .15s ease, transform .15s ease; }
.pf-mute:hover { background: rgba(58,20,24,.85); transform: scale(1.05); }
.pf-mute svg { width: 16px; height: 16px; }
.pf-mute .ic { display: none; }
.pf-mute.is-muted .ic-off { display: block; }
.pf-mute:not(.is-muted) .ic-on { display: block; }
.pf-mute.is-muted .pf-mute-hint::after { content: 'ouvir'; }

/* galeria */
.pf-gallery { max-width: 1100px; margin: 90px auto; text-align: center; }
.pf-gallery h2 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: 6px; }
.pf-gallery-intro { color: #9a7d75; margin: 0 auto 30px; max-width: 540px; }
.pf-masonry { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; text-align: left; }
.pf-masonry figure { margin: 0; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 8px 26px rgba(90,30,40,.08); }
.pf-masonry img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.pf-masonry figcaption { padding: 10px 14px; font-size: 14px; color: #5b463f; }

/* feedbacks */
.pf-feedbacks { padding: 110px 24px; text-align: center; background: #ecdcd2; }
.pf-feedbacks h2 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 36px; }
.pf-feedbacks-grid { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pf-feedback { background: #fff; border-radius: 16px; padding: 34px 28px; box-shadow: 0 10px 30px rgba(90,30,40,.07); }
.pf-feedback p { color: #5b463f; font-size: 15px; margin: 0 0 16px; }
.pf-feedback-name { font-family: 'Playfair Display', serif; font-weight: 600; color: var(--wine); }

/* equipamentos */
.pf-equip { max-width: 1100px; margin: 90px auto; text-align: center; }
.pf-equip h2 { font-size: clamp(28px, 5vw, 46px); }
.pf-equip-sub { color: #9a7d75; margin: 8px auto 36px; max-width: 560px; }
.pf-equip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-end; gap: 24px 40px; }
.pf-equip-item { margin: 0; width: 150px; }
.pf-equip-item img { width: 100%; height: 170px; object-fit: contain; }
.pf-equip-item figcaption { margin-top: 8px; font-size: 13px; color: #5b463f; }

/* metricas */
.pf-metrics { max-width: 1100px; margin: 90px auto; padding: 0 24px; }
.pf-metrics-head { text-align: center; margin-bottom: 28px; }
.pf-handle { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; margin: 0; }
.pf-metrics-note { color: #9a7d75; margin: 4px 0; }
.pf-metrics-niches { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: var(--wine); margin: 4px 0 0; }
.pf-metrics-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.pf-metrics-grid img { width: 100%; border-radius: 12px; border: 1px solid #e3cfc5; background: #fff; }

/* trabalhar juntos */
.pf-work { max-width: 1040px; margin: 90px auto; text-align: center; padding: 0 24px; }
.pf-work h2 { font-size: clamp(26px, 4.5vw, 42px); margin-bottom: 34px; }
.pf-work-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.pf-work-card { background: #ecdcd2; border-radius: 16px; padding: 26px; color: #5b463f; font-size: 15px; }
.pf-work-photo img { width: 220px; height: 300px; object-fit: cover; border-radius: 14px; box-shadow: 0 20px 50px rgba(90,30,40,.2); }

/* contato */
.pf-contact { position: relative; min-height: 480px; display: grid; place-items: center; background-size: cover; background-position: center top; background-color: var(--wine); text-align: center; color: #fff; overflow: hidden; margin-top: 90px; }
.pf-contact-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,16,22,.5), rgba(58,16,22,.85)); }
.pf-contact-inner { position: relative; z-index: 2; padding: 80px 24px; }
.pf-contact h2 { font-size: clamp(32px, 6vw, 60px); margin-bottom: 26px; }
.pf-contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; font-size: 15px; }
.pf-contact-links a, .pf-contact-links span { color: #fff; text-decoration: none; opacity: .92; }
.pf-contact-links a:hover { opacity: 1; text-decoration: underline; }
.pf-foot { text-align: center; padding: 30px; color: #9a7d75; font-size: 13px; }

@media (max-width: 760px) {
    .pf-about { grid-template-columns: 1fr; gap: 30px; margin: 60px auto; text-align: center; }
    .pf-about-photo img { max-width: 320px; margin: 0 auto; }
    .pf-styles { grid-template-columns: 1fr; gap: 22px; padding: 56px 22px; }
    .pf-styles-list { columns: 1; }
    .pf-work-grid { grid-template-columns: 1fr; }
    .pf-work-photo img { margin: 0 auto; }
    .pf-about, .pf-videos, .pf-gallery, .pf-equip, .pf-metrics, .pf-work { margin: 56px auto; }
}
@media (max-width: 560px) {
    .pf-hero { height: 80vh; min-height: 480px; }
    .pf-niches { gap: 6px 18px; font-size: 11px; letter-spacing: .14em; }
    .pf section { padding-left: 18px; padding-right: 18px; }
    .pf-videos-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .pf-masonry { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .pf-masonry figure { margin-bottom: 0; }
    .pf-feedbacks-grid, .pf-metrics-grid { grid-template-columns: 1fr; }
    .pf-equip-item { width: 110px; }
    .pf-equip-item img { height: 130px; }
    .pf-contact-links { flex-direction: column; gap: 12px; }
}
