/* === RESET & BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #07101C;
    --bg-2: #0B1828;
    --bg-3: #0F2035;
    --surface: #132540;
    --surface-2: #1A3054;
    --border: rgba(91, 192, 222, 0.12);
    --accent: #2E86C1;
    --accent-2: #5BC0DE;
    --accent-glow: rgba(46, 134, 193, 0.4);
    --accent-grad: linear-gradient(90deg, #1E5FAF, #2E86C1, #5BC0DE);
    --text: #fffce6;
    --text-muted: rgba(255, 252, 233, 0.48);
    --text-dim: #FFFCE6;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 32px;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--surface-2);
    border-radius: 3px;
}

/* === REVEAL === */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: none;
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="left"].visible {
    transform: none;
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="right"].visible {
    transform: none;
}

[data-reveal="scale"] {
    transform: scale(0.92) translateY(20px);
}

[data-reveal="scale"].visible {
    transform: none;
}

[data-reveal="fade"] {
    transform: none;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(10, 11, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 11, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__brand {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.header__logo {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFCE6;
    letter-spacing: -0.02em;
}

.header__nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.header__menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === MOBILE NAV === */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(17, 19, 24, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__link {
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-nav__link:last-child {
    border-bottom: none;
}

.mobile-nav__link:hover {
    color: var(--text);
}

/* ===========================
   HERO — NOVA VERSÃO
   =========================== */
.hero {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 48px 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero__circle--1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -80px;
    background: radial-gradient(circle, rgba(30, 95, 175, 0.2) 0%, transparent 70%);
}

.hero__circle--2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(91, 192, 222, 0.09) 0%, transparent 70%);
}

.hero__circle--3 {
    width: 260px;
    height: 260px;
    top: 45%;
    left: 45%;
    background: radial-gradient(circle, rgba(46, 134, 193, 0.07) 0%, transparent 70%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(91, 192, 222, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 20%, transparent 80%);
}

.hero__inner {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(91, 192, 222, 0.3);
    background: rgba(46, 134, 193, 0.1);
    color: rgba(255, 252, 230, 0.82);
    font-size: 0.73rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 600;
    margin-bottom: 22px;
    width: fit-content;
    animation: fadeUp 0.6s ease both;
}

.hero__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
    animation: dotPulse 2s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
    animation: fadeUp 0.7s ease 0.1s both;
}

.hero__title-line {
    display: block;
    color: rgba(255, 252, 230, 0.85);
}

.hero__typewriter-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
}

.hero__typewriter {
    background: linear-gradient(90deg, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    min-width: 2px;
}

.hero__cursor {
    display: inline-block;
    color: var(--accent-2);
    font-weight: 300;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    -webkit-text-fill-color: var(--accent-2);
}

.hero__desc {
    font-size: 1rem;
    color: rgba(255, 252, 230, 0.68);
    max-width: 480px;
    margin-bottom: 30px;
    line-height: 1.72;
    font-weight: 400;
    animation: fadeUp 0.7s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeUp 0.7s ease 0.3s both;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.7s ease 0.4s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.hero__stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(91, 192, 222, 0.15);
    margin: 0 16px;
}

.hero__stat-num {
    font-family: var(--font-head);
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 3px;
    transition: transform 0.05s;
}

.hero__stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
}

.hero__right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero__phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__phone-glow {
    position: absolute;
    width: 260px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(46, 134, 193, 0.22) 0%, transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero__phone {
    position: relative;
    z-index: 1;
    animation: phoneFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 30px rgba(46, 134, 193, 0.18));
}

.phone-frame {
    width: 220px;
    height: 460px;
    background: linear-gradient(160deg, #1c2a3d 0%, #111d2d 50%, #0d1824 100%);
    border-radius: 40px;
    border: 2px solid rgba(91, 192, 222, 0.22);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    width: 80px;
    height: 22px;
    background: #090f18;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-notch__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #1a2235;
    border: 1px solid rgba(91, 192, 222, 0.3);
}

.phone-notch__pill {
    width: 24px;
    height: 5px;
    border-radius: 3px;
    background: #1a2235;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-screen {
    position: absolute;
    inset: 6px;
    border-radius: 34px;
    background: #0c1827;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-status {
    height: 36px;
    padding: 8px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.phone-status__time {
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(255, 252, 230, 0.9);
}

.phone-status__icons {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 252, 230, 0.8);
}

.phone-app-header {
    padding: 6px 12px 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.phone-app-header__left {
    display: flex;
    align-items: center;
}

.phone-app-logo {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-2);
    letter-spacing: -0.02em;
}

.phone-app-header__right {
    flex: 1;
}

.phone-search-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(91, 192, 222, 0.12);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 0.58rem;
    color: rgba(255, 252, 230, 0.35);
}

.phone-categories {
    display: flex;
    gap: 6px;
    padding: 4px 12px 6px;
    flex-shrink: 0;
    overflow: hidden;
}

.phone-cat {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 999px;
    color: rgba(255, 252, 230, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.07);
    white-space: nowrap;
    cursor: default;
}

.phone-cat.active {
    background: linear-gradient(90deg, #1E5FAF, #2E86C1);
    color: #fff;
    border-color: transparent;
}

.phone-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 0 10px 6px;
    flex-shrink: 0;
}

.phone-product {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(91, 192, 222, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.phone-product__img {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.phone-product__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 4px;
}

.phone-promo__img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-promo__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.phone-product__name {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255, 252, 230, 0.8);
    padding: 4px 6px 1px;
    line-height: 1.2;
}

.phone-product__price {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-2);
    padding: 0 6px 5px;
    font-family: var(--font-head);
}

.phone-promo {
    margin: 0 10px 8px;
    background: linear-gradient(100deg, rgba(30, 95, 175, 0.35), rgba(91, 192, 222, 0.15));
    border: 1px solid rgba(91, 192, 222, 0.2);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    animation: promoShimmer 3s ease-in-out infinite;
}

.phone-promo__tag {
    font-size: 0.45rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-2);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.phone-promo__title {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}

.phone-promo__sub {
    font-size: 0.52rem;
    color: rgba(255, 252, 230, 0.55);
    margin-top: 1px;
}

.phone-promo__icon {
    color: var(--accent-2);
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.phone-promo__icon svg {
    width: 32px;
    height: 32px;
}

.phone-navbar {
    margin-top: auto;
    display: flex;
    padding: 6px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(9, 15, 24, 0.8);
    flex-shrink: 0;
}

.phone-navbar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255, 252, 230, 0.3);
    cursor: default;
}

.phone-navbar__item.active {
    color: var(--accent-2);
}

.phone-navbar__item span {
    font-size: 0.45rem;
    font-weight: 500;
}

.phone-btn {
    position: absolute;
    background: linear-gradient(180deg, #1c2a3d, #111d2d);
    border-radius: 3px;
}

.phone-btn--vol-up {
    left: -4px;
    top: 90px;
    width: 4px;
    height: 26px;
}

.phone-btn--vol-down {
    left: -4px;
    top: 124px;
    width: 4px;
    height: 26px;
}

.phone-btn--power {
    right: -4px;
    top: 100px;
    width: 4px;
    height: 36px;
}

.hero__badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(19, 37, 64, 0.85);
    border: 1px solid rgba(91, 192, 222, 0.2);
    backdrop-filter: blur(12px);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 252, 230, 0.85);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fcfcfc;
    animation: dotPulse 2s ease-in-out infinite;
}

.hero__badge--1 {
    top: 18%;
    left: -20px;
    animation: badgeFloat1 4s ease-in-out infinite;
}

.hero__badge--2 {
    bottom: 18%;
    right: -14px;
    animation: badgeFloat2 4s ease-in-out 1s infinite;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: fadeUp 1s ease 0.6s both;
    z-index: 2;
}

.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--text-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.btn--ghost {
    color: var(--text);
    text-decoration-color: rgba(0, 151, 197, 0.5);
    background: linear-gradient(90deg, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
}

.btn--ghost:hover {
    text-decoration: none;
    -webkit-text-fill-color: transparent;
    transform: translateY(-3px);
}

.btn--primary {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: rgba(91, 192, 222, 0.5);
}

.btn--primary:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 5px 14px;
    background: rgba(46, 134, 193, 0.08);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* === SERVIÇOS === */
.servicos {
    padding: 120px 0;
    background: var(--bg-2);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.servico-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    z-index: 0;
}

.servico-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.servico-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--surface);
    border-radius: calc(var(--radius-lg) - 1px);
    z-index: -1;
    transition: background 0.4s ease;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), 0 0 22px rgba(46, 134, 193, 0.2);
    border-color: rgba(91, 192, 222, 0.28);
}

.servico-card:hover::before {
    opacity: 1;
}

.servico-card>* {
    position: relative;
    z-index: 1;
}

.servico-card__icon {
    width: 52px;
    height: 52px;
    color: var(--accent);
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.servico-card:hover .servico-card__icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--accent-2);
}

.servico-card__icon svg {
    width: 100%;
    height: 100%;
}

.servico-card__title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.servico-card:hover .servico-card__title {
    color: var(--accent-2);
}

.servico-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* === CATÁLOGO === */
.catalogo {
    padding: 120px 0;
    background: var(--bg);
    --catalog-sticky-top: 82px;
}

.catalogo__sticky {
    top: var(--catalog-sticky-top);
    z-index: 50;
    position: -webkit-sticky;
    position: sticky;
    isolation: isolate;
    padding: 14px 0 18px;
    margin-bottom: 0;
    background: var(--bg);
}

.catalogo__sticky::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * var(--catalog-sticky-top));
    height: var(--catalog-sticky-top);
    background: var(--bg);
    pointer-events: auto;
    z-index: -1;
}

.catalogo__sticky::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -56px;
    height: 56px;
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(7, 16, 28, 0) 100%);
    pointer-events: none;
}

.catalogo__sticky .section-header {
    margin-bottom: 24px;
}

.catalogo__tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 0;
}

.catalogo__viewport {
    height: auto;
    overflow: visible;
    padding-top: 22px;
    padding-right: 0;
}

.catalogo__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.catalogo__tab svg {
    width: 18px;
    height: 18px;
}

.catalogo__tab:hover {
    color: var(--text);
    border-color: rgba(46, 134, 193, 0.35);
}

.catalogo__tab.active {
    color: #fffce6;
    border-color: transparent;
}

.produto-card__contato {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.produto-card__contato:hover {
    color: var(--text);
    border-color: rgba(46, 134, 193, 0.35);
}

.produto-card__contato.active {
    color: #fffce6;
    border-color: transparent;
}

.catalogo__panel {
    display: none;
}

.catalogo__panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.cat-section {
    margin-bottom: 64px;
}

.cat-section:last-child {
    margin-bottom: 0;
}

.cat-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cat-section__title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: transparent;
    color: #fff;
}

.carousel-wrap {
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* === PRODUTO CARD === */
.produto-card {
    width: calc(25% - 15px);
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.produto-card:hover {
    border-color: rgba(46, 134, 193, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ── ÁREA DE IMAGEM — altura fixa e padronizada ── */
.produto-card__img {
    width: 100%;
    height: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--c, #2E86C1) 15%, var(--bg-3));
    color: var(--c, #2E86C1);
    position: relative;
    overflow: hidden;
}

/* imagens reais: preenchem toda a área de forma uniforme */
.produto-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
    max-width: unset;
}

/* SVGs inline (quando não há imagem real) */
.produto-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, color-mix(in srgb, var(--c, #2E86C1) 20%, transparent), transparent 70%);
    pointer-events: none;
}

.produto-card__img svg {
    width: 72px;
    height: 72px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 16px color-mix(in srgb, var(--c, #2E86C1) 50%, transparent));
}

.produto-card__info {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.produto-card__cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.produto-card__name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.produto-card__detail {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    font-weight: 300;
    margin-top: auto;
}

/* === QUEM SOMOS === */
.quem-somos {
    padding: 120px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.quem-somos::after {
    content: 'AGL';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: 22rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.quem-somos__inner {
    display: grid;
    grid-template-columns: minmax(290px, 340px) minmax(0, 1fr);
    gap: 84px;
    align-items: start;
}

.quem-somos__label {
    padding-top: 0;
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
}

.quem-somos__title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    max-width: 22ch;
}

.quem-somos__body p {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

/* === CONTATO === */
.contato {
    padding: 140px 0 120px;
    min-height: 860px;
    background: var(--bg);
    --envelope-top-space: 120px;
    --letter-rise: -50%;
}

.contato .section-header {
    margin-bottom: 160px;
}

.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 84px;
    align-items: start;
    margin-top: 28px;
}

.contato__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 420px;
    margin-top: var(--envelope-top-space);
}

.contato__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contato__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contato__icon svg {
    width: 20px;
    height: 20px;
}

.contato__item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.contato__item-val {
    font-size: 0.95rem;
    color: var(--text-dim);
}

/* === ENVELOPE === */
.envelope-wrap {
    height: calc(420px + var(--envelope-top-space));
    padding-top: var(--envelope-top-space);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.envelope {
    width: 100%;
    height: 420px;
    position: relative;
    cursor: default;
    perspective: 800px;
    filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35));
}

.envelope__body {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
    border: 1px solid rgba(176, 214, 255, 0.16);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -12px 26px rgba(0, 0, 0, 0.18);
}

.envelope__side {
    position: absolute;
    width: 0;
    height: 0;
}

.envelope__side--left {
    bottom: 0;
    left: 0;
    border-style: solid;
    border-width: 210px 0 0 220px;
    border-color: transparent transparent transparent rgba(206, 230, 255, 0);
}

.envelope__side--right {
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 0 0 210px 220px;
    border-color: transparent transparent rgba(206, 230, 255, 0) transparent;
}

.envelope__side--bottom {
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 140px;
    border-left-width: 50%;
    border-right-width: 50%;
    border-color: transparent transparent rgba(142, 187, 232, 0.16) transparent;
}

.envelope__flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
    border: 1px solid rgba(176, 214, 255, 0.2);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    transform-origin: top center;
    transform: rotateX(0deg);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.envelope__letter {
    position: absolute;
    left: 10%;
    width: 80%;
    bottom: 4px;
    height: 85%;
    background: #f7f2dd;
    background-image: linear-gradient(#f7f2dd 0px, #f7f2dd 23px, rgba(0, 0, 0, 0.08) 24px);
    background-size: 100% 24px;
    border-left: 2.5px solid rgba(200, 60, 60, 0.35);
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.07), 0 8px 22px rgba(0, 0, 0, 0.22), 0 18px 36px rgba(0, 0, 0, 0.16);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s, opacity 0.4s ease 0.15s;
    z-index: 3;
    overflow: hidden;
}

.envelope__letter::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 14px;
    background: rgba(255, 230, 160, 0.52);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.envelope__letter::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(225deg, #e6deba 50%, transparent 50%);
    z-index: 2;
}

.envelope__letter-inner {
    padding: 24px 20px 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.envelope__letter-title {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    line-height: 24px;
}

.envelope__field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.envelope__field input,
.envelope__field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0;
    color: #111;
    font-family: var(--font-body);
    font-size: 0.82rem;
    padding: 4px 0;
    outline: none;
    resize: none;
    transition: border-color 0.25s ease;
    width: 100%;
    line-height: 24px;
}

.envelope__field input::placeholder,
.envelope__field textarea::placeholder {
    color: rgba(0, 0, 0, 0.28);
    font-style: italic;
}

.envelope__field input:focus,
.envelope__field textarea:focus {
    border-color: #2E86C1;
}

.envelope__field textarea {
    height: 52px;
    overflow: hidden;
}

.envelope__send {
    align-self: flex-start;
    padding: 9px 20px;
    font-size: 0.75rem;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.envelope__send.btn--primary {
    -webkit-text-fill-color: black;
    font-size: 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.envelope__send.btn--primary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.envelope__hint {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    z-index: 20;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.envelope__flap::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: rgba(91, 192, 222, 0.15);
    border: 1px solid rgba(91, 192, 222, 0.3);
    border-radius: 50%;
}

.envelope.open .envelope__flap {
    transform: rotateX(-180deg);
    background: linear-gradient(162deg, #2c4b78 0%, #223a5f 100%);
}

.envelope.open .envelope__letter {
    transform: translateY(var(--letter-rise));
    opacity: 1;
    z-index: 30;
}

.envelope.open .envelope__hint {
    opacity: 0;
}

/* === FOOTER === */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.footer__top {
    padding: 72px 0 56px;
}

.footer__top-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 4px;
}

.footer__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-2);
    transition: color var(--transition);
    width: fit-content;
}

.footer__whatsapp:hover {
    color: var(--text);
}

.footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav-col a {
    font-size: 0.875rem;
    color: rgba(255, 252, 230, 0.55);
    transition: color var(--transition);
    font-weight: 300;
}

.footer__nav-col a:hover {
    color: var(--text);
}

.footer__schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 252, 230, 0.55);
    gap: 12px;
}

.footer__schedule-row--closed span:last-child {
    color: rgba(220, 60, 60, 0.7);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__credit a {
    color: var(--accent);
    font-weight: 500;
    transition: color var(--transition);
}

.footer__credit a:hover {
    color: var(--accent-2);
}

@media (max-width: 900px) {
    .footer__top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer__brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    .footer__top-inner {
        grid-template-columns: 1fr;
    }

    .footer__brand-col {
        grid-column: auto;
    }
}

/* === KEYFRAMES === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes envelopePulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-6px) scale(1.07);
        opacity: 1;
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(0.5deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@keyframes badgeFloat1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes badgeFloat2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes promoShimmer {

    0%,
    100% {
        background: linear-gradient(100deg, rgba(30, 95, 175, 0.35), rgba(91, 192, 222, 0.15));
    }

    50% {
        background: linear-gradient(100deg, rgba(30, 95, 175, 0.45), rgba(91, 192, 222, 0.25));
    }
}



/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .servicos__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__right {
        justify-content: flex-start;
    }

    .hero__badge--1 {
        left: 200px;
        top: -20px;
    }

    .hero__badge--2 {
        right: 40px;
        bottom: -20px;
    }

    .quem-somos__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 0 24px;
    }

    .header__nav {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

    .hero {
        padding: 110px 24px 60px;
    }

    .hero__title {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
    }

    .hero__stats {
        padding: 18px 16px;
    }

    .hero__stat-num {
        font-size: 1.5rem;
    }

    .phone-frame {
        width: 190px;
        height: 400px;
    }

    .hero__scroll-hint {
        left: 24px;
    }

    .catalogo {
        --catalog-sticky-top: 74px;
    }

    .contato {
        min-height: auto;
        padding: 110px 0 90px;
        --envelope-top-space: 96px;
        --letter-rise: -38%;
    }

    .contato .section-header {
        margin-bottom: 72px;
    }

    .contato__grid {
        grid-template-columns: 1fr;
        margin-top: 22px;
        gap: 60px;
    }

    .contato__info {
        height: auto;
        margin-top: 0;
        justify-content: flex-start;
        gap: 18px;
    }

    .envelope-wrap {
        height: calc(440px + var(--envelope-top-space));
    }

    .envelope {
        height: 440px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .servicos {
        padding: 80px 0;
    }

    .servicos__grid {
        grid-template-columns: 1fr;
    }

    .catalogo {
        padding: 80px 0;
        --catalog-sticky-top: 72px;
    }

    .catalogo__tabs {
        gap: 8px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .catalogo__tabs::-webkit-scrollbar {
        display: none;
    }

    .catalogo__tab {
        white-space: nowrap;
        padding: 10px 20px;
    }

    .quem-somos {
        padding: 80px 0;
    }

    .quem-somos__stats {
        gap: 28px;
        flex-wrap: wrap;
    }

    .quem-somos__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.2;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat {
        flex: 1;
        min-width: 80px;
    }

    .hero__stat-sep {
        display: none;
    }

    .hero__actions .btn {
        flex: 1;
        justify-content: center;
    }

    .hero__badge {
        display: flex;
        font-size: 0.65rem;
        padding: 6px 10px;
        gap: 5px;
    }

    .hero__badge--1 {
        top: 25%;
        left: auto;
        right: 0px;
    }

    .hero__badge--2 {
        bottom: 25%;
        right: 0px;
    }

    .phone-frame {
        width: 180px;
        height: 380px;
    }

    .produto-card {
        width: calc(50% - 10px);
        min-width: 160px;
    }

    .contato {
        padding: 90px 0 80px;
        --envelope-top-space: 82px;
        --letter-rise: -32%;
    }

    .contato .section-header {
        margin-bottom: 56px;
    }

    .contato__grid {
        gap: 52px;
    }

    .envelope-wrap {
        height: calc(420px + var(--envelope-top-space));
    }

    .envelope {
        height: 380px;
    }

    .envelope__letter-inner {
        padding: 16px 14px 14px 20px;
        gap: 6px;
    }

    .envelope__field textarea {
        height: 38px;
    }

    .envelope__send {
        padding: 7px 14px;
        font-size: 0.65rem;
    }
}

/* === POST-ITS DE CONTATO === */
.contato__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 420px;
    margin-top: var(--envelope-top-space);
}

.contato__postits {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.postit {
    border-radius: 4px 4px 4px 0;
    padding: 18px 20px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18), 6px 6px 0 rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.postit:hover {
    transform: translateY(-2px) rotate(0.3deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2), 10px 10px 0 rgba(0, 0, 0, 0.08);
}

.postit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 4px 4px 0 0;
    background: rgba(0, 0, 0, 0.12);
}

.postit--yellow {
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
}

.postit--blue {
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
}

.postit--green {
    background: linear-gradient(135deg, rgba(46, 134, 193, 0.12), rgba(91, 192, 222, 0.06));
}

.postit__icon {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 20px;
    height: 20px;
    color: var(--text);
}

.postit__icon svg {
    width: 20px;
    height: 20px;
}

.postit__label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.postit__val {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.postit__val:hover {
    color: #FFFCE6;
    text-decoration: underline;
}

.postit__sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.postit__schedule {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}

.postit__schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
}

.postit__schedule-row--closed span:last-child {
    color: rgba(180, 30, 30, 0.7);
}

/* Ajuste responsivo */
@media (max-width: 900px) {
    .contato__info {
        height: auto;
        margin-top: 0;
    }
}

/* === STATS LADO ESQUERDO (Quem Somos) === */
.quem-somos__label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 8px;
}

.quem-somos__stats-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.stat-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-left__num {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(90deg, #1E5FAF, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-left__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.02em;
}

@media (max-width: 1100px) {
    .quem-somos__stats-left {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .quem-somos__stats-left {
        gap: 20px;
    }

    .stat-left__num {
        font-size: 2rem;
    }
}

/* === TICKER === */
.ticker {
    width: 100%;
    overflow: hidden;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--surface), transparent);
}

.ticker__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker__item {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 20px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.ticker__item:hover {
    color: var(--accent-2);
}

.ticker__sep {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

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

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

/* === STATUS DA LOJA === */
.store-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: px 10px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 4px;
}

.store-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.store-status--open {
    color: rgba(34, 197, 94, 0.9);
}

.store-status--open::before {
    background: rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.store-status--closed {
    color: rgba(220, 60, 60, 0.75);
}

.store-status--closed::before {
    background: rgba(220, 60, 60, 0.75);
}

/* === STATUS DA LOJA — PHONE MOCKUP === */
.phone-store-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 999px;
}

.phone-store-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.phone-store-status--open {
    color: rgba(34, 197, 94, 0.95);
}

.phone-store-status--open::before {
    background: rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.phone-store-status--closed {
    color: rgba(220, 60, 60, 0.85);
}

.phone-store-status--closed::before {
    background: rgba(220, 60, 60, 0.8);
}

/* === MODAL PRODUTO === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
}

.modal::-webkit-scrollbar { display: none; }

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--surface-2);
    color: var(--text);
}

.modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal__gallery {
    position: relative;
    background: var(--bg-3);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.modal__carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal__slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(19, 37, 64, 0.85);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    line-height: 1;
}

.modal__nav:hover {
    background: var(--accent);
    border-color: transparent;
}

.modal__nav--prev { left: 10px; }
.modal__nav--next { right: 10px; }

.modal__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.modal__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.modal__dot.active {
    background: var(--accent-2);
    width: 18px;
    border-radius: 3px;
}

.modal__info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.modal__name {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.modal__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.modal__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.modal__price-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modal__price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal__payment-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.modal__payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal__badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--surface);
}

.modal__wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
}

.modal__wpp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .modal__inner {
        grid-template-columns: 1fr;
    }

    .modal__gallery {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        aspect-ratio: 4/3;
    }

    .modal__info {
        padding: 28px 24px 32px;
    }
}

/* === PREÇO NO CARD === */
.produto-card__preco {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-top: 8px;
    margin-bottom: 6px;
}

/* === MODAL PRODUTO === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    scrollbar-width: none;
}

.modal::-webkit-scrollbar { display: none; }

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--surface-2);
    color: var(--text);
}

.modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal__gallery {
    position: relative;
    background: var(--bg-3);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.modal__carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal__slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(19, 37, 64, 0.85);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    line-height: 1;
}

.modal__nav:hover {
    background: var(--accent);
    border-color: transparent;
}

.modal__nav--prev { left: 10px; }
.modal__nav--next { right: 10px; }

.modal__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.modal__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.modal__dot.active {
    background: var(--accent-2);
    width: 18px;
    border-radius: 3px;
}

.modal__info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal__cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

.modal__name {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.modal__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
}

.modal__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.modal__price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.modal__price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #2E86C1, #5BC0DE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal__payment-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.modal__payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal__badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--surface);
}

.modal__wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: #25D366;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
    margin-top: auto;
    text-decoration: none;
    -webkit-text-fill-color: #fff;
}

.modal__wpp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .modal__inner {
        grid-template-columns: 1fr;
    }

    .modal__gallery {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        aspect-ratio: 4/3;
    }

    .modal__info {
        padding: 24px 20px 32px;
    }

    .modal__price {
        font-size: 1.6rem;
    }
}