/* =========================================================
   Performa Lavanderias — Novo site de apresentação (2025)
   Design moderno, responsivo e leve. Classes prefixadas "pf-"
   para não colidir com styles.css / index.css das demais páginas.
   ========================================================= */

@font-face {
    font-family: 'Renogare';
    src: url('../font/Renogare-Regular.otf') format('opentype');
    font-display: swap;
}

:root {
    --pf-blue: #0098DA;
    --pf-blue-dark: #0077ae;
    --pf-cyan: #24c6ff;
    --pf-marine: #3E4095;
    --pf-orange: #FF8800;
    --pf-orange-dark: #e67900;
    --pf-yellow: #FECF00;
    --pf-ink: #16233a;
    --pf-grey: #5b6b82;
    --pf-muted: #7d8ba0;
    --pf-line: #e6edf5;
    --pf-bg: #f5f9fd;
    --pf-white: #ffffff;
    --pf-radius: 22px;
    --pf-radius-sm: 14px;
    --pf-shadow: 0 24px 50px -28px rgba(0, 90, 150, .45);
    --pf-shadow-sm: 0 12px 28px -18px rgba(0, 70, 120, .40);
    --pf-grad: linear-gradient(120deg, #0098DA 0%, #24c6ff 100%);
    --pf-grad-orange: linear-gradient(120deg, #ff9a1f 0%, #ff7a00 100%);
    --pf-nav-h: 86px;
}

/* ---------- Base ---------- */
.pf-site * {
    box-sizing: border-box;
}

.pf-site {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--pf-ink);
    background: var(--pf-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--pf-nav-h);
}

.pf-site img {
    max-width: 100%;
    display: block;
}

.pf-display {
    font-family: 'Renogare', 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.08;
}

.pf-container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

.pf-section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.pf-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pf-blue);
    background: rgba(0, 152, 218, .10);
    padding: 7px 16px;
    border-radius: 999px;
}

.pf-h2 {
    font-size: clamp(28px, 4vw, 46px);
    color: var(--pf-ink);
    margin: 18px 0 0;
}

.pf-h2 .pf-hl {
    color: var(--pf-blue);
}

.pf-lead {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--pf-grey);
    line-height: 1.7;
    font-weight: 300;
}

.pf-center {
    text-align: center;
}

.pf-section-head {
    max-width: 680px;
    margin: 0 auto clamp(40px, 5vw, 64px);
}

.pf-section-head .pf-lead {
    margin-top: 14px;
}

/* ---------- Buttons ---------- */
.pf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.pf-btn:hover {
    transform: translateY(-3px);
}

.pf-btn-primary {
    background: var(--pf-grad-orange);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(255, 122, 0, .8);
}

.pf-btn-primary:hover {
    box-shadow: 0 20px 34px -12px rgba(255, 122, 0, .9);
    color: #fff;
}

.pf-btn-blue {
    background: var(--pf-grad);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(0, 152, 218, .8);
}

.pf-btn-blue:hover {
    color: #fff;
}

.pf-btn-ghost {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.pf-btn-ghost:hover {
    background: #fff;
    color: var(--pf-blue);
}

.pf-btn-outline {
    background: transparent;
    border-color: var(--pf-blue);
    color: var(--pf-blue);
}

.pf-btn-outline:hover {
    background: var(--pf-blue);
    color: #fff;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.pf-nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--pf-nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
    background: linear-gradient(90deg, rgba(0, 120, 175, .18), rgba(0, 152, 218, .10));
}

.pf-nav.pf-scrolled {
    background: rgba(255, 255, 255, .88);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px -18px rgba(0, 60, 110, .5);
}

.pf-nav-inner {
    width: min(1240px, 94vw);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.pf-logo img {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter .3s ease;
}

.pf-nav.pf-scrolled .pf-logo img {
    /* logo é claro; na navbar branca precisa ficar escuro para não sumir */
    filter: brightness(0) saturate(100%) invert(31%) sepia(89%) saturate(1500%) hue-rotate(175deg) brightness(92%) contrast(101%);
}

.pf-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: 30px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.pf-nav-links a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color .25s ease;
}

.pf-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--pf-orange);
    transition: width .25s ease;
}

.pf-nav-links a:hover::after {
    width: 100%;
}

.pf-nav.pf-scrolled .pf-nav-links a {
    color: var(--pf-ink);
}

.pf-nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pf-nav-actions .pf-btn {
    padding: 11px 24px;
    font-size: 14px;
}

.pf-nav .pf-login {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 999px;
    transition: background .25s ease, color .25s ease;
}

.pf-nav .pf-login:hover {
    background: rgba(255, 255, 255, .18);
}

.pf-nav.pf-scrolled .pf-login {
    color: var(--pf-blue);
}

.pf-nav.pf-scrolled .pf-login:hover {
    background: rgba(0, 152, 218, .1);
}

.pf-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.pf-burger span {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #fff;
    transition: background .3s ease;
}

.pf-nav.pf-scrolled .pf-burger span {
    background: var(--pf-ink);
}

/* Mobile drawer */
.pf-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: linear-gradient(160deg, #0098DA, #007bb3);
    display: flex;
    flex-direction: column;
    padding: 32px;
    transform: translateX(100%);
    transition: transform .35s ease;
}

.pf-drawer.pf-open {
    transform: translateX(0);
}

.pf-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pf-drawer-top img {
    height: 42px;
    filter: brightness(0) invert(1);
}

.pf-drawer-close {
    background: none;
    border: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.pf-drawer nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 40px;
}

.pf-drawer nav a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.pf-drawer-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-drawer-actions .pf-btn {
    width: 100%;
}

/* =========================================================
   HERO
   ========================================================= */
.pf-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; /* evita o "pulo" da barra de endereço no mobile */
    display: flex;
    align-items: center;
    padding: calc(var(--pf-nav-h) + 40px) 0 60px;
    color: #fff;
    overflow: hidden;
}

.pf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(115deg, rgba(0, 74, 115, .92) 0%, rgba(0, 122, 175, .78) 42%, rgba(0, 152, 218, .35) 100%),
        var(--pf-hero-img, none);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.pf-hero::after {
    content: '';
    position: absolute;
    right: -160px;
    top: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 136, 0, .35), transparent 65%);
    z-index: -1;
    border-radius: 50%;
}

.pf-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 820px;
}

.pf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.pf-hero-badge .pf-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #37e59b;
    box-shadow: 0 0 0 0 rgba(55, 229, 155, .7);
    animation: pf-pulse 1.8s infinite;
}

@keyframes pf-pulse {
    0% { box-shadow: 0 0 0 0 rgba(55, 229, 155, .6); }
    70% { box-shadow: 0 0 0 10px rgba(55, 229, 155, 0); }
    100% { box-shadow: 0 0 0 0 rgba(55, 229, 155, 0); }
}

.pf-hero h1 {
    font-size: clamp(38px, 5.4vw, 74px);
    margin: 22px 0 0;
    text-shadow: 0 8px 30px rgba(0, 40, 70, .35);
}

.pf-hero h1 .pf-hl {
    color: var(--pf-yellow);
}

.pf-hero p {
    margin: 22px 0 0;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 300;
    line-height: 1.7;
    max-width: 540px;
    color: rgba(255, 255, 255, .92);
}

.pf-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.pf-hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 46px;
    flex-wrap: wrap;
}

.pf-hero-stats .pf-num {
    font-family: 'Renogare', sans-serif;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--pf-yellow);
}

.pf-hero-stats span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    margin-top: 2px;
}

/* Floating machine card */
.pf-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.pf-machine-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: 30px;
    padding: 34px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 40px 80px -30px rgba(0, 40, 70, .6);
}

.pf-machine-card .pf-mc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.pf-machine-card .pf-mc-top strong {
    font-size: 17px;
    font-weight: 600;
}

.pf-mc-badge {
    font-size: 12px;
    font-weight: 600;
    background: rgba(55, 229, 155, .22);
    color: #b8ffe0;
    padding: 5px 12px;
    border-radius: 999px;
}

.pf-mc-drum {
    width: 150px;
    height: 150px;
    margin: 6px auto 24px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .35), rgba(255, 255, 255, .1));
    border: 10px solid rgba(255, 255, 255, .22);
    display: grid;
    place-items: center;
    position: relative;
    animation: pf-spin 6s linear infinite;
}

.pf-mc-drum::before {
    content: '';
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .55), rgba(0, 152, 218, .25));
}

@keyframes pf-spin {
    to { transform: rotate(360deg); }
}

.pf-mc-rows {
    display: grid;
    gap: 12px;
}

.pf-mc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.pf-mc-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    overflow: hidden;
    margin-top: 4px;
}

.pf-mc-bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--pf-grad-orange);
}

.pf-hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0;
}

.pf-hero-wave svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* =========================================================
   FEATURES (Por que escolher)
   ========================================================= */
.pf-features {
    background: var(--pf-white);
}

.pf-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pf-feature {
    background: var(--pf-white);
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-radius);
    padding: 34px 26px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pf-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--pf-shadow);
    border-color: transparent;
}

.pf-feature-ico {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(0, 152, 218, .1);
    margin-bottom: 20px;
    font-size: 28px;
}

.pf-feature:nth-child(2) .pf-feature-ico { background: rgba(255, 136, 0, .12); }
.pf-feature:nth-child(3) .pf-feature-ico { background: rgba(62, 64, 149, .12); }
.pf-feature:nth-child(4) .pf-feature-ico { background: rgba(254, 207, 0, .16); }

.pf-feature h3 {
    font-size: 19px;
    margin: 0 0 10px;
    color: var(--pf-ink);
}

.pf-feature p {
    font-size: 15px;
    color: var(--pf-grey);
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
}

/* =========================================================
   ABOUT (Sobre)
   ========================================================= */
.pf-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.pf-about-media {
    position: relative;
}

.pf-about-media img {
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow);
    width: 100%;
    object-fit: cover;
}

.pf-about-media .pf-about-chip {
    position: absolute;
    bottom: 24px;
    left: -18px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--pf-shadow-sm);
    display: flex;
    align-items: center;
    gap: 14px;
}

.pf-about-chip .pf-chip-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--pf-grad-orange);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.pf-about-chip strong {
    display: block;
    font-family: 'Renogare', sans-serif;
    font-size: 22px;
    color: var(--pf-ink);
}

.pf-about-chip span {
    font-size: 13px;
    color: var(--pf-muted);
}

.pf-about-body p {
    margin: 18px 0 0;
    color: var(--pf-grey);
    line-height: 1.75;
    font-weight: 300;
    font-size: 16px;
}

.pf-about-body .pf-btn {
    margin-top: 30px;
}

/* =========================================================
   HOW IT WORKS (Operação)
   ========================================================= */
.pf-how {
    background: linear-gradient(180deg, #eef6fc 0%, #f5f9fd 100%);
}

.pf-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.pf-step {
    background: #fff;
    border-radius: var(--pf-radius);
    padding: 34px 26px;
    position: relative;
    border: 1px solid var(--pf-line);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pf-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--pf-shadow);
}

.pf-step .pf-step-n {
    counter-increment: step;
    font-family: 'Renogare', sans-serif;
    font-size: 15px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--pf-grad);
    margin-bottom: 18px;
}

.pf-step .pf-step-n::before {
    content: '0' counter(step);
}

.pf-step h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--pf-ink);
}

.pf-step p {
    font-size: 14.5px;
    color: var(--pf-grey);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.pf-note {
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--pf-line);
    border-left: 5px solid var(--pf-orange);
    border-radius: var(--pf-radius-sm);
    padding: 26px 30px;
}

.pf-note h4 {
    margin: 0 0 12px;
    font-size: 17px;
    color: var(--pf-ink);
}

.pf-note ul {
    margin: 0;
    padding-left: 20px;
    color: var(--pf-grey);
    font-weight: 300;
    line-height: 1.7;
    font-size: 14.5px;
}

.pf-note ul li {
    margin-bottom: 8px;
    list-style: disc !important;
}

/* =========================================================
   STATUS MÁQUINAS
   ========================================================= */
.pf-status {
    background: var(--pf-white);
}

.pf-status-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.pf-mcard {
    border-radius: var(--pf-radius-sm);
    padding: 24px 16px;
    text-align: center;
    color: #fff;
    box-shadow: var(--pf-shadow-sm);
    transition: transform .3s ease;
}

.pf-mcard:hover {
    transform: translateY(-5px);
}

.pf-mcard.pf-lavadora {
    background: linear-gradient(160deg, #ff9a2b, #ff7a00);
}

.pf-mcard.pf-secadora {
    background: linear-gradient(160deg, #22b7f2, #0098DA);
}

.pf-mcard .pf-mc-ico {
    font-size: 30px;
    margin-bottom: 8px;
}

.pf-mcard .pf-mc-name {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pf-mcard .pf-mc-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pf-mcard .pf-mc-tag.pf-livre {
    background: #e7fbef;
    color: #128a45;
}

.pf-mcard .pf-mc-tag.pf-uso {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

.pf-mcard .pf-mc-time {
    height: 24px;
    line-height: 24px;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pf-status-note {
    text-align: center;
    color: var(--pf-muted);
    font-size: 13px;
    margin-top: 22px;
}

/* =========================================================
   BLOG
   ========================================================= */
.pf-blog {
    background: linear-gradient(180deg, #f5f9fd, #eef6fc);
}

.pf-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.pf-post {
    background: #fff;
    border-radius: var(--pf-radius);
    overflow: hidden;
    border: 1px solid var(--pf-line);
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pf-post:hover {
    transform: translateY(-8px);
    box-shadow: var(--pf-shadow);
}

.pf-post-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.pf-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pf-post:hover .pf-post-thumb img {
    transform: scale(1.07);
}

.pf-post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pf-post-tag {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    color: var(--pf-blue);
    background: rgba(0, 152, 218, .1);
    padding: 5px 12px;
    border-radius: 999px;
}

.pf-post h3 {
    font-size: 17px;
    line-height: 1.4;
    color: var(--pf-ink);
    margin: 0;
    flex: 1;
}

.pf-post .pf-read {
    color: var(--pf-orange);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.pf-news {
    padding: clamp(50px, 6vw, 80px) 0;
}

.pf-news-inner {
    background: var(--pf-grad);
    border-radius: 30px;
    padding: clamp(32px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 30px;
    align-items: center;
    color: #fff;
    box-shadow: 0 34px 70px -34px rgba(0, 120, 190, .8);
    position: relative;
    overflow: hidden;
}

.pf-news-inner::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 65%);
}

.pf-news-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin: 0;
    position: relative;
}

.pf-news-inner p {
    margin: 12px 0 0;
    font-weight: 300;
    opacity: .92;
    position: relative;
}

.pf-news-form {
    position: relative;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 8px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.pf-news-form input {
    flex: 1;
    min-width: 0; /* impede o input de estourar o pill em telas estreitas */
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    padding: 12px 18px;
    font-size: 15px;
}

.pf-news-form input::placeholder {
    color: rgba(255, 255, 255, .75);
}

.pf-news-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    position: relative;
}

.pf-news-social span {
    font-weight: 500;
    font-size: 14px;
}

.pf-news-social a img {
    width: 26px;
    height: 26px;
    transition: transform .25s ease;
}

.pf-news-social a:hover img {
    transform: translateY(-3px);
}

/* =========================================================
   FRANQUIA
   ========================================================= */
.pf-fran {
    background: var(--pf-white);
}

.pf-fran-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.pf-fran-body p {
    margin: 18px 0 0;
    color: var(--pf-grey);
    line-height: 1.75;
    font-weight: 300;
    font-size: 16px;
}

.pf-fran-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 0;
}

.pf-fran-perks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 152, 218, .08);
    color: var(--pf-blue);
    font-size: 14px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 999px;
}

.pf-fran-media {
    background: linear-gradient(160deg, #eaf5fc, #f5f9fd);
    border-radius: var(--pf-radius);
    padding: 40px;
    display: grid;
    place-items: center;
}

/* =========================================================
   GALERIA
   ========================================================= */
.pf-gallery {
    background: linear-gradient(180deg, #eef6fc, #f5f9fd);
}

.pf-gallery .swiper {
    padding-bottom: 10px;
}

.pf-gallery .swiper-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--pf-radius);
    box-shadow: var(--pf-shadow-sm);
}

.pf-gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 26px;
}

.pf-gallery-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--pf-shadow-sm);
    display: grid;
    place-items: center;
    color: var(--pf-blue);
    font-size: 20px;
    transition: background .25s ease, color .25s ease;
}

.pf-gallery-nav button:hover {
    background: var(--pf-blue);
    color: #fff;
}

/* =========================================================
   CONTATO
   ========================================================= */
.pf-contact {
    background: var(--pf-white);
}

.pf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.pf-map {
    border-radius: var(--pf-radius);
    overflow: hidden;
    box-shadow: var(--pf-shadow-sm);
    min-height: 420px;
    border: 1px solid var(--pf-line);
}

.pf-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.pf-contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pf-contact-list {
    display: grid;
    gap: 16px;
    margin: 26px 0 30px;
}

.pf-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--pf-bg);
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-radius-sm);
    padding: 18px 20px;
}

.pf-contact-item .pf-ci-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--pf-grad);
    display: grid;
    place-items: center;
    flex: none;
}

.pf-contact-item .pf-ci-ico img {
    width: 22px;
    filter: brightness(0) invert(1);
}

.pf-contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--pf-ink);
    margin-bottom: 2px;
}

.pf-contact-item span,
.pf-contact-item a {
    font-size: 14.5px;
    color: var(--pf-grey);
    font-weight: 300;
    text-decoration: none;
}

.pf-contact-item a:hover {
    color: var(--pf-blue);
}

/* =========================================================
   FOOTER
   ========================================================= */
.pf-footer {
    background: linear-gradient(160deg, #0a2740, #073352 60%, #0098DA 160%);
    color: #fff;
    padding: clamp(56px, 6vw, 84px) 0 30px;
}

.pf-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: 40px;
}

.pf-footer-logo img {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.pf-footer p {
    color: rgba(255, 255, 255, .78);
    font-weight: 300;
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 6px;
}

.pf-footer h4 {
    font-family: 'Renogare', sans-serif;
    font-size: 18px;
    margin: 0 0 20px;
    letter-spacing: .5px;
}

.pf-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.pf-footer ul a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: color .25s ease, padding-left .25s ease;
}

.pf-footer ul a:hover {
    color: #fff;
    padding-left: 5px;
}

.pf-foot-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .82);
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.55;
}

.pf-foot-contact li img {
    width: 20px;
    margin-top: 2px;
    filter: brightness(0) invert(1);
    opacity: .85;
    flex: none;
}

.pf-foot-social {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

.pf-foot-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    transition: background .25s ease, transform .25s ease;
}

.pf-foot-social a:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(-3px);
}

.pf-foot-social a img {
    width: 20px;
}

.pf-footer-bottom {
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    color: rgba(255, 255, 255, .6);
    font-size: 13.5px;
    font-weight: 300;
}

.pf-footer-bottom a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.pf-footer-bottom a:hover {
    color: #fff;
}

/* =========================================================
   SUBPAGE HERO (páginas internas: Sobre, etc.)
   ========================================================= */
.pf-subhero {
    position: relative;
    padding: calc(var(--pf-nav-h) + 72px) 0 96px;
    background: linear-gradient(120deg, #004a73 0%, #007baf 55%, #0098DA 100%);
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.pf-subhero::after {
    content: '';
    position: absolute;
    right: -140px;
    top: -160px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 0, .32), transparent 65%);
    z-index: 0;
}

.pf-subhero .pf-container {
    position: relative;
    z-index: 1;
}

.pf-eyebrow-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 7px 16px;
    border-radius: 999px;
}

.pf-subhero h1 {
    font-size: clamp(32px, 5vw, 60px);
    margin: 20px auto 0;
    max-width: 900px;
    text-shadow: 0 8px 30px rgba(0, 40, 70, .35);
}

.pf-subhero p {
    margin: 18px auto 0;
    max-width: 620px;
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, .92);
}

.pf-subhero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 1;
    line-height: 0;
}

.pf-subhero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ---- Story rows (alternadas) ---- */
.pf-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.pf-story-row + .pf-story-row {
    margin-top: clamp(48px, 7vw, 96px);
}

.pf-story-row.pf-reverse .pf-story-media {
    order: 2;
}

.pf-story-media img {
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    border-radius: var(--pf-radius);
}

.pf-story-body h2 {
    font-size: clamp(22px, 2.6vw, 32px);
    color: var(--pf-ink);
    margin: 16px 0 0;
}

.pf-story-body p {
    margin: 18px 0 0;
    color: var(--pf-grey);
    line-height: 1.75;
    font-weight: 300;
    font-size: 16px;
}

/* ---- Valores (cards) ---- */
.pf-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: clamp(40px, 5vw, 60px);
}

.pf-value {
    background: #fff;
    border: 1px solid var(--pf-line);
    border-radius: var(--pf-radius);
    padding: 32px 26px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pf-value:hover {
    transform: translateY(-6px);
    box-shadow: var(--pf-shadow);
}

.pf-value .pf-value-ico {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    font-size: 26px;
    background: rgba(0, 152, 218, .1);
}

.pf-value h3 {
    font-size: 18px;
    color: var(--pf-ink);
    margin: 0 0 8px;
}

.pf-value p {
    font-size: 14.5px;
    color: var(--pf-grey);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   AUTENTICAÇÃO (Login)
   ========================================================= */
.pf-auth {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: calc(var(--pf-nav-h) + 40px) 20px 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #05314c 0%, #0072a6 55%, #0098DA 100%);
}

.pf-auth::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 0, .3), transparent 65%);
}

.pf-auth::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 65%);
}

.pf-auth-card {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    background: #fff;
    border-radius: 26px;
    padding: clamp(30px, 4vw, 48px);
    box-shadow: 0 40px 90px -40px rgba(0, 30, 60, .7);
    text-align: center;
}

.pf-auth-card .pf-auth-ico {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: var(--pf-grad);
    box-shadow: 0 14px 26px -12px rgba(0, 152, 218, .8);
}

.pf-auth-card h1 {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--pf-ink);
    margin: 0;
}

.pf-auth-card .pf-auth-sub {
    color: var(--pf-muted);
    font-size: 15px;
    font-weight: 300;
    margin: 10px 0 26px;
}

.pf-auth-card.pf-wide {
    width: min(660px, 100%);
}

.pf-form {
    display: grid;
    gap: 16px;
    text-align: left;
}

.pf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 540px) {
    .pf-form-row { grid-template-columns: 1fr; }
}

.pf-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--pf-grey);
    font-weight: 300;
    margin-top: 4px;
}

.pf-terms input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--pf-blue);
    flex: none;
}

.pf-terms a {
    color: var(--pf-blue);
    font-weight: 600;
    text-decoration: none;
}

.pf-terms a:hover {
    text-decoration: underline;
}

.pf-alert-success {
    background: #e7fbef;
    color: #128a45;
    border: 1px solid #b6f0cc;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pf-field {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--pf-bg);
    border: 1.5px solid var(--pf-line);
    border-radius: 14px;
    padding: 4px 18px;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.pf-field:focus-within {
    border-color: var(--pf-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 152, 218, .12);
}

.pf-field img {
    width: 20px;
    opacity: .55;
    flex: none;
}

.pf-field input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    padding: 15px 0;
    font-size: 16px;
    color: var(--pf-ink);
    font-family: inherit;
}

.pf-form .text-danger {
    font-size: 13px;
    margin-top: -6px;
}

.pf-auth-forgot {
    text-align: right;
    font-size: 14px;
    color: var(--pf-grey);
    font-weight: 300;
    margin: -4px 0 4px;
}

.pf-auth-forgot a {
    color: var(--pf-orange);
    font-weight: 600;
    text-decoration: none;
}

.pf-auth-forgot a:hover {
    text-decoration: underline;
}

.pf-form .pf-btn {
    width: 100%;
    margin-top: 6px;
}

.pf-auth-alt {
    margin-top: 22px;
    font-size: 14.5px;
    color: var(--pf-grey);
    font-weight: 300;
}

.pf-auth-alt a {
    color: var(--pf-blue);
    font-weight: 600;
    text-decoration: none;
}

.pf-auth-alt a:hover {
    text-decoration: underline;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.pf-wpp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px -8px rgba(37, 211, 102, .7);
    transition: transform .25s ease;
    animation: pf-float 3s ease-in-out infinite;
}

.pf-wpp:hover {
    transform: scale(1.1);
}

.pf-wpp img {
    width: 34px;
}

@keyframes pf-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    /* A navbar completa (6 links + ações) não cabe entre 900–1100px;
       o menu mobile assume a partir daqui. */
    .pf-nav-links { display: none; }
    .pf-nav-actions { display: none; }
    .pf-burger { display: flex; }
    .pf-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-steps { grid-template-columns: repeat(2, 1fr); }
    .pf-footer-grid { grid-template-columns: 1fr 1fr; }
    .pf-status-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
    .pf-values { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .pf-hero-grid { grid-template-columns: 1fr; }
    .pf-hero-visual { display: none; }
    .pf-about-grid,
    .pf-fran-grid,
    .pf-news-inner,
    .pf-contact-grid { grid-template-columns: 1fr; }
    .pf-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-about-media .pf-about-chip { left: 12px; }
    .pf-story-row { grid-template-columns: 1fr; }
    .pf-story-row.pf-reverse .pf-story-media { order: 0; }
}

@media (max-width: 620px) {
    .pf-feature-grid,
    .pf-steps,
    .pf-blog-grid { grid-template-columns: 1fr; }
    .pf-status-grid { grid-template-columns: repeat(2, 1fr); }
    .pf-hero { text-align: center; }
    .pf-hero-badge { margin-inline: auto; }
    .pf-hero p { margin-inline: auto; }
    .pf-hero-cta,
    .pf-hero-stats { justify-content: center; }
    .pf-footer-grid { grid-template-columns: 1fr; }
    .pf-footer-bottom { justify-content: center; text-align: center; }
    .pf-map,
    .pf-map iframe { min-height: 300px; }
}

@media (max-width: 380px) {
    .pf-news-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 10px;
    }

    .pf-news-form .pf-btn { width: 100%; }
}

/* Dispositivos touch: efeitos de "levantar" no hover não fazem sentido
   e ficam presos após o toque. */
@media (hover: none) {
    .pf-btn:hover,
    .pf-feature:hover,
    .pf-step:hover,
    .pf-post:hover,
    .pf-value:hover,
    .pf-mcard:hover,
    .pf-foot-social a:hover,
    .pf-news-social a:hover img,
    .pf-wpp:hover {
        transform: none;
    }
}

/* Acessibilidade: respeita a preferência de movimento reduzido do sistema. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .pf-hero-badge .pf-dot,
    .pf-mc-drum,
    .pf-wpp {
        animation: none;
    }

    .pf-site *,
    .pf-site *::before,
    .pf-site *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
