:root {
    /* Fontes */
    --font-body: 'Inter', system-ui, sans-serif;

    /* Background */
    --bg-navbar: #000000;
    --bg-dark: #000000;
    --bg-light: #FFFFFF;
    --bg-blue-tint: #F5FCFE;
    --white: #ffffff;
    --black: #000000;
    --section-bg: var(--white);

    /* Elementos principais */
    --primary: #00CCFF;
    --primary-hover: #00A3CC;

    --link-navbar: #00CCFF;
    --link-navbar-hover: #00A3CC;
    --link-on-light: var(--primary);
    --link-on-light-hover: var(--primary-hover);
    --link-on-dark: var(--text-on-dark);
    --link-on-dark-hover: rgba(255, 255, 255, 0.85);

    --text-on-dark: #ffffff;
    --text-on-light: #212529;
    --text-muted: #6c757d;

    --hr: var(--primary);
    --arrow: var(--primary);
    --whatsapp: #25d366;
    --whatsapp-hover: #1ebe5b;

    /* Utilitarios */
    --border: #00000026;
    --faq-border: #d9d6d2;
    
    --focus-ring: rgba(45, 54, 84, 0.25);
    --focus-ring-soft: rgba(45, 54, 84, 0.2);
    
    --hero-1-bg: var(--primary-hover);
    --hero-1-overlay-dark-1: rgba(0, 0, 0, 0.6);
    --hero-1-overlay-dark-2: rgba(0, 0, 0, 0.5);
    --hero-1-overlay-dark-3: rgba(0, 0, 0, 0.2);
    --hero-1-overlay-light-1: rgba(255, 255, 255, 0.78);
    --hero-1-overlay-light-2: rgba(255, 255, 255, 0.6);
    --hero-1-overlay-light-3: rgba(255, 255, 255, 0.35);
    
    --hero-2-bg-start: #f7f9fc;
    --hero-2-bg-end: #eef3fb;
    
    --about-3-overlay-1: rgba(0, 0, 0, 0.4);
    --about-3-overlay-2: rgba(0, 0, 0, 0.1);
    
    --cta-overlay: rgba(0, 0, 0, 0.5);
    
    --carousel-bg: var(--black);
    --carousel-caption-overlay: rgba(0, 0, 0, 0.45);
    --carousel-caption-mobile-bg: #2D3654;

    --navbar-offset: 80px;
    --product-category-scroll-offset: 165px;

    --one-anim-duration: 1.2s;
}

/* Base */
* {
    box-sizing: border-box;
}

html, body {
    overscroll-behavior: none;
    scroll-behavior: smooth;
}

html {
    background-color: var(--bg-light);
}

body {
    margin-top: 0;
    background-color: var(--bg-navbar);
    font-family: var(--font-body);
    font-weight: 300;
}

body.one-navbar-static {
    padding-top: var(--navbar-offset);
}

main > section {
    margin-bottom: -1px;
}

[id] {
    scroll-margin-top: var(--navbar-offset);
}

/* Acessibilidade: foco */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.btn:focus,
.btn:focus-visible,
.form-control:focus,
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem var(--focus-ring);
    border-color: var(--primary);
}

/* Navbar */
.navbar {
    background-color: var(--bg-navbar) !important;
    box-shadow: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    transform: translateY(-100%);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.navbar.is-visible,
body.one-navbar-static .navbar {
    transform: translateY(0);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}


.navbar .nav-link {
    transition: color 0.5s ease;
    color: var(--link-navbar) !important;
    font-size: 0.9rem;
    position: relative;
}

.navbar .navbar-brand {
    color: var(--link-navbar) !important;
}

.navbar .one-navbar-brand-text {
    min-width: 0;
}

.navbar .one-navbar-brand-title {
    line-height: 1.1;
}

.navbar .one-navbar-brand-subtitle {
    line-height: 1.1;
}

.navbar .navbar-toggler {
    color: var(--link-navbar) !important;
    border-color: color-mix(in srgb, var(--link-navbar) 35%, transparent) !important;
}

.navbar .navbar-toggler:hover,
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:focus-visible {
    color: var(--link-navbar-hover) !important;
    border-color: color-mix(in srgb, var(--link-navbar-hover) 40%, transparent) !important;
}

.navbar .navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 1.5em;
    height: 1.5em;
}

.navbar .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    left: 0.2em;
    right: 0.2em;
    top: 0.34em;
    height: 0.12em;
    border-radius: 0.25rem;
    background-color: currentColor;
    box-shadow: 0 0.35em 0 currentColor, 0 0.7em 0 currentColor;
}

.navbar .nav-link:hover {
    color: var(--white) !important;
}

@media (min-width: 992px) {
    .navbar .nav-link:not(.navbar-brand)::after {
        content: "";
        position: absolute;
        left: 0.5rem;
        bottom: 0;
        width: 24px;
        height: 3px;
        border-radius: 3px;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .navbar .nav-link:not(.navbar-brand):hover::after,
    .navbar .nav-link:not(.navbar-brand):focus-visible::after {
        transform: scaleX(1);
    }
}

.navbar .dropdown-menu {
    background-color: var(--bg-navbar);
    border: 0;
    min-width: 18rem;
    max-height: min(72vh, 40rem);
    overflow-y: auto;
}

.navbar .dropdown-item {
    color: var(--link-navbar) !important;
    font-size: 0.9rem;
}

.navbar .dropdown-header {
    color: var(--link-navbar-hover);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.navbar .dropdown-divider {
    border-top-color: color-mix(in srgb, var(--link-navbar) 18%, transparent);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: #ffffff !important;
    background-color: transparent;
}

.navbar .nav-link:focus,
.navbar .nav-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 0.2rem var(--focus-ring-soft);
}

.navbar img {
    max-height: 60px;
    width: auto;
}

.navbar .one-navbar-verse {
    max-height: 43.2px;
}

@media (max-width: 991.98px) {
    .navbar .one-navbar-brand {
        max-width: calc(100% - 70px);
    }

    .navbar .one-navbar-brand-title {
        font-size: 1.02rem;
    }

    .navbar .one-navbar-brand-subtitle {
        font-size: 0.76rem;
    }
}

@media (max-width: 576px) {
    .navbar .one-navbar-brand-title {
        font-size: 1rem;
    }

    .navbar .one-navbar-brand-subtitle {
        font-size: 0.72rem;
    }
}

/* Hero 4 */
section.one-hero-4 {
    height: 300px;
    overflow: hidden;
}

.one-hero-4-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.one-parallax-bg {
    will-change: transform;
}

.one-hero-4-overlay {
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

section.one-hero-4.one-hero-tone-light .one-hero-4-overlay {
    background-color: rgba(255, 255, 255, 0.45);
}

section.one-hero-4 .container {
    z-index: 2;
}

.one-hero-4-content {
    height: 100%;
    justify-content: center;
}

.one-hero-4-logo {
    width: 165px;
    height: auto;
    margin-bottom: 1rem;
}

.one-hero-4 h1 {
    font-size: 1.6rem;
}

.one-hero-4 .lead {
    font-size: 1rem;
    max-width: 42rem;
}

section.one-hero-4.one-hero-tone-dark h1,
section.one-hero-4.one-hero-tone-dark .lead {
    color: var(--text-on-dark) !important;
}

/* Menu 1 */
.one-menu-1 .one-menu-1-item {
    border-bottom: 1px dotted var(--border);
}

/* Product List 1 */
.one-product-catalog-nav-shell {
    position: sticky;
    top: 0;
    z-index: 5;
    transition: top 0.3s ease;
    margin-bottom: 1.75rem;
    padding: 0.35rem 0;
    background-color: var(--section-bg);
}

.one-product-catalog-nav-wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
}

.one-product-catalog-nav {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0;
    scroll-behavior: smooth;
}

.one-product-catalog-arrow {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--white) 92%, var(--bg-light));
    color: var(--primary);
    box-shadow: 0 0.35rem 0.85rem rgba(0, 0, 0, 0.14);
    transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.one-product-catalog-arrow i {
    font-size: 0.95rem;
    line-height: 1;
}

.one-product-catalog-arrow.is-prev {
    justify-self: start;
}

.one-product-catalog-arrow.is-next {
    justify-self: end;
}

.one-product-catalog-arrow:hover,
.one-product-catalog-arrow:focus,
.one-product-catalog-arrow:focus-visible {
    background-color: var(--primary);
    color: var(--white);
    outline: none;
}

.one-product-catalog-arrow:disabled {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .one-product-catalog-nav {
        cursor: grab;
        user-select: none;
    }

    .one-product-catalog-nav.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
    }

    .one-product-catalog-nav.is-dragging .one-product-catalog-chip {
        pointer-events: none;
    }
}

.one-product-catalog-nav::-webkit-scrollbar {
    display: none;
}

.one-product-catalog-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.75rem 1.05rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    background: color-mix(in srgb, var(--white) 95%, var(--bg-light));
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

section.one-bg-dark .one-product-catalog-chip,
section.one-bg-dark .one-product-catalog-chip:visited,
section.one-bg-light .one-product-catalog-chip,
section.one-bg-light .one-product-catalog-chip:visited {
    color: var(--primary) !important;
}

.one-product-catalog-chip:focus {
    color: var(--primary) !important;
    background: color-mix(in srgb, var(--white) 95%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 20%, transparent);
    box-shadow: none;
    outline: none;
}

.one-product-catalog-chip:focus-visible {
    color: var(--primary) !important;
    background: color-mix(in srgb, var(--white) 95%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 30%, transparent);
    box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--primary) 18%, transparent);
    outline: none;
}

section.one-bg-dark .one-product-catalog-chip:focus-visible,
section.one-bg-light .one-product-catalog-chip:focus-visible {
    color: var(--primary) !important;
}

.one-product-catalog-chip:active {
    color: var(--primary) !important;
    background: color-mix(in srgb, var(--white) 95%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 20%, transparent);
    box-shadow: none;
}

section.one-bg-dark .one-product-catalog-chip:focus,
section.one-bg-light .one-product-catalog-chip:focus,
section.one-bg-dark .one-product-catalog-chip:active,
section.one-bg-light .one-product-catalog-chip:active {
    color: var(--primary) !important;
}

@media (hover: hover) and (pointer: fine) {
    .one-product-catalog-chip:hover {
        color: var(--white) !important;
        background-color: var(--primary);
        border-color: var(--primary);
        box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
        outline: none;
    }

    section.one-bg-dark .one-product-catalog-chip:hover,
    section.one-bg-light .one-product-catalog-chip:hover {
        color: var(--white) !important;
    }
}

.one-product-category {
    scroll-margin-top: var(--product-category-scroll-offset);
}

.one-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    color: inherit;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.one-product-card-image-link {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    color: inherit;
    container-type: inline-size;
}

.one-product-card-art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 0.85rem 1.5rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
    text-align: center;
}

.one-product-card-art-category {
    color: var(--primary);
    font-weight: 700;
    font-size: clamp(0.62rem, 6cqw, 0.78rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.one-product-card-art-title {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.95rem, 15cqw, 2.5rem);
    line-height: 1.15;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.one-product-card .card-body {
    flex: 1 1 auto;
}

.one-product-card:hover,
.one-product-card:focus-within {
    color: inherit;
    border-color: color-mix(in srgb, var(--primary) 40%, transparent);
    box-shadow: 0 0.85rem 1.6rem rgba(0, 0, 0, 0.14) !important;
}

.one-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.one-product-card-image-link:hover .one-product-card-img {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .one-product-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .one-product-card-image-link {
        display: flex;
        flex: 0 0 40%;
        max-width: 40%;
        aspect-ratio: 1 / 1;
        align-self: flex-start;
        overflow: hidden;
    }

    .one-product-card-img {
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 0.25rem;
        border-top-right-radius: 0;
        border-bottom-left-radius: calc(var(--bs-card-inner-border-radius) - var(--bs-card-border-width));
    }

    .one-product-card-art-overlay {
        padding: 0.5rem 0.5rem 0.9rem;
    }

    .one-product-card-art-category {
        font-size: clamp(0.55rem, 4.5cqw, 0.68rem);
    }

    .one-product-card-art-title {
        font-size: clamp(0.8rem, 11cqw, 1.35rem);
    }

    .one-product-card .card-body {
        min-width: 0;
        padding: 0.25rem 0.5rem 0.25rem;
    }

    .one-product-card-price {
        font-size: 1rem !important;
    }

    .one-product-card-summary {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.5rem !important;
    }
}

.one-product-card-summary {
    color: var(--text-on-light);
    font-size: 0.88rem;
    text-wrap: pretty;
}

.one-product-card-meta {
    min-width: 0;
}

@media (max-width: 991.98px) {
    .one-product-detail-breadcrumb {
        display: none;
    }
}

@media (max-width: 576px) {
    :root {
        --product-category-scroll-offset: 150px;
    }

    .one-product-catalog-nav-wrap {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.35rem;
    }

    .one-product-catalog-arrow {
        width: 1.9rem;
        height: 1.9rem;
    }

    .one-product-catalog-arrow i {
        font-size: 0.85rem;
    }

    .one-product-catalog-chip {
        padding: 0.7rem 0.9rem;
        font-size: 0.88rem;
    }
}

.one-product-detail-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    container-type: inline-size;
}

.one-product-detail-image-wrap .one-product-card-art-category {
    font-size: clamp(0.75rem, 2.5cqw, 1rem);
}

.one-product-detail-image-wrap .one-product-card-art-title {
    font-size: clamp(1.3rem, 7cqw, 3rem);
}

.one-product-detail-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.one-product-detail-meta-card {
    border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
}

.one-product-detail-meta-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.one-product-detail-description {
    font-size: 0.92rem;
}

.one-product-detail-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.one-product-detail-note {
    border-left: 4px solid var(--primary);
    background: color-mix(in srgb, var(--primary) 6%, var(--white));
}

section.one-bg-dark .one-product-detail-note {
    background: color-mix(in srgb, var(--white) 8%, transparent);
    color: var(--text-on-dark);
}

/* Player de áudio customizado (substitui o <audio controls> nativo, cuja
   interface não é estilizável no iOS Safari) */
.one-audio-player {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.one-audio-player-play {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
}

.one-audio-player-play:hover {
    opacity: 0.85;
}

.one-audio-player-play .bi-play-fill {
    margin-left: 2px;
}

.one-audio-player-time {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
}

.one-audio-player-seek {
    flex: 1 1 auto;
    min-width: 0;
    height: 0.25rem;
    margin: 0;
    background: var(--border);
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.one-audio-player-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.one-audio-player-seek::-moz-range-thumb {
    width: 0.75rem;
    height: 0.75rem;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.one-audio-player-seek::-moz-range-track {
    background: transparent;
}

/* Process (pauta musical) */
.one-process-score {
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.one-process-staff {
    --staff-pad-y: 0.6rem;
    --staff-pad-x: 1rem;
    position: relative;
    box-sizing: border-box;
    height: clamp(135px, 19vw, 165px);
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    background-color: #ffffff;
    border-radius: 0.5rem;
}

.one-process-clef {
    position: absolute;
    z-index: 1;
    left: calc(var(--staff-pad-x) + 1rem);
    top: var(--staff-pad-y);
    bottom: var(--staff-pad-y);
    display: flex;
    align-items: center;
    font-size: clamp(4.75rem, 9.5vw, 7rem);
    line-height: 1;
    color: #000000;
    font-family: 'Segoe UI Symbol', 'Apple Symbols', 'Noto Sans Symbols', serif;
}

.one-process-staff-lines {
    position: absolute;
    inset: var(--staff-pad-y) var(--staff-pad-x);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.one-process-staff-lines span {
    display: block;
    height: 1px;
    background-color: #aaaaaa;
}

.one-process-barline-start {
    position: absolute;
    z-index: 1;
    top: calc(var(--staff-pad-y) + 0.35rem);
    bottom: calc(var(--staff-pad-y) + 0.35rem);
    left: var(--staff-pad-x);
    display: flex;
    align-items: stretch;
    gap: 3px;
}

.one-process-barline-end {
    position: absolute;
    top: calc(var(--staff-pad-y) + 0.35rem);
    bottom: calc(var(--staff-pad-y) + 0.35rem);
    right: var(--staff-pad-x);
    display: flex;
    align-items: stretch;
}

.one-process-barline-thin {
    width: 2px;
    background-color: #aaaaaa;
}

.one-process-barline-thick {
    width: 6px;
    background-color: #aaaaaa;
}

.one-process-notes {
    position: absolute;
    inset: var(--staff-pad-y) var(--staff-pad-x) var(--staff-pad-y) clamp(5.5rem, 11vw, 7.75rem);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    justify-items: center;
}

.one-process-note {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(var(--note-rise, 0) * 24px);
    cursor: default;
}

.one-process-note-icon {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.one-process-note.is-active .one-process-note-icon {
    transform: scale(1.4);
}

.one-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .one-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .one-process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.one-process-step-number {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 1;
}

.one-process-step h3 {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
}

.one-process-step p {
    font-size: 0.95rem;
}

.one-process-step {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.one-process-step:hover,
.one-process-step:focus-within,
.one-process-step.is-active {
    border-color: color-mix(in srgb, var(--primary) 40%, transparent);
    box-shadow: 0 0.85rem 1.6rem rgba(0, 0, 0, 0.14) !important;
}

/* Process 2 - indicado para fundo escuro (one-bg-dark) */
.one-process-2-header {
    max-width: 780px;
}

.one-process-2-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.one-process-2-step h3 {
    font-size: 1.3125rem;
    margin-bottom: 0;
}

.one-process-2-step p {
    font-size: 0.90625rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

.one-process-2-timeline {
    position: relative;
    width: 48px;
    margin-right: 1.125rem;
}

.one-process-2-timeline-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.one-process-2-timeline::after {
    content: '';
    position: absolute;
    top: 48px;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, .16);
}

.one-process-2-step-last .one-process-2-timeline::after {
    display: none;
}

.one-process-2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.78125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.one-process-2-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .one-process-2-title-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .one-process-2-timeline {
        width: auto;
        height: 48px;
        margin-right: 0;
        margin-bottom: 1.25rem;
        justify-content: center;
    }

    .one-process-2-timeline::after {
        top: 50%;
        bottom: auto;
        left: calc(50% + 24px);
        right: 0;
        width: auto;
        height: 2px;
        transform: translateY(-50%);
    }

    .one-process-2-timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: calc(50% + 24px);
        height: 2px;
        background: rgba(255, 255, 255, .16);
        transform: translateY(-50%);
    }

    .one-process-2-step-first .one-process-2-timeline::before {
        display: none;
    }
}

/* Who 1 (imagem institucional, paisagem) */
.one-who-img-wrap {
    width: 100%;
    aspect-ratio: 1200 / 800;
    overflow: hidden;
    border-radius: var(--bs-border-radius);
}

.one-who-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.one-who-img-wrap:hover .one-who-img {
    transform: scale(1.05);
}

/* CTA 1 */
section.one-cta-1 {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    color: var(--text-on-dark);
    margin-top: -1px;
    margin-bottom: -1px;
}

.one-cta-1-bg {
    position: absolute;
    top: -200px;
    bottom: -200px;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .one-cta-1-bg {
        background-position: center center;
    }
}

section.one-cta-1::before {
    content: '';
    position: absolute;
    inset: -1px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.one-cta-1-content {
    z-index: 10;
}

/* FAQ (mesmo padrão do Up. Tatamaca) */
.one-faq-1 .accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.one-faq-1 .accordion-item {
    border: 1px solid var(--faq-border) !important;
    border-radius: 0.5rem;
    overflow: hidden;
}

.one-faq-1 .accordion-button {
    background-color: transparent;
    font-weight: 500;
    padding: 22px 26px;
}

.one-faq-1 .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.one-faq-1 .accordion-button::after {
    background-image: none;
    content: '+';
    width: auto;
    height: auto;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--primary);
    transform: none;
}

.one-faq-1 .accordion-button:not(.collapsed)::after {
    content: '\2212';
    transform: none;
}

.one-faq-1 .accordion-button:focus {
    box-shadow: none;
    border-color: inherit;
}

.one-faq-1 .accordion-body {
    padding: 0 26px 24px;
    font-size: 15px;
    line-height: 1.65;
}

/* Marcador de bolinha (links do footer e da navbar mobile) */
.one-dot-marker {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    vertical-align: middle;
}

/* Eyebrow/título/lead de seção (FAQ, Contact) */
.one-section-eyebrow {
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}

.one-section-title {
    font-size: clamp(1.875rem, 4vw, 2.375rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.one-section-lead {
    font-size: 1rem;
    line-height: 1.6;
}

/* Links gerais */
a {
    color: var(--link-on-light);
}

a:hover,
a:focus {
    color: var(--link-on-light-hover);
}

/* Rodape */
footer {
    font-size: 0.9rem;
}

footer .h5 {
    font-size: 1rem;
}

footer a {
    transition: color 0.5s ease;
    color: var(--link-on-light) !important;
    text-decoration: none;
}

.one-footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.one-footer-links .one-dot-marker {
    flex: 0 0 auto;
    margin-top: 0.5rem;
}

.one-footer-links a {
    display: block;
}

/* Footer subitems: slightly tighter vertical rhythm */
.one-footer-links li.ms-2 {
    margin-bottom: 0.2rem;
}

.one-footer-links li.ms-2 a {
    line-height: 1.3;
}

footer a:hover {
    color: var(--link-on-light-hover) !important;
}

/* Debug blocks */
.one-debug-section {
    position: relative;
}

.one-debug-label {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 3;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(13, 110, 253, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 0.35rem;
    padding: 0.3rem 0.45rem;
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
}

.one-debug-label:hover,
.one-debug-label:focus {
    color: #fff;
    text-decoration: underline;
}

footer.one-bg-dark a {
    color: var(--link-navbar) !important;
}

footer.one-bg-dark a:hover,
footer.one-bg-dark a:focus {
    color: var(--white) !important;
}

footer.one-bg-dark .text-primary {
    color: var(--text-on-dark) !important;
}

/* Seções (background) */
section.one-bg-dark,
footer.one-bg-dark {
    --section-bg: var(--bg-dark);
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

section.one-bg-light,
footer.one-bg-light {
    --section-bg: var(--bg-light);
    background-color: var(--bg-light);
    color: var(--text-on-light);
}

/* Variante de seção clara com leve tom azulado (navbar/footer/hero continuam pretos) */
section.one-bg-light.one-bg-blue-tint {
    --section-bg: var(--bg-blue-tint);
    background-color: var(--bg-blue-tint);
}

section.one-bg-dark h1,
section.one-bg-dark h2,
section.one-bg-dark h3,
section.one-bg-dark h4,
section.one-bg-dark h5,
section.one-bg-dark h6,
footer.one-bg-dark h1,
footer.one-bg-dark h2,
footer.one-bg-dark h3,
footer.one-bg-dark h4,
footer.one-bg-dark h5,
footer.one-bg-dark h6 {
    color: inherit;
}

/* Lead: contraste consistente em seções escuras */
section.one-bg-dark .lead {
    color: var(--text-on-dark) !important;
}

/* Exceções para conteúdo dentro de cards claros em seções escuras */
section.one-bg-dark .card .lead {
    color: var(--text-on-light) !important;
}

section.one-bg-dark .card .text-primary {
    color: var(--primary) !important;
}

/* Superfícies claras dentro de seção escura devem manter contraste de seção clara */
section.one-bg-dark .card a,
section.one-bg-dark .accordion-item a,
section.one-bg-dark .accordion-button a,
section.one-bg-dark .accordion-body a {
    color: var(--link-on-light) !important;
}

section.one-bg-dark .card a:hover,
section.one-bg-dark .card a:focus,
section.one-bg-dark .accordion-item a:hover,
section.one-bg-dark .accordion-item a:focus,
section.one-bg-dark .accordion-button a:hover,
section.one-bg-dark .accordion-button a:focus,
section.one-bg-dark .accordion-body a:hover,
section.one-bg-dark .accordion-body a:focus {
    color: var(--link-on-light-hover) !important;
}

section.one-bg-dark .accordion-button.text-primary,
section.one-bg-dark .accordion-item .text-primary,
section.one-bg-dark .accordion-body .text-primary,
section.one-bg-dark .card .text-primary {
    color: var(--primary) !important;
}

/* Contraste por contexto de fundo */
section.one-bg-dark a:not(.btn):not(.one-product-catalog-chip) {
    color: var(--link-on-dark) !important;
}

section.one-bg-dark a:not(.btn):not(.one-product-catalog-chip):hover,
section.one-bg-dark a:not(.btn):not(.one-product-catalog-chip):focus {
    color: var(--link-on-dark-hover) !important;
}

section.one-bg-light a:not(.btn):not(.one-product-catalog-chip) {
    color: var(--link-on-light) !important;
}

section.one-bg-light a:not(.btn):not(.one-product-catalog-chip):hover,
section.one-bg-light a:not(.btn):not(.one-product-catalog-chip):focus {
    color: var(--link-on-light-hover) !important;
}

section.one-bg-dark .text-primary,
footer.one-bg-dark .text-primary {
    color: var(--text-on-dark) !important;
}

section.one-bg-dark .btn-primary {
    background-color: var(--text-on-dark) !important;
    border-color: var(--text-on-dark) !important;
    color: var(--bg-dark) !important;
}

section.one-bg-dark .btn-primary:hover,
section.one-bg-dark .btn-primary:focus,
section.one-bg-dark .btn-primary:active,
section.one-bg-dark .btn-primary:focus-visible {
    background-color: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    color: var(--bg-dark) !important;
}

section.one-bg-dark .btn-outline-primary {
    color: var(--text-on-dark) !important;
    border-color: var(--text-on-dark) !important;
}

section.one-bg-dark .btn-outline-primary:hover,
section.one-bg-dark .btn-outline-primary:focus,
section.one-bg-dark .btn-outline-primary:active,
section.one-bg-dark .btn-outline-primary:focus-visible {
    background-color: var(--text-on-dark) !important;
    border-color: var(--text-on-dark) !important;
    color: var(--bg-dark) !important;
}

/* Tipografia e botoes */
.text-primary {
    color: var(--primary) !important;
}

.btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--text-on-dark) !important;
}

.btn-whatsapp {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
    padding: 12px 22px;
    font-size: 0.9rem;
}

.btn-comprar {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary);
    --bs-btn-disabled-border-color: var(--primary);
    padding: 12px 22px;
    font-size: 0.9rem;
}

/* Utilitarios */
.one-small-hr {
    width: 50px;
    border: 2px solid var(--hr);
}

section.one-bg-dark .one-small-hr,
footer.one-bg-dark .one-small-hr {
    border-color: var(--text-on-dark);
    opacity: 0.9;
}

/* Botoes flutuantes */
.one-arrow {
    background-color: var(--arrow);
    color: var(--white);
    border: 2px solid var(--white);
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    z-index: 1090;
    box-shadow: 0 4px 8px var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 2s ease;
}

.one-arrow.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.one-arrow:hover,
.one-arrow:focus,
.one-arrow:active,
.one-arrow:visited {
    transform: scale(1.1);
    text-decoration: none;
    color: var(--white) !important;
    background-color: var(--arrow);
    border: 2px solid var(--white);
}

.one-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background-color: var(--whatsapp);
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 20px;
    z-index: 1090;
    box-shadow: 0 4px 8px var(--border);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.one-whatsapp i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.one-whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.one-whatsapp-text span:first-child {
    font-size: 12px;
    font-weight: 700;
}

.one-whatsapp-text span:last-child {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
    .one-whatsapp:hover {
        transform: scale(1.05);
    }
}

.one-whatsapp:hover,
.one-whatsapp:focus,
.one-whatsapp:focus-visible,
.one-whatsapp:active,
.one-whatsapp:visited {
    text-decoration: none;
    color: var(--white);
    background-color: var(--whatsapp);
}

/* Icones sociais */
.one-social-icon.btn-outline-secondary {
    background-color: transparent !important;
    color: var(--primary) !important;
    border-color: var(--primary);
    box-shadow: none;
}

footer.one-bg-dark .one-social-icon.btn-outline-secondary {
    color: var(--primary) !important;
    border-color: transparent !important;
}

.one-social-icon.btn-outline-secondary:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary);
    box-shadow: none;
}

footer.one-bg-dark .one-social-icon.btn-outline-secondary:hover {
    background-color: color-mix(in srgb, var(--white) 12%, transparent) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

.one-social-icon.btn-outline-secondary:focus,
.one-social-icon.btn-outline-secondary:focus-visible,
.one-social-icon.btn-outline-secondary:active {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem var(--focus-ring-soft);
}

footer.one-bg-dark .one-social-icon.btn-outline-secondary:focus,
footer.one-bg-dark .one-social-icon.btn-outline-secondary:focus-visible,
footer.one-bg-dark .one-social-icon.btn-outline-secondary:active {
    background-color: color-mix(in srgb, var(--white) 12%, transparent) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Animacoes (data-one) */
[data-one] {
    opacity: 0;
    transition: opacity var(--one-anim-duration) ease-out, transform var(--one-anim-duration) ease-out;
}

[data-one].one-in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-one="fade-up"] {
    transform: translateY(60px);
}

[data-one="fade-up"].one-in-view {
    transform: translateY(0);
}

[data-one="zoom-in"] {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: opacity var(--one-anim-duration) ease-out,
    transform var(--one-anim-duration) cubic-bezier(0.16, 1, 0.3, 1);
}

[data-one="zoom-in"].one-in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* 404 */
body.one-404-page {
    background-color: var(--bg-light);
}

.one-404-illustration {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto 1.5rem;
}

.one-404-illustration-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.one-404-illustration-group {
    position: absolute;
    inset: 0;
    transform: scale(0.75);
    transform-origin: center center;
}

.one-404-illustration-window,
.one-404-illustration-logo,
.one-404-illustration-base {
    position: absolute;
    display: block;
}

.one-404-illustration-window {
    top: 27%;
    left: 45%;
    width: 44.5%;
    height: 44.5%;
    overflow: hidden;
    z-index: 1;
}

.one-404-illustration-logo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.one-404-illustration-base {
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Contact 2 (honeypot anti-spam) */
.one-fax {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Quote 1 */
.one-quote-1-figure {
    position: relative;
    margin: 0;
}

.one-quote-1-text {
    text-align: center;
    font-style: italic;
    line-height: 1.9;
    font-size: 1rem;
    color: var(--text-on-light);
    border: 0;
    padding: 0;
    margin-bottom: 0;
}

.one-quote-1-mark {
    color: var(--primary);
    font-family: Georgia, 'Times New Roman', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 0;
    vertical-align: -0.35rem;
    margin-inline: 0.2em;
}

.one-quote-1-hr {
    border-color: var(--primary);
    opacity: 1;
    margin: 1.25rem auto;
    width: 45%;
}

.one-quote-1-author {
    text-align: center;
    color: var(--text-on-light);
    font-weight: 700;
    margin-bottom: 0;
}

.one-quote-1-author-bio {
    font-size: 0.875rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--text-on-light) 60%, transparent);
    margin-top: 0.2rem;
}

