/* Pizza Pizza Franchising — landing (visual alinhado à lp-franquias) */

@font-face {
    font-family: "Aldo the Apache";
    src: url("../midias/fonts/AldotheApache.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --or: #e8430a;
    --or2: #ff5c20;
    --or3: #c43208;
    --org: rgba(232, 67, 10, 0.16);
    --bk: #080808;
    --bk2: #0f0f0f;
    --bk3: #181818;
    --bk4: #202020;
    --wh: #fff;
    --wh5: rgba(255, 255, 255, 0.5);
    --wh2: rgba(255, 255, 255, 0.12);
    --wh1: rgba(255, 255, 255, 0.06);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.22, 0.61, 0.36, 1);
    --font-title: "Aldo the Apache", "Bebas Neue", sans-serif;
    --font-cond: "Barlow Condensed", sans-serif;
    --font-body: "Barlow", sans-serif;
    --nav-h: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.pp-landing {
    margin: 0;
    background: var(--bk);
    color: var(--wh);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.pp-landing::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.032'/%3E%3C/svg%3E");
    opacity: 0.55;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bk); }
::-webkit-scrollbar-thumb { background: var(--or); }

#scroll-prog {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or3), var(--or), var(--or2));
    z-index: 10000;
    width: 0%;
    box-shadow: 0 0 12px rgba(232, 67, 10, 0.6);
}

.or,
.text-gradient {
    color: var(--or) !important;
    background: none !important;
    -webkit-text-fill-color: var(--or) !important;
}

.sec-lbl,
.section-badge {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.sec-lbl::before,
.section-badge::before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--or);
    flex-shrink: 0;
}

.section-badge i {
    display: none;
}

.sec-title,
.section-title,
.hero-title {
    font-family: var(--font-title);
    font-size: clamp(36px, 9.5vw, 64px);
    letter-spacing: 2px;
    line-height: 0.91;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--wh);
}

.sec-body,
.section-subtitle {
    font-size: 15px;
    line-height: 1.72;
    color: var(--wh5);
    max-width: 540px;
}

hr.div {
    border: none;
    height: 1px;
    margin: 0;
    background: linear-gradient(90deg, transparent, rgba(232, 67, 10, 0.2), transparent);
}

/* ─── Nav ─── */
#mainNavbar.navbar {
    background: transparent;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
    transition: background 0.5s var(--ease), backdrop-filter 0.5s, border-color 0.5s, padding 0.4s;
}

#mainNavbar.navbar.scrolled {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom-color: rgba(232, 67, 10, 0.1);
    padding: 10px 0;
    box-shadow: none;
}

.navbar-brand.nav-logo {
    display: flex;
    align-items: center;
    color: var(--wh) !important;
    text-decoration: none;
    line-height: 1;
    padding: 0;
}

.nav-logo-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    width: max-content;
}

.nav-logo-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-family: var(--font-title);
    font-size: clamp(20px, 3.2vw, 28px);
    letter-spacing: 3px;
    line-height: 1;
    white-space: nowrap;
}

.nav-logo-a {
    color: var(--or);
}

.nav-logo-b {
    color: var(--wh);
}

.nav-logo .ldot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9a3d14;
    margin: 0 7px;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(154, 61, 20, 0.6);
}

.nav-logo-sub {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    width: 100%;
    margin-top: 5px;
    font-family: var(--font-title);
    font-size: clamp(10px, 1.6vw, 13px);
    line-height: 1;
    color: var(--wh5);
    box-sizing: border-box;
}

.nav-logo-sub > span {
    text-align: center;
}

.nav-link {
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--wh5) !important;
    padding: 8px 14px !important;
    border-radius: 0;
    transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
    color: var(--wh) !important;
    background: rgba(232, 67, 10, 0.08) !important;
    transform: none;
}

#mainNavbar .btn-login,
.nav-cta-primary {
    font-family: var(--font-cond) !important;
    font-weight: 800 !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wh) !important;
    background: var(--or) !important;
    border: none !important;
    padding: 10px 22px !important;
    margin-left: 8px;
    border-radius: 0 !important;
    clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

#mainNavbar .btn-login:hover,
.nav-cta-primary:hover {
    background: var(--or2) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(232, 67, 10, 0.4);
    color: var(--wh) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(232, 67, 10, 0.35);
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {
    #navbarNav {
        background: rgba(15, 15, 15, 0.98);
        border: 1px solid rgba(232, 67, 10, 0.15);
        padding: 16px;
        margin-top: 12px;
    }
}

/* ─── Hero ─── */
.hero-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 40px) 24px 48px;
    position: relative;
    overflow: hidden;
    background: var(--bk);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
}

.hero-orb-1 {
    width: min(720px, 150vw);
    height: min(720px, 150vw);
    background: radial-gradient(circle, rgba(232, 67, 10, 0.28) 0%, transparent 65%);
    top: -200px;
    left: -180px;
    animation: orb1 10s ease-in-out infinite;
}

.hero-orb-2 {
    width: min(640px, 80vw);
    height: min(640px, 80vw);
    background: radial-gradient(circle, rgba(232, 67, 10, 0.22) 0%, transparent 65%);
    bottom: -80px;
    right: -40px;
    animation: orb2 13s ease-in-out infinite;
}

.hero-orb-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 92, 32, 0.1) 0%, transparent 65%);
    top: 45%;
    left: 55%;
    animation: orb3 16s ease-in-out infinite;
}

@keyframes orb1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(80px, 50px); }
    66% { transform: translate(-50px, 90px); }
}

@keyframes orb2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-70px, -45px); }
    66% { transform: translate(50px, -80px); }
}

@keyframes orb3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-90px, 60px); }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.011) 0, rgba(255, 255, 255, 0.011) 1px, transparent 1px, transparent 64px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.011) 0, rgba(255, 255, 255, 0.011) 1px, transparent 1px, transparent 64px);
}

.hero-overlay {
    display: none;
}

.hero-container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    text-align: left;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
}

.hbadge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wh5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
}

.hbadge::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--or);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-height: min(72vh, 560px);
    overflow: hidden;
    border: 1px solid rgba(232, 67, 10, 0.2);
    background: var(--bk3);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-visual-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-visual-glow {
    position: absolute;
    inset: auto -20% -30% -20%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(232, 67, 10, 0.35) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-visual-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    background: rgba(8, 8, 8, 0.88);
    border: 1px solid rgba(232, 67, 10, 0.35);
    padding: 14px 18px;
    backdrop-filter: blur(12px);
}

.hero-visual-card-val {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: 3px;
    color: var(--or);
    line-height: 1;
}

.hero-visual-card-lbl {
    display: block;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--wh5);
    margin-top: 4px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
}

.hero-eyebrow span:not(.live-dot) {
    width: 26px;
    height: 1px;
    background: var(--or);
    flex-shrink: 0;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--or);
    flex-shrink: 0;
    animation: blink 1.4s ease infinite;
    box-shadow: 0 0 8px var(--or);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}

.hero-title .hl1,
.hero-title .hl2 {
    display: block;
}

.hero-title .hl1 {
    color: var(--or);
    text-shadow: 0 0 80px rgba(232, 67, 10, 0.3);
}

.hero-title .hl2 {
    color: var(--wh);
}

.hero-title {
    font-size: clamp(52px, 16vw, 120px);
    line-height: 0.85;
    margin-bottom: 1.25rem;
    text-shadow: none;
}

.hero-subtitle {
    font-family: var(--font-cond);
    font-size: clamp(16px, 4.5vw, 22px);
    font-weight: 600;
    color: var(--wh5);
    max-width: 520px;
    margin: 0 0 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-hero-primary,
.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: clamp(17px, 5vw, 22px);
    letter-spacing: 3px;
    color: var(--wh);
    background: var(--or);
    border: none;
    padding: 18px 28px;
    width: 100%;
    clip-path: polygon(13px 0%, 100% 0%, calc(100% - 13px) 100%, 0% 100%);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    border-radius: 0 !important;
}

.btn-hero-primary:hover,
.hero-buttons .btn-primary:hover {
    background: var(--or2);
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(232, 67, 10, 0.5);
    color: var(--wh);
}

.btn-ghost-hero,
.hero-buttons .btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wh5);
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    padding: 16px 28px;
    width: 100%;
    border-radius: 0 !important;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-ghost-hero:hover,
.hero-buttons .btn-outline-light:hover {
    border-color: var(--or) !important;
    color: var(--wh);
    background: rgba(232, 67, 10, 0.05);
}

.hero-scroll-indicator {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    text-align: left;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.hero-scroll-indicator a {
    font-family: var(--font-cond);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    animation: lineGrow 2.2s ease infinite;
}

@keyframes lineGrow {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.35); }
}

/* ─── Ticker ─── */
.ticker {
    background: var(--or);
    overflow: hidden;
}

.tk-track {
    display: flex;
    animation: marquee 24s linear infinite;
    white-space: nowrap;
}

.tk-track.rev {
    animation: marqueeRev 24s linear infinite;
    background: rgba(0, 0, 0, 0.08);
}

.tk-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 28px;
    font-family: var(--font-title);
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--wh);
}

.tk-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

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

@keyframes marqueeRev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ─── Sections ─── */
.about-section,
.partners-section,
.location-section,
.contact-section {
    padding: 80px 0;
}

.about-section {
    background: var(--bk);
}

.partners-section {
    background: var(--bk2);
}

.location-section {
    background: var(--bk);
}

.contact-section {
    background: var(--bk2);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 67, 10, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.section-header.text-center .sec-body,
.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.about-content .lead {
    font-size: 15px;
    line-height: 1.72;
    color: var(--wh5);
    margin-bottom: 1.5rem;
}

.about-content .lead strong {
    color: var(--wh);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 1.5rem 0;
}

.feature-item,
.theme-item {
    background: var(--bk3);
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid rgba(232, 67, 10, 0.18);
    transition: all 0.3s var(--ease);
    width: 100%;
    text-align: left;
    cursor: pointer;
    color: inherit;
}

.theme-item {
    font: inherit;
    appearance: none;
}

.feature-item:hover,
.theme-item:hover {
    background: rgba(232, 67, 10, 0.04);
    border-left-color: var(--or);
    transform: translateX(6px);
}

.theme-item.is-active {
    background: rgba(232, 67, 10, 0.08);
    border-color: rgba(232, 67, 10, 0.35);
    border-left-color: var(--or);
    box-shadow: inset 0 0 0 1px rgba(232, 67, 10, 0.12);
}

.theme-item:focus-visible {
    outline: 2px solid var(--or2);
    outline-offset: 2px;
}

.feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 67, 10, 0.07);
    border: 1px solid rgba(232, 67, 10, 0.12);
    border-radius: 0;
    background-image: none;
}

.feature-icon i {
    color: var(--or);
    font-size: 1.25rem;
}

.feature-text h5 {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
    color: var(--wh);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: var(--wh5);
    margin: 0;
    line-height: 1.57;
}

.about-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(232, 67, 10, 0.12);
    background: var(--bk3);
}

.about-theme-img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    background: var(--bk4);
    transition: opacity 0.35s var(--ease);
}

.about-theme-img.is-switching {
    opacity: 0.35;
}

.about-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.08) 45%, transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    pointer-events: none;
}

.about-media-label {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wh);
    margin: 0;
    max-width: 70%;
}

.about-media.is-playing .about-media-overlay {
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.about-media.is-playing:hover .about-media-overlay {
    opacity: 1;
}

.play-button,
.about-media-play {
    width: 64px;
    height: 64px;
    border: 2px solid var(--or);
    background: rgba(232, 67, 10, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
}

.play-button:hover,
.about-media-play:hover {
    background: var(--or);
    border-color: var(--or);
    transform: scale(1.05);
}

.play-button i,
.about-media-play i {
    color: var(--or);
    margin-left: 4px;
    transition: color 0.25s;
}

.about-media-play:hover i {
    color: var(--wh);
}

.about-media-play .fa-pause {
    margin-left: 0;
}

/* Partners */
.partners-section .section-header {
    margin-bottom: 2.5rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 2rem;
}

.partner-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
}

@media (min-width: 540px) {
    .partner-item {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 7px);
    }
}

@media (min-width: 900px) {
    .partner-item {
        flex: 1 1 calc(33.333% - 14px);
        max-width: calc(33.333% - 10px);
    }
}

@media (min-width: 1280px) {
    .partner-item {
        flex: 1 1 calc(20% - 14px);
        max-width: calc(20% - 12px);
    }
}

.partner-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    background: var(--bk3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
    position: relative;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--or3), var(--or), var(--or2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
    z-index: 2;
}

.partner-card:hover,
.partner-card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(232, 67, 10, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    color: inherit;
    outline: none;
}

.partner-card:hover::before,
.partner-card:focus-visible::before {
    transform: scaleX(1);
}

.partner-media {
    flex: 0 0 168px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    background: radial-gradient(ellipse 80% 70% at 50% 45%, rgba(255, 255, 255, 0.07) 0%, transparent 72%),
        var(--bk4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.partner-card--light .partner-media {
    background: linear-gradient(160deg, #f5f5f5 0%, #e8e8e8 100%);
}

.partner-card--badge .partner-media {
    padding: 32px;
}

.partner-media img {
    display: block;
    max-width: min(100%, 200px);
    max-height: 112px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s var(--ease);
}

.partner-card--badge .partner-media img {
    max-width: min(100%, 128px);
    max-height: 128px;
}

.partner-card:hover .partner-media img {
    transform: scale(1.04);
}

.partner-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 20px;
    background: var(--bk);
    position: relative;
}

.partner-name {
    font-family: var(--font-title);
    font-size: clamp(18px, 2.2vw, 22px);
    letter-spacing: 1.5px;
    line-height: 1.05;
    color: var(--wh);
    margin: 0 0 8px;
    padding-right: 36px;
}

.partner-desc {
    font-family: var(--font-cond);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--wh5);
    margin: 0;
    flex: 1;
}

.partner-cta {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232, 67, 10, 0.35);
    color: var(--or);
    font-size: 0.85rem;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.partner-card:hover .partner-cta,
.partner-card:focus-visible .partner-cta {
    background: var(--or);
    border-color: var(--or);
    color: var(--wh);
    transform: translateX(4px);
}

.partners-section .section-title,
.partners-section .section-subtitle,
.location-section .section-title,
.location-section .section-subtitle {
    color: var(--wh);
}

.partners-section .text-white-50,
.location-section .text-white-50 {
    color: var(--wh5) !important;
}

/* Map */
.map-container {
    border: 2px solid rgba(232, 67, 10, 0.22);
    overflow: hidden;
    margin-top: 2rem;
    transition: border-color 0.3s;
}

.map-container:hover {
    border-color: var(--or);
}

#mapid {
    height: 420px;
    width: 100%;
    background: var(--bk3);
    filter: grayscale(0.35) contrast(1.05);
}

/* Pin vermelho escuro (lojas.cor = darkred) */
.leaflet-marker-darkred {
    filter: brightness(0.52) saturate(1.2) contrast(1.08);
}

/* Form */
.contact-form-wrapper {
    background: var(--bk);
    border: 1px solid rgba(232, 67, 10, 0.14);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--or3), var(--or));
}

.contact-form .form-label {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--wh5);
    margin-bottom: 6px;
}

.contact-form .form-label i {
    display: none;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--bk3);
    border: 1.5px solid rgba(255, 255, 255, 0.07);
    color: var(--wh);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 0;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--bk3);
    border-color: var(--or);
    color: var(--wh);
    box-shadow: 0 0 0 3px rgba(232, 67, 10, 0.07);
}

.contact-form .form-select option {
    background: var(--bk3);
    color: var(--wh);
}

.contact-form button[type="submit"],
.about-content .btn-primary {
    font-family: var(--font-title);
    font-size: clamp(17px, 5vw, 21px);
    letter-spacing: 3px;
    color: var(--wh);
    background: var(--or);
    border: none;
    padding: 18px 28px;
    width: 100%;
    clip-path: polygon(13px 0%, 100% 0%, calc(100% - 13px) 100%, 0% 100%);
    border-radius: 0 !important;
    transition: background 0.25s, box-shadow 0.25s;
}

.contact-form button[type="submit"]:hover,
.about-content .btn-primary:hover {
    background: var(--or2);
    box-shadow: 0 10px 32px rgba(232, 67, 10, 0.45);
    color: var(--wh);
}

/* Footer */
.footer {
    background: var(--bk);
    border-top: 1px solid rgba(232, 67, 10, 0.08);
    padding: 48px 0 40px;
    color: var(--wh5);
}

.footer-brand {
    align-items: flex-start;
}

.footer-logo {
    height: 48px;
    max-width: 220px;
    margin-bottom: 1rem;
    filter: none;
}

.footer-brand h5 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--or);
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--wh5);
    font-size: 14px;
}

.footer-title {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: var(--wh5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--or);
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bk3);
    border: 1px solid rgba(232, 67, 10, 0.22);
    color: var(--or) !important;
    text-decoration: none;
    transition: all 0.25s;
    border-radius: 0;
}

.social-link:hover {
    background: var(--or);
    color: var(--wh) !important;
    border-color: var(--or);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(232, 67, 10, 0.12);
    margin: 2rem 0 1.5rem;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
    margin: 0;
}

/* Pre-footer CTA strip */
.prefooter-cta {
    background: var(--or);
    padding: 56px 24px;
    text-align: center;
}

.prefooter-cta .sec-title {
    color: var(--bk);
    margin-bottom: 12px;
}

.prefooter-cta .sec-body {
    color: rgba(0, 0, 0, 0.55);
    margin: 0 auto 24px;
}

.prefooter-cta .btn-prefooter {
    font-family: var(--font-title);
    font-size: clamp(18px, 5vw, 24px);
    letter-spacing: 3px;
    color: #fff;
    background: var(--bk);
    padding: 18px 36px;
    border: none;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.25s;
}

.prefooter-cta .btn-prefooter:hover {
    background: var(--bk2);
    transform: translateY(-2px);
    color: #fff;
}

/* Desktop */
@media (min-width: 600px) {
    .about-section,
    .partners-section,
    .location-section,
    .contact-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact-form-wrapper {
        padding: 36px 32px;
    }
}

@media (max-width: 991px) {
    .hero-visual-col {
        margin-top: 8px;
    }

    .hero-visual {
        max-height: 340px;
    }
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-hero-primary,
    .hero-buttons .btn-primary,
    .btn-ghost-hero,
    .hero-buttons .btn-outline-light {
        width: auto;
    }

    .contact-form button[type="submit"],
    .about-content .btn-primary {
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-title {
        font-size: clamp(56px, 7vw, 110px);
    }
}

@media (min-width: 1200px) {
    .hero-container {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-scroll-indicator {
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* Containers das seções — mesma largura do hero */
.pp-landing .about-section > .container,
.pp-landing .partners-section > .container,
.pp-landing .location-section > .container,
.pp-landing .contact-section > .container,
.pp-landing .prefooter-cta > .container,
.pp-landing .footer > .container {
    max-width: 1320px;
}

/* ─── Responsivo ─── */