/*
 * PerfilFerros - Home components
 * Commerce-first home, direct CSS for Laravel/Blade.
 */

:root {
    --pf-primary: #0057A6;
    --pf-secondary: #003352;
    --pf-tertiary: #00A3E0;
    --pf-deep: #00112a;
    --pf-white: #ffffff;
    --pf-gray-100: #f5f7fa;
}

.pf-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.pf-section {
    padding: 78px 0;
}

.pf-section--sm {
    padding: 54px 0;
}

.pf-section--dark {
    background-color: var(--pf-secondary);
}

.pf-section--deep {
    background-color: var(--pf-deep);
}

.pf-section--white {
    background-color: var(--pf-white);
}

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

.pf-accent {
    color: var(--pf-tertiary);
}

.pf-sec-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 42px;
}

.pf-sec-header--center {
    display: block;
    text-align: center;
}

.pf-sec-bar {
    width: 4px;
    height: 64px;
    background: var(--pf-tertiary);
    border-radius: 4px;
    flex-shrink: 0;
}

.pf-sec-bar--primary {
    background: var(--pf-primary);
}

.pf-sec-eyebrow {
    color: var(--pf-tertiary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 7px;
}

.pf-sec-eyebrow--primary {
    color: var(--pf-primary);
}

.pf-sec-title {
    font-family: 'Prompt', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.pf-sec-title--light {
    color: #fff;
}

.pf-sec-title--dark {
    color: var(--pf-secondary);
}

.pf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px 12px 30px;
    border: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    transition: background-color 0.2s, filter 0.2s;
}

.pf-btn--primary {
    background-color: var(--pf-primary);
}

.pf-btn--primary:hover {
    background-color: var(--pf-tertiary);
    color: #fff;
    filter: drop-shadow(0 0 12px rgba(0,163,224,0.45));
}

.pf-btn--outline-light {
    border: 2px solid rgba(0,163,224,0.50);
    background: transparent;
    color: var(--pf-tertiary);
}

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

#pf-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--pf-secondary);
}

.pf-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.pf-slide--active {
    opacity: 1;
    z-index: 1;
}

.pf-slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: scale(1.03);
    transition: transform 8s ease;
}

.pf-slide--active .pf-slide-bg {
    transform: scale(1);
}

.pf-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-slide-overlay-h,
.pf-slide-overlay-v {
    position: absolute;
    inset: 0;
}

.pf-slide-overlay-h {
    background: linear-gradient(to right, rgba(0,51,82,0.90) 0%, rgba(0,51,82,0.55) 50%, rgba(0,51,82,0.15) 100%);
    z-index: 1;
}

.pf-slide-overlay-v {
    background: linear-gradient(to top, rgba(0,33,52,0.70) 0%, transparent 60%);
    z-index: 2;
}

.pf-hero-accent {
    display: none;
}

.pf-hero-content-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.pf-hero-content {
    max-width: 560px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease 0.12s, transform 0.75s ease 0.12s;
    pointer-events: none;
    position: absolute;
}

.pf-hero-content--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.pf-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pf-hero-line {
    display: block;
    width: 34px;
    height: 2px;
    background: var(--pf-tertiary);
    border-radius: 2px;
    flex-shrink: 0;
}

.pf-hero-label {
    color: var(--pf-tertiary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.pf-hero-title {
    color: #fff;
    font-family: 'Prompt', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 14px;
}

.pf-hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
    margin: 0 0 24px;
}

.pf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.pf-hero-btn-primary,
.pf-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, filter 0.2s;
}

.pf-hero-btn-primary {
    padding: 12px 34px 12px 28px;
    background-color: var(--pf-primary);
    font-weight: 700;
}

.pf-hero-btn-primary:hover {
    background-color: var(--pf-tertiary);
    color: #fff;
    filter: drop-shadow(0 0 14px rgba(0,163,224,0.50));
}

.pf-hero-btn-ghost {
    padding: 11px 32px 11px 26px;
    border: 2px solid rgba(255,255,255,0.35);
    font-weight: 600;
}

.pf-hero-btn-ghost:hover {
    border-color: var(--pf-tertiary);
    color: var(--pf-tertiary);
}

.pf-hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    display: flex;
    gap: 8px;
    z-index: 15;
    transform: translateX(-50%);
}

.pf-dot {
    width: 8px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background-color 0.2s, width 0.2s;
}

.pf-dot--active {
    width: 28px;
    background: var(--pf-tertiary);
}

.pf-home-search-section {
    position: relative;
    z-index: 20;
    margin-top: -30px;
    padding: 0 0 28px;
    background: #f5f8fb;
}

.pf-home-search-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.35fr);
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-top: 3px solid var(--pf-tertiary);
    box-shadow: 0 14px 34px rgba(0,51,82,0.12);
}

.pf-home-search-copy {
    min-width: 0;
}

.pf-home-search-kicker,
.pf-home-kicker {
    display: block;
    color: var(--pf-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
}

.pf-home-search-copy h2,
.pf-home-section-head h2 {
    margin: 0;
    color: var(--pf-secondary);
    font-family: 'Prompt', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.pf-home-search-form.pf-quick-search-form {
    position: relative;
    display: flex;
    width: 100%;
    max-width: none;
    min-width: 0;
}

.pf-home-search-section .pf-home-search-input {
    flex: 1;
    min-width: 0;
    height: 52px;
    background: #f8fbfe;
    border: 1px solid #d7e1ea;
    border-right: none;
    color: #22384d;
    font-size: 14px;
}

.pf-home-search-section .pf-home-search-input::placeholder {
    color: #7d8ea3;
}

.pf-home-search-section .pf-home-search-input:focus {
    background: #fff;
    border-color: var(--pf-primary);
}

.pf-home-search-section .pf-home-search-btn {
    height: 52px;
    border: 1px solid var(--pf-primary);
    background: var(--pf-primary);
    color: #fff;
    white-space: nowrap;
}

.pf-home-search-section .pf-home-search-btn:hover {
    background: var(--pf-secondary);
    box-shadow: none;
}

.pf-home-quick-links {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.pf-home-quick-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 14px;
    background: #eef5fb;
    border: 1px solid #dce8f3;
    color: var(--pf-secondary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s, border-color 0.18s, color 0.18s;
}

.pf-home-quick-link:hover {
    background: var(--pf-primary);
    border-color: var(--pf-primary);
    color: #fff;
}

.pf-home-departments {
    padding: 24px 0 34px;
    background: #f5f8fb;
}

.pf-home-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}

.pf-home-section-head .pf-home-kicker {
    grid-column: 1 / -1;
    margin-bottom: -4px;
}

.pf-home-section-link {
    color: var(--pf-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.pf-home-section-link:hover {
    color: var(--pf-tertiary);
}

.pf-home-dept-scroll {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.pf-home-dept-card {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    min-width: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.pf-home-dept-card:hover {
    border-color: var(--pf-tertiary);
    box-shadow: 0 10px 24px rgba(0,51,82,0.10);
    transform: translateY(-2px);
}

.pf-home-dept-thumb {
    grid-row: 1 / 3;
    width: 68px;
    height: 58px;
    overflow: hidden;
    border-radius: 6px;
    background: #eef4f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.pf-home-dept-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-home-dept-thumb--empty {
    background: linear-gradient(135deg, #003352, #0057A6);
}

.pf-home-dept-title {
    min-width: 0;
    color: var(--pf-secondary);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pf-home-dept-meta {
    color: #7d8ea3;
    font-size: 11px;
    font-weight: 500;
    margin-top: 4px;
}

.pf-home-shelves {
    padding: 58px 0 70px;
    background: var(--pf-secondary);
}

.pf-home-section-head--light h2 {
    color: #fff;
}

.pf-home-section-head--light .pf-home-kicker {
    color: var(--pf-tertiary);
}

.pf-home-section-head--light .pf-home-section-link {
    color: rgba(255,255,255,0.86);
}

.pf-home-section-head--light .pf-home-section-link:hover {
    color: var(--pf-tertiary);
}

.pf-home-shelf {
    margin-top: 24px;
    padding: 18px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
}

.pf-home-shelf + .pf-home-shelf {
    margin-top: 22px;
}

.pf-home-shelf-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.pf-home-shelf-eyebrow {
    display: block;
    color: var(--pf-tertiary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.pf-home-shelf h3 {
    margin: 0;
    color: #fff;
    font-family: 'Prompt', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.pf-home-shelf p {
    max-width: 620px;
    margin: 7px 0 0;
    color: rgba(255,255,255,0.66);
    font-size: 13px;
    line-height: 1.5;
}

.pf-home-shelf-link {
    flex: 0 0 auto;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.pf-home-shelf-link:hover {
    color: var(--pf-tertiary);
}

.pf-home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.pf-home-product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 8px;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.pf-home-product-card:hover {
    border-color: var(--pf-tertiary);
    box-shadow: 0 14px 30px rgba(0,17,42,0.18);
    transform: translateY(-2px);
}

.pf-home-product-img-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    padding: 12px;
    background: #f7fafc;
    border-bottom: 1px solid #edf2f7;
}

.pf-home-product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.pf-home-product-body {
    flex: 1;
    min-width: 0;
    padding: 12px 12px 10px;
}

.pf-home-product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 9px;
    margin-bottom: 8px;
    background: #edf7fd;
    color: var(--pf-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.pf-home-product-name {
    min-height: 38px;
    color: var(--pf-secondary);
    display: -webkit-box;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    overflow: hidden;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pf-home-product-name:hover {
    color: var(--pf-primary);
}

.pf-home-product-code {
    display: block;
    margin-top: 7px;
    color: #74869b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
}

.pf-home-product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-height: 27px;
    margin-top: 10px;
    color: var(--pf-secondary);
    font-weight: 800;
    line-height: 1.2;
}

.pf-home-product-price span {
    font-size: 16px;
}

.pf-home-product-price small {
    color: #708298;
    font-size: 11px;
    font-weight: 600;
}

.pf-home-product-actions {
    display: flex;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px 12px;
    border-top: 1px solid #edf2f7;
}

.pf-home-product-qty {
    flex: 0 0 96px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    height: 34px;
    border: 1px solid #d7e1ea;
    background: #f8fbfe;
}

.pf-home-product-qty-btn,
.pf-home-product-qty-input {
    border: 0;
    background: transparent;
    color: var(--pf-secondary);
    font-family: 'Prompt', sans-serif;
}

.pf-home-product-qty-btn {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.pf-home-product-qty-input {
    min-width: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    -moz-appearance: textfield;
}

.pf-home-product-qty-input::-webkit-outer-spin-button,
.pf-home-product-qty-input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.pf-home-product-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    min-width: 0;
    padding: 8px 13px;
    border: 0;
    background: var(--pf-primary);
    color: #fff;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background-color 0.18s, color 0.18s;
}

.pf-home-product-primary:hover,
.pf-home-product-primary:focus {
    background: var(--pf-tertiary);
    color: #fff;
}

.pf-home-product-primary[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.pf-home-product-primary--muted {
    background: #697b8d;
}

.pf-home-product-add.is-added {
    background: #008a5a;
}

.pf-home-shelves-cta {
    margin-top: 28px;
    text-align: center;
}

.pf-home-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 22px;
}

.pf-home-cat-pill {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 7px 14px;
    border: 1px solid rgba(0,163,224,0.30);
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.18s, border-color 0.18s, color 0.18s;
}

.pf-home-cat-pill:hover {
    background: var(--pf-tertiary);
    border-color: var(--pf-tertiary);
    color: #fff;
}

.pf-home-commerce-banners {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 12px;
    margin: 22px 0 2px;
}

.pf-home-commerce-banner {
    position: relative;
    min-height: 168px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    background: #06243a;
    color: #fff;
    text-decoration: none;
}

.pf-home-commerce-banner:first-child {
    min-height: 196px;
}

.pf-home-commerce-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.4s ease, opacity 0.2s ease;
}

.pf-home-commerce-banner:hover img {
    opacity: 0.86;
    transform: scale(1.04);
}

.pf-home-commerce-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,17,42,0.88), rgba(0,51,82,0.22));
    z-index: 1;
}

.pf-home-commerce-banner--fallback {
    background: linear-gradient(135deg, #003352, #0057A6);
}

.pf-home-commerce-content {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

.pf-home-commerce-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--pf-tertiary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.pf-home-commerce-content h3 {
    margin: 0;
    color: #fff;
    font-family: 'Prompt', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.pf-home-commerce-content p {
    margin: 7px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: 12px;
    line-height: 1.45;
}

.pf-home-commerce-link {
    display: inline-flex;
    margin-top: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.pf-home-b2b {
    padding: 54px 0;
    background: #f5f8fb;
}

.pf-home-b2b-head {
    max-width: 740px;
    margin-bottom: 22px;
}

.pf-home-b2b-head h2 {
    margin: 0;
    color: var(--pf-secondary);
    font-family: 'Prompt', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.pf-home-b2b-head p {
    margin: 9px 0 0;
    color: #5f7288;
    font-size: 14px;
    line-height: 1.6;
}

.pf-home-benefit-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.pf-home-benefit {
    min-width: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 8px;
}

.pf-home-benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    background: #eef5fb;
    color: var(--pf-primary);
}

.pf-home-benefit h3 {
    margin: 0;
    color: var(--pf-secondary);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.pf-home-benefit p {
    margin: 7px 0 0;
    color: #6f8195;
    font-size: 12px;
    line-height: 1.5;
}

.equipes-carousel {
    margin-top: 32px;
}

.pf-team-slide {
    width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}

.pf-carousel-nav {
    margin-top: 28px;
    justify-content: center;
}

.pf-team-card {
    padding: 28px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #eef1f5;
    border-top: 3px solid var(--pf-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pf-team-card:hover {
    border-top-color: var(--pf-tertiary);
    box-shadow: 0 8px 32px rgba(0,51,82,0.12);
}

.pf-team-avatar {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 2px solid rgba(0,163,224,0.30);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.pf-team-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,87,166,0.08);
}

.pf-team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-team-name {
    margin-bottom: 4px;
    color: var(--pf-secondary);
    font-size: 15px;
    font-weight: 700;
}

.pf-team-role {
    min-height: 36px;
    margin-bottom: 18px;
    color: #7a8fa6;
    font-size: 13px;
}

.pf-team-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--pf-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

.pf-team-cta:hover {
    color: var(--pf-tertiary);
}

.pf-news-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 56px;
    align-items: start;
}

.pf-news-title {
    margin-bottom: 36px;
}

.pf-news-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pf-news-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.pf-news-item:hover {
    background: rgba(255,255,255,0.05);
}

.pf-news-dot {
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--pf-tertiary);
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}

.pf-news-item:hover .pf-news-dot {
    box-shadow: 0 0 10px rgba(0,163,224,0.80);
}

.pf-news-item-title {
    color: rgba(255,255,255,0.90);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.2s;
}

.pf-news-item:hover .pf-news-item-title {
    color: var(--pf-tertiary);
}

.pf-news-item-sub {
    margin-top: 3px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.4;
}

.pf-news-more-btn {
    margin-top: 32px;
}

.pf-news-featured-img-wrap {
    position: relative;
    overflow: hidden;
    line-height: 0;
    border-top: 3px solid var(--pf-tertiary);
}

.pf-news-featured-img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-news-featured-img-wrap:hover .pf-news-featured-img {
    transform: scale(1.04);
}

.pf-news-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,17,42,0.85) 0%, rgba(0,17,42,0.30) 55%, transparent 100%);
}

.pf-news-featured-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
}

.pf-news-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 14px;
    background: var(--pf-tertiary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.pf-news-featured-title {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s;
}

.pf-news-featured-title:hover {
    color: var(--pf-tertiary);
}

.pf-news-featured-sub {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    line-height: 1.5;
}

.pf-contact-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.pf-contact-title {
    margin-bottom: 12px;
}

.pf-contact-desc {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

.pf-contact-desc p {
    margin: 0;
}

.pf-form input,
.pf-form textarea,
.pf-form select {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
    padding: 13px 16px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 8px !important;
    outline: none !important;
    background: rgba(255,255,255,0.06) !important;
    color: #fff !important;
    font-family: 'Prompt', sans-serif !important;
    font-size: 14px !important;
    transition: border-color 0.2s, background-color 0.2s !important;
}

.pf-form input::placeholder,
.pf-form textarea::placeholder {
    color: rgba(255,255,255,0.35) !important;
}

.pf-form input:focus,
.pf-form textarea:focus,
.pf-form select:focus {
    border-color: var(--pf-tertiary) !important;
    background: rgba(255,255,255,0.09) !important;
}

.pf-form textarea {
    min-height: 130px;
    resize: vertical;
}

.pf-form .btEnviar {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 14px 28px;
    border: 0;
    border-radius: 8px;
    background-color: var(--pf-primary);
    color: #fff;
    cursor: pointer;
    font-family: 'Prompt', sans-serif;
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.pf-form .btEnviar:hover {
    background-color: var(--pf-tertiary);
    box-shadow: 0 0 24px rgba(0,163,224,0.34);
}

.pf-partners-head {
    margin-bottom: 32px;
}

.pf-marquee-track {
    overflow: hidden;
    padding: 12px 0;
}

.pf-marquee-belt {
    display: flex;
    width: max-content;
    animation: pf-marquee 32s linear infinite;
}

.pf-marquee-belt:hover {
    animation-play-state: paused;
}

.pf-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 8px 44px;
}

.pf-marquee-logo {
    width: auto;
    height: 50px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.2s;
}

.pf-marquee-item:hover .pf-marquee-logo {
    filter: grayscale(0) opacity(1);
}

.pf-quick-ac-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 500;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 2px;
    background: #fff;
    border: 1px solid #d1dae3;
    border-top: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pf-quick-ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f4f8;
    color: #333;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
}

.pf-quick-ac-item:hover {
    background: #f5f8fc;
    color: var(--pf-primary);
}

.pf-quick-ac-item img,
.pf-quick-ac-no-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 2px;
}

.pf-quick-ac-item img {
    object-fit: cover;
}

.pf-quick-ac-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8fb;
    color: #cbd5e0;
}

.pf-quick-ac-text {
    flex: 1;
    min-width: 0;
}

.pf-quick-ac-text > div:first-child {
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pf-quick-ac-code {
    display: inline-block;
    margin-top: 2px;
    color: var(--pf-tertiary);
    font-size: 11px;
    font-weight: 600;
}

@keyframes pf-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .pf-home-dept-scroll {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pf-home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pf-home-benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pf-container,
    .pf-hero-content-wrap {
        padding-right: 20px;
        padding-left: 20px;
    }

    .pf-section {
        padding: 58px 0;
    }

    .pf-section--sm {
        padding: 44px 0;
    }

    .pf-sec-title {
        font-size: 30px;
    }

    .pf-sec-header {
        margin-bottom: 32px;
    }

    #pf-hero {
        min-height: 310px;
    }

    .pf-hero-title {
        font-size: 30px;
    }

    .pf-hero-sub {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .pf-hero-label {
        font-size: 11px;
        letter-spacing: 0.10em;
    }

    .pf-hero-actions {
        gap: 10px;
    }

    .pf-home-search-section {
        margin-top: -18px;
        padding-bottom: 20px;
    }

    .pf-home-search-panel {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .pf-home-search-copy h2 {
        font-size: 20px;
    }

    .pf-home-quick-links {
        grid-column: auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-quick-links::-webkit-scrollbar {
        display: none;
    }

    .pf-home-departments {
        padding-top: 18px;
    }

    .pf-home-section-head {
        display: block;
        margin-bottom: 12px;
    }

    .pf-home-section-head h2 {
        font-size: 21px;
        margin-bottom: 6px;
    }

    .pf-home-dept-scroll {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 2px 0 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-dept-scroll::-webkit-scrollbar {
        display: none;
    }

    .pf-home-dept-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        justify-items: start;
        flex: 0 0 152px;
        padding: 10px;
        row-gap: 7px;
    }

    .pf-home-dept-thumb {
        grid-row: auto;
        width: 100%;
        height: 76px;
    }

    .pf-home-shelves {
        padding: 38px 0 50px;
    }

    .pf-home-section-head--light .pf-home-section-link {
        display: inline-flex;
        margin-top: 6px;
    }

    .pf-home-shelf {
        margin-left: -16px;
        margin-right: -16px;
        padding: 16px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .pf-home-shelf-head {
        display: block;
        margin-bottom: 12px;
    }

    .pf-home-shelf h3 {
        font-size: 20px;
    }

    .pf-home-shelf-link {
        display: inline-flex;
        margin-top: 9px;
    }

    .pf-home-product-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding: 2px 0 7px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-product-grid::-webkit-scrollbar {
        display: none;
    }

    .pf-home-product-card {
        flex: 0 0 186px;
    }

    .pf-home-product-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .pf-home-product-qty {
        width: 100%;
        flex-basis: auto;
    }

    .pf-home-cat-pills {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-cat-pills::-webkit-scrollbar {
        display: none;
    }

    .pf-home-cat-pill {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .pf-home-commerce-banners {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-right: -16px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-commerce-banners::-webkit-scrollbar {
        display: none;
    }

    .pf-home-commerce-banner,
    .pf-home-commerce-banner:first-child {
        flex: 0 0 248px;
        min-height: 158px;
    }

    .pf-home-b2b {
        padding: 40px 0;
    }

    .pf-home-b2b-head h2 {
        font-size: 24px;
    }

    .pf-home-benefit-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pf-home-benefit-grid::-webkit-scrollbar {
        display: none;
    }

    .pf-home-benefit {
        flex: 0 0 210px;
    }

    .pf-news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pf-news-featured-img {
        height: 300px;
    }

    .pf-team-slide,
    .equipes-carousel .flickity-slide {
        width: 80% !important;
    }

    .pf-marquee-item {
        padding-right: 28px;
        padding-left: 28px;
    }
}

@media (max-width: 520px) {
    #pf-hero {
        min-height: 290px;
    }

    .pf-hero-title {
        font-size: 26px;
    }

    .pf-hero-sub {
        font-size: 13px;
        line-height: 1.45;
    }

    .pf-hero-btn-primary,
    .pf-hero-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .pf-home-search-section .pf-home-search-form {
        flex-direction: column;
    }

    .pf-home-search-section .pf-home-search-input {
        width: 100%;
        border-right: 1px solid #d7e1ea;
        border-bottom: none;
        height: 48px;
    }

    .pf-home-search-section .pf-home-search-btn {
        width: 100%;
        height: 46px;
        border-left: 1px solid var(--pf-primary);
        clip-path: none;
        justify-content: center;
    }
}
