:root {
    /* Background */
    --bg-navbar: #f70b91;
    --bg-dark: #F9F3E9;
    --bg-light: #ffffff;
    --white: #ffffff;

    /* Elementos principais */
    --primary: #f70b91;
    --primary-hover: #000000;

    --link-navbar: #ffffff;
    --link-navbar-hover: #FAE1F1;
    --link-on-light: var(--primary);
    --link-on-light-hover: var(--primary-hover);
    --link-on-dark: var(--primary);
    --link-on-dark-hover: var(--primary-hover);

    --text-on-dark: #ffffff;
    --text-on-light: #212529;
    
    --hr: var(--primary);
    --arrow: #f70b91;
    --whatsapp: #25d366;
    --whatsapp-hover: #1ebe5b;

    /* Utilitarios */
    --border: #00000026;
    --focus-ring: rgba(247, 21, 153, 0.25);
    --focus-ring-soft: rgba(247, 21, 153, 0.2);

    --hero-1-bg: var(--primary);
    --hero-1-overlay-dark-1: rgba(0, 0, 0, 0.2);
    --hero-1-overlay-dark-2: rgba(0, 0, 0, 0.1);
    --hero-1-overlay-dark-3: rgba(0, 0, 0, 0.0);
    --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);
    
    --cta-overlay: rgba(0, 0, 0, 0.5);

    --navbar-offset: 80px;
    --section-scroll-offset: 78px;
    --product-nav-offset: var(--navbar-offset);
    --product-category-scroll-offset: 150px;
    
    --one-anim-duration: 1.2s;
}

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

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

body {
    margin-top: var(--navbar-offset);
}

[id] {
    scroll-margin-top: var(--section-scroll-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;
}


.navbar .container {
    min-height: var(--navbar-offset);
}

.navbar .nav-link {
    transition: color 0.5s ease;
    color: var(--link-navbar) !important;
    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(--link-navbar-hover) !important;
}

.navbar .dropdown-menu {
    background-color: var(--bg-navbar);
    border-color: color-mix(in srgb, var(--link-navbar) 12%, transparent);
    min-width: 18rem;
    max-height: min(72vh, 40rem);
    overflow-y: auto;
}

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

.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: var(--link-navbar-hover) !important;
    background-color: rgba(255, 255, 255, 0.12);
}

.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: 75px;
    width: auto;
}

@media (max-width: 991.98px) {
    :root {
        --section-scroll-offset: 80px;
        --product-nav-offset: var(--navbar-offset);
        --product-category-scroll-offset: 150px;
    }

    .navbar .container {
        align-items: flex-start;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar .one-navbar-brand {
        max-width: calc(100% - 70px);
        min-height: 2.75rem;
        align-items: flex-start !important;
    }

    .navbar .one-navbar-brand-text {
        min-height: 2.75rem;
    }

    .navbar .navbar-collapse {
        margin-top: 0.875rem;
        padding-top: 0;
    }
}

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

    .navbar img {
        max-height: 64px;
    }
}

/* Hero 1 */
section.one-hero-1 {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hero-1-bg);
}

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

section.one-hero-1 .one-hero-1-overlay {
    inset: 0;
    height: 100%;
    width: 100%;
}

section.one-hero-1.one-hero-tone-dark .one-hero-1-overlay {
    background: linear-gradient(
        90deg,
        var(--hero-1-overlay-dark-1) 0%,
        var(--hero-1-overlay-dark-2) 60%,
        var(--hero-1-overlay-dark-3) 100%
    );
    z-index: 1;
}

section.one-hero-1.one-hero-tone-light .one-hero-1-overlay {
    background: linear-gradient(
        90deg,
        var(--hero-1-overlay-light-1) 0%,
        var(--hero-1-overlay-light-2) 60%,
        var(--hero-1-overlay-light-3) 100%
    );
    z-index: 1;
}

section.one-hero-1 .container {
    position: relative;
    z-index: 2;
}

section.one-hero-1 .one-hero-1-content {
    max-width: 38rem;
}

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

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

section.one-hero-1 h1 {
    max-width: 38rem;
}

.one-hero-1-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.one-hero-1-logo {
    width: min(100%, 12rem);
    height: auto;
    filter: drop-shadow(0 0.6rem 1.6rem rgba(0, 0, 0, 0.22));
}

/* Info 1 */
.one-info-1 .bi.text-primary {
    color: var(--primary) !important;
}

.one-info-1 .card-text {
    color: var(--text-on-light);
}

@media (min-width: 768px) {
    section.one-hero-1 .lead {
        max-width: 38rem;
    }
}

@media (min-width: 992px) {
    .one-hero-1-logo-wrap {
        justify-content: flex-end;
    }
}

@media (max-width: 991.98px) {
    .one-hero-1-lead {
        display: inline-block;
        background: rgba(255, 255, 255, 0.1);
    }

    .one-hero-1-logo-wrap {
        margin-top: 0.5rem;
    }

    .one-hero-1-logo {
        width: min(100%, 12rem);
        filter: none;
    }
}

.one-parallax-bg {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

@media (hover: none) and (pointer: coarse) {
    .one-hero-1-bg {
        height: 144%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .one-hero-1-bg {
        top: 0;
        height: 100%;
        transform: translate3d(0, 0, 0);
    }
}

/* Product List 1 */
/* Navegacao sticky das categorias do catalogo */

.one-product-catalog-nav-shell {
    position: sticky;
    top: var(--product-nav-offset);
    z-index: 11;
    margin-bottom: 2rem;
    padding: 0.35rem 0 0.2rem;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--bg-dark) 92%, transparent) 0%,
        color-mix(in srgb, var(--bg-dark) 76%, transparent) 70%,
        transparent 100%
    );
}

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

.one-product-catalog-nav {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding: 0.2rem 0.1rem;
    scrollbar-width: none;
}

.one-product-catalog-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    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 {
    display: block;
    font-size: 0.95rem;
    line-height: 1;
}

.one-product-catalog-arrow.is-prev {
    grid-column: 1;
}

.one-product-catalog-arrow.is-next {
    grid-column: 3;
}

.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 {
    opacity: 0.4;
    pointer-events: none;
    transform: scale(0.96);
}

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

    .one-product-catalog-nav.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
        user-select: none;
    }

    .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;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
    background-color: color-mix(in srgb, var(--white) 92%, var(--bg-light));
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

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: color-mix(in srgb, var(--white) 94%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 32%, transparent);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
    outline: none;
}

.one-product-catalog-chip:focus-visible {
    color: var(--primary) !important;
    background-color: color-mix(in srgb, var(--white) 94%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 32%, transparent);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
    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: color-mix(in srgb, var(--white) 94%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary) 32%, transparent);
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.12);
    outline: 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(--primary) !important;
        background-color: color-mix(in srgb, var(--white) 94%, var(--bg-light));
        border-color: color-mix(in srgb, var(--primary) 32%, transparent);
        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(--primary) !important;
    }
}

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

/* Card base do catalogo e de "Veja tambem" */
.one-product-card {
    overflow: hidden;
    border: 1px solid transparent;
}

.one-product-card-image-link {
    display: block;
}

.one-product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.one-product-card-link:hover,
.one-product-card-link:focus,
.one-product-card-link:focus-visible {
    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: 260px;
    object-fit: cover;
}

/* No mobile o card vira horizontal: imagem a esquerda e conteudo a direita */
@media (max-width: 767.98px) {
    .one-product-card-link {
        flex-direction: row;
        align-items: flex-start;
    }

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

    .one-product-card-img {
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 0.25rem 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-link .card-body {
        min-width: 0;
        padding: 0.25rem 0.5rem 0.25rem;
    }

    .one-product-card-title-link {
        font-size: 1rem;
    }

    .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-title-link {
    color: var(--text-on-light);
}

.one-product-card-title-link:hover,
.one-product-card-title-link:focus,
.one-product-card-title-link:focus-visible {
    color: var(--primary);
    text-decoration: none;
}

.one-product-card-link:hover .one-product-card-title-link,
.one-product-card-link:focus .one-product-card-title-link,
.one-product-card-link:focus-visible .one-product-card-title-link {
    color: var(--primary);
}

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

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

/* O breadcrumb so aparece quando a navbar estiver no modo desktop */
@media (max-width: 991.98px) {
    .one-product-detail-breadcrumb {
        display: none;
    }
}

/* Ajustes finos do trilho de categorias em telas muito pequenas */
@media (max-width: 576px) {
    .one-product-catalog-nav-wrap {
        grid-template-columns: 1.9rem minmax(0, 1fr) 1.9rem;
        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;
    }

}

/* Cards Images 5 */
.one-cards-images-5-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Menu 1 */
/* Mesmo componente usado na home e na pagina de produto */
.one-menu-1 .one-menu-1-item {
    border-bottom: 1px dotted var(--border);
}

/* Image List 2 */
.one-image-list-2-img {
    width: 100%;
    height: auto;
}

.one-image-list-2-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
}

.one-image-list-2-list i {
    flex: 0 0 auto;
    width: 1.25rem;
    margin-top: 0.15rem;
}

/* Product Detail */
/* Estrutura exclusiva da pagina /produto/slug */
.one-product-detail-hero-img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    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-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.1rem;
    margin-bottom: 0.65rem;
}

.one-product-detail-list i {
    flex: 0 0 auto;
    width: 1.25rem;
    margin-top: 0.15rem;
}

.one-product-detail-list span {
    display: block;
}

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

.one-who-1-img {
    max-height: 600px;
    max-width: 350px;
    object-fit: cover;
    object-position: top;
}

.one-image-list-2-list span {
    display: block;
}

/* Carousel 2 */
.one-carousel-2 {
    position: relative;
    border-top: 0;
    border-bottom: 0;
}

.one-carousel-2-shell {
    width: clamp(18rem, 42vw, 32rem);
    max-width: calc(100% - 2rem);
}

.one-carousel-2 .carousel-inner {
    overflow: hidden;
    box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.16);
}

.one-carousel-2 .carousel-item {
    background-color: transparent;
}

.one-carousel-2-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.one-carousel-2-link:hover,
.one-carousel-2-link:focus,
.one-carousel-2-link:focus-visible {
    color: inherit;
    text-decoration: none;
}

.one-carousel-2-img {
    display: block;
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

.one-carousel-2-caption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 2.15rem;
    padding: 0.3rem 0.65rem;
    background-color: var(--cta-overlay);
    border-radius: 0.375rem;
}

.one-carousel-2-caption p {
    font-size: 0.88rem;
    line-height: 1.2;
}

.one-carousel-2 .carousel-indicators {
    bottom: 0.55rem;
    margin-bottom: 0;
    gap: 0.45rem;
}

.one-carousel-2 .carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    opacity: 0.45;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    margin: 0;
    border: 0;
    background-clip: border-box;
}

.one-carousel-2 .carousel-indicators [data-bs-target]:hover,
.one-carousel-2 .carousel-indicators [data-bs-target]:focus-visible {
    background-color: var(--primary-hover);
    opacity: 1;
}

.one-carousel-2 .carousel-indicators .active {
    background-color: var(--primary);
    opacity: 1;
}

.one-carousel-2 .carousel-control-prev,
.one-carousel-2 .carousel-control-next {
    opacity: 1;
    top: 50%;
    bottom: auto;
    width: 2rem;
    height: 2rem;
    margin-top: -1rem;
    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-carousel-2 .carousel-control-prev {
    left: 0.6rem;
}

.one-carousel-2 .carousel-control-next {
    right: 0.6rem;
}

.one-carousel-2 .carousel-control-prev:hover,
.one-carousel-2 .carousel-control-prev:focus,
.one-carousel-2 .carousel-control-prev:focus-visible,
.one-carousel-2 .carousel-control-next:hover,
.one-carousel-2 .carousel-control-next:focus,
.one-carousel-2 .carousel-control-next:focus-visible {
    background-color: var(--primary);
    color: var(--white);
    outline: none;
}

.one-carousel-2-control-icon {
    display: block;
    font-size: 0.95rem;
    line-height: 1;
}

@media (max-width: 576px) {
    .one-carousel-2-shell {
        width: min(100% - 1rem, 22rem);
    }

    .one-carousel-2-caption {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 1.9rem;
        padding: 0.25rem 0.55rem;
    }

    .one-carousel-2-caption p {
        font-size: 0.8rem;
    }

    .one-carousel-2 .carousel-indicators {
        bottom: 0.45rem;
    }

    .one-carousel-2 .carousel-control-prev,
    .one-carousel-2 .carousel-control-next {
        width: 1.9rem;
        height: 1.9rem;
        margin-top: -0.95rem;
    }

    .one-carousel-2-control-icon {
        font-size: 0.85rem;
    }
}

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

img.one-cta-1-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: right center;
    z-index: -1;
    pointer-events: none;
}

.one-cta-1-overlay {
    background-color: rgba(0, 0, 0, 0.48);
}

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

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

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

/* Rodape */
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 i {
    flex: 0 0 auto;
    margin-top: 0.15rem;
}

.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-on-dark) !important;
}

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

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

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

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

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

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,
section.one-bg-navbar h1,
section.one-bg-navbar h2,
section.one-bg-navbar h3,
section.one-bg-navbar h4,
section.one-bg-navbar h5,
section.one-bg-navbar 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-light) !important;
}

section.one-bg-navbar .lead {
    color: var(--text-on-dark) !important;
}

/* Exceção: quando o lead estiver em bloco claro, usar texto escuro */
section.one-bg-dark .bg-white .lead {
    color: var(--text-on-light) !important;
}

/* Blocos claros dentro de seção escura: garantir texto escuro */
section.one-bg-dark .bg-white {
    color: var(--text-on-light) !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:not(.btn),
section.one-bg-dark .bg-white a:not(.btn),
section.one-bg-dark .accordion-item a:not(.btn),
section.one-bg-dark .accordion-button a:not(.btn),
section.one-bg-dark .accordion-body a:not(.btn) {
    color: var(--link-on-light) !important;
}

section.one-bg-dark .card a:not(.btn):hover,
section.one-bg-dark .card a:not(.btn):focus,
section.one-bg-dark .bg-white a:not(.btn):hover,
section.one-bg-dark .bg-white a:not(.btn):focus,
section.one-bg-dark .accordion-item a:not(.btn):hover,
section.one-bg-dark .accordion-item a:not(.btn):focus,
section.one-bg-dark .accordion-button a:not(.btn):hover,
section.one-bg-dark .accordion-button a:not(.btn):focus,
section.one-bg-dark .accordion-body a:not(.btn):hover,
section.one-bg-dark .accordion-body a:not(.btn):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,
section.one-bg-dark .bg-white .text-primary {
    color: var(--primary) !important;
}

section.one-bg-dark .bg-white .one-small-hr {
    border-color: var(--hr) !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,
section.one-bg-navbar .text-primary,
footer.one-bg-dark .text-primary {
    color: var(--primary) !important;
}

section.one-bg-dark .btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !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: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: var(--white) !important;
}

section.one-bg-dark .btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !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(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

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

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: var(--text-on-dark) !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.one-btn-whatsapp {
    background-color: var(--whatsapp) !important;
    border-color: var(--whatsapp) !important;
    color: var(--white) !important;
}

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

/* 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(--hr);
    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: 999;
    box-shadow: 0 4px 8px var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

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

.one-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--whatsapp);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 4px 8px var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.one-whatsapp:hover {
    transform: scale(1.1);
    text-decoration: none;
    background-color: var(--whatsapp);
    color: var(--white);
}

.one-whatsapp:focus,
.one-whatsapp:focus-visible,
.one-whatsapp:active {
    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: var(--primary) !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: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !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: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Avisos */
#one-copy {
    height: 20px;
    font-size: 0.5rem;
}

/* 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 */
.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;
}

/* Carousel 4 */
.one-carousel-4 .carousel-item img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 760px;
}

.one-carousel-4 {
    position: relative;
}

.one-carousel-4-track {
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .one-carousel-4-track {
        max-width: 480px;
    }
}

.one-carousel-4-nav {
    margin-top: 0.9rem;
}

.one-carousel-4-indicators {
    position: static;
    margin: 0;
    gap: 0.45rem;
}

.one-carousel-4 .carousel-indicators [data-bs-target] {
    background-color: var(--primary);
    opacity: 0.45;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    margin: 0;
    border: 0;
    background-clip: border-box;
}

.one-carousel-4 .carousel-indicators [data-bs-target]:hover,
.one-carousel-4 .carousel-indicators [data-bs-target]:focus-visible {
    background-color: var(--primary-hover);
    opacity: 1;
}

.one-carousel-4 .carousel-indicators .active {
    background-color: var(--primary);
    opacity: 1;
}

.one-carousel-4 .carousel-control-prev,
.one-carousel-4 .carousel-control-next {
    opacity: 1;
}

.one-carousel-4-control-btn {
    width: 2.4rem !important;
    height: 2.4rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary) 55%, #ffffff);
    background-color: var(--bg-light);
    opacity: 1 !important;
    flex: 0 0 auto;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.one-carousel-4-control-btn i,
.one-carousel-4-control-btn .bi.text-primary {
    font-size: 1.1rem;
    color: var(--primary) !important;
    transition: color 0.25s ease;
}

.one-carousel-4-control-btn:hover,
.one-carousel-4-control-btn:focus-visible {
    background-color: color-mix(in srgb, var(--primary-hover) 10%, var(--bg-light));
    border-color: color-mix(in srgb, var(--primary-hover) 55%, #ffffff);
}

.one-carousel-4-control-btn:hover i,
.one-carousel-4-control-btn:focus-visible i,
.one-carousel-4-control-btn:hover .bi.text-primary,
.one-carousel-4-control-btn:focus-visible .bi.text-primary {
    color: var(--primary-hover) !important;
}
