/**
 * Smart Wheel Design System — pages.css
 * Specific page layouts: Home, Hero, reflections, and animations
 */

/* Hero Container */
.sw-hero {
    min-height: 90vh;
    padding-top: 100px;
    padding-bottom: 60px;
    color: var(--sw-text);
    background-color: var(--sw-bg);
    transition: background-color 0.4s ease, color 0.4s ease;
}

@media (min-width: 992px) {
    .sw-hero {
        min-height: 92vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

/* Background underlay */
.sw-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

/* Marketing Copy Styling */
.sw-hero-content {
    z-index: 5;
}

/* Responsive Headline */
.sw-hero-title {
    font-size: calc(1.8rem + 1.8vw);
    line-height: 1.15;
    letter-spacing: 0;
}

@media (min-width: 1200px) {
    .sw-hero-title {
        font-size: 4rem;
    }
}

/* Green Separator line */
.sw-hero-separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sw-green) 0%, var(--sw-green-light) 100%);
    border-radius: 2px;
}

/* Subheading */
.sw-hero-subhead {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Premium dynamic theme filter for brand logo */
.sw-hero-logo {
    height: clamp(72px, 7vw, 96px);
    width: auto;
    filter: var(--sw-logo-filter, none);
    transition: transform 0.3s ease;
}

.sw-hero-logo:hover {
    transform: scale(1.03);
}

/* Visual Scooter graphic wrappers */
.sw-scooter-wrapper {
    width: 100%;
    max-width: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sw-scooter-stage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Scooter Image with beautiful mirroring box-reflect */
.sw-scooter-img {
    width: 100%;
    height: auto;
    /* Mirrored floor reflection */
    -webkit-box-reflect: below -25px linear-gradient(transparent 50%, rgba(0, 0, 0, 0.22));
    filter: drop-shadow(0 15px 25px rgba(3, 14, 1, 0.8));
    z-index: 10;
}

/* Soft green floor light under the wheels of the scooter */
.sw-scooter-floor-glow {
    position: absolute;
    bottom: -15px;
    left: 20%;
    width: 60%;
    height: 35px;
    background: radial-gradient(ellipse at center, rgba(79, 196, 66, 0.28) 0%, rgba(3, 14, 1, 0) 70%);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

/* Floating animation for the scooter to feel alive */
@keyframes swFloat {
    0% {
        transform: translateY(0px);
    }

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

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

/* Desktop Scooter Alignment & Sizing */
@media (min-width: 992px) {
    .sw-hero {
        height: 100vh !important;
        min-height: 650px;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden !important;
    }

    .sw-hero-desktop {
        min-height: inherit;
    }

    .sw-hero-bg {
        background-size: cover;
        top: -5% !important;
        height: 120% !important;
    }

    .sw-hero-desktop>.container {
        padding-top: clamp(96px, 11vh, 130px) !important;
        padding-bottom: 24px !important;
    }

    .sw-scooter-column {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: center;
        margin-bottom: -40px;
        /* Pull the scooter column down to sit on the floor */
        z-index: 10;
    }

    .sw-scooter-wrapper {
        flex: 0 0 auto;
        max-width: none;
        width: min(51vw, 900px);
        transform: translate(-2.5vw, 55px);
        /* Rest precisely on the floor reflection */
        animation: none;
        /* Keep it grounded on the floor in desktop */
    }

    .sw-hero-desktop .sw-scooter-img {
        width: min(51vw, 900px) !important;
        max-width: none !important;
    }

    .sw-hero-title {
        line-height: 1.02;
    }

    .sw-hero-subhead {
        font-size: 1.18rem;
    }

    .sw-hero-features-row {
        margin-top: clamp(1.25rem, 3vh, 2.4rem) !important;
        padding-top: 0 !important;
    }
}

@media (min-width: 1800px) {

    .sw-scooter-wrapper,
    .sw-hero-desktop .sw-scooter-img {
        width: min(50vw, 980px) !important;
        margin-top: -52px;
        margin-left: -130px;
    }

    .sw-scooter-wrapper {
        transform: translate(-2.5vw, 65px);
    }
}

@media (min-width: 992px) and (max-height: 850px) {
    .sw-hero-desktop>.container {
        padding-top: 96px !important;
        padding-bottom: 24px !important;
    }

    .sw-hero-logo {
        height: 72px;
    }

    .sw-hero-title {
        font-size: clamp(3.1rem, 4.5vw, 3.45rem);
        line-height: 1.01;
    }

    .sw-hero-subhead {
        font-size: 1.04rem;
    }

    .sw-cta-group {
        margin-bottom: 2rem !important;
    }

    .sw-hero-features-row {
        margin-top: 0.25rem !important;
        padding-top: 0 !important;
    }

    .sw-scooter-wrapper,
    .sw-hero-desktop .sw-scooter-img {
        width: min(48vw, 740px) !important;
    }

    .sw-scooter-wrapper {
        transform: translate(-2.5vw, 45px);
    }
}

/* Mobile-Specific Premium Layout Sizing and Edge-to-Edge Visuals (Image 4 Alignment) */
@media (max-width: 991.98px) {
    .sw-hero {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
        background-color: var(--sw-bg);
    }

    .sw-hero-mobile {
        min-height: 100svh;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, var(--sw-bg) 62%, var(--sw-bg) 100%), var(--sw-hero-bg-url-mobile);
        background-size: 100% 100%, cover;
        background-position: center top, center top;
        background-repeat: no-repeat;
        display: flex !important;
        flex-direction: column;
        transition: background-color 0.4s ease;
    }

    .sw-scooter-mobile-section {
        width: 100%;
        height: clamp(470px, 61svh, 660px);
        position: relative;
        display: flex;
        align-items: flex-end !important;
        justify-content: center;
        padding: clamp(110px, 24vw, 150px) 0 clamp(14px, 2.4svh, 24px);
        overflow: visible;
        border-bottom: 0;
    }

    .sw-hero-mobile .sw-scooter-wrapper {
        width: 100%;
        max-width: none;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        animation: none;
        /* Keep it grounded on the floor */
    }

    .sw-hero-mobile .sw-scooter-stage {
        align-items: flex-end;
    }

    .sw-hero-mobile .sw-scooter-img {
        width: min(112vw, 580px) !important;
        max-width: none;
        height: auto;
        transform: translate(-5%, 12px);
        /* Ground it on the background's floor reflection */
        -webkit-box-reflect: below -18px linear-gradient(transparent 68%, rgba(0, 0, 0, 0.14));
    }

    .sw-hero-mobile .sw-scooter-floor-glow {
        bottom: -10px;
        background: radial-gradient(ellipse at center, rgba(79, 196, 66, 0.35) 0%, rgba(3, 14, 1, 0) 70%);
    }

    .sw-hero-mobile-content {
        flex: 1;
        text-align: left;
        padding-left: clamp(2rem, 10vw, 6.5rem) !important;
        padding-right: clamp(2rem, 10vw, 6.5rem) !important;
        padding-top: clamp(0.75rem, 2.5svh, 1.75rem);
        padding-bottom: 2.5rem;
    }

    .sw-mobile-badge {
        padding: 0.36rem 0.95rem;
        font-size: clamp(0.82rem, 3.25vw, 1rem);
        color: var(--sw-white);
        background-color: rgba(3, 14, 1, 0.32);
        border-color: rgba(79, 196, 66, 0.78);
        box-shadow: 0 0 24px rgba(79, 196, 66, 0.18);
    }

    html:not([data-theme="dark"]) .sw-mobile-badge {
        background-color: rgba(79, 196, 66, 0.06) !important;
        color: var(--sw-text) !important;
        border: 1px solid rgba(79, 196, 66, 0.25) !important;
        box-shadow: none !important;
    }

    .sw-mobile-badge i {
        color: var(--sw-green-light);
        font-size: 1.15em;
        line-height: 1;
    }

    html:not([data-theme="dark"]) .sw-mobile-badge i {
        color: var(--sw-green) !important;
    }

    /* Mobile Text Styling */
    .sw-mobile-title {
        font-size: clamp(2.05rem, 9vw, 5rem);
        line-height: 1.07;
        letter-spacing: 0;
        font-family: 'Sora-Bold', sans-serif;
    }

    .sw-mobile-title .text-sw-green {
        white-space: nowrap;
    }

    .sw-mobile-subhead {
        font-family: 'Inter-Regular', sans-serif;
        color: var(--sw-text) !important;
        font-size: clamp(0.82rem, 3.15vw, 1.1rem) !important;
        line-height: 1.35;
        max-width: none;
        white-space: nowrap;
    }

    .sw-mobile-actions {
        margin-top: 1.25rem;
        gap: 0.25rem !important;
    }

    .sw-mobile-actions .btn-sw-primary {
        min-height: 52px;
        width: 100%;
        padding-top: 0.7rem !important;
        padding-bottom: 0.7rem !important;
        font-size: clamp(0.95rem, 3.7vw, 1.1rem);
        border-radius: 999px;
        box-shadow: 0 12px 35px rgba(79, 196, 66, 0.28);
    }

    .sw-mobile-actions .sw-mobile-link-btn {
        width: 100%;
        font-size: 0.9rem;
        padding-top: 0.15rem;
        padding-bottom: 0;
    }

    .sw-mobile-actions .mt-2 {
        margin-top: 0.55rem !important;
    }
}

@media (max-width: 420px) {
    .sw-scooter-mobile-section {
        height: clamp(430px, 58svh, 560px);
        padding-bottom: clamp(20px, 2.8svh, 24px);
    }

    .sw-hero-mobile .sw-scooter-img {
        width: 112vw !important;
        transform: translate(0%, 12px);
        margin-top: 14px;
    }

    .sw-mobile-title {
        font-size: clamp(2rem, 9vw, 2.24rem);
    }

    .sw-mobile-actions .btn-sw-primary {
        min-height: 50px;
    }
}

@media (max-width: 360px) {
    .sw-mobile-subhead {
        white-space: normal;
    }
}

/* Layered hero: background, floor and bike stay independent. */
.hero.sw-hero {
    --hero-floor-width: max(100vw, 1360px);
    --hero-ground-line: max(106px, 7.84vw);
    --hero-bike-width: clamp(620px, 51vw, 980px);
    --hero-bike-left: clamp(-120px, -4vw, -28px);
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    color: var(--sw-text);
    background-color: var(--sw-bg);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100% !important;
    background-image: var(--sw-hero-bg-url);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    transform-origin: center center;
    transition: background-image 0.4s ease;
}

.hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sw-hero-overlay);
    transition: background 0.4s ease;
}

.hero-floor {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    width: var(--hero-floor-width);
    min-width: 100%;
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-floor-img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
}

.hero-floor-img--mobile {
    display: none;
}

.hero-bike {
    position: absolute;
    left: var(--hero-bike-left);
    bottom: var(--hero-ground-line);
    z-index: 3;
    width: var(--hero-bike-width);
    pointer-events: none;
    transform-origin: center bottom;
}

.hero-bike-gsap-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

.hero-bike-motion {
    position: relative;
    width: 100%;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

.hero-bike-img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(7.55%);
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.56));
    user-select: none;
}

.hero-ground-glow {
    position: absolute;
    left: 18%;
    bottom: -10px;
    z-index: 1;
    width: 64%;
    height: clamp(32px, 3vw, 52px);
    background: radial-gradient(ellipse at center, rgba(79, 196, 66, 0.34) 0%, rgba(79, 196, 66, 0.12) 38%, rgba(3, 14, 1, 0) 74%);
    filter: blur(10px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    min-height: 100svh;
}

.hero-copy {
    position: relative;
    z-index: 6;
}

.hero .sw-scooter-wrapper.d-none,
.hero .sw-scooter-mobile-section.d-none {
    display: none !important;
}

@media (min-width: 992px) {
    .hero.sw-hero {
        min-height: 100svh;
        height: auto !important;
    }

    .hero .sw-hero-desktop {
        min-height: inherit;
        display: flex !important;
        align-items: center;
    }

    .hero .sw-hero-desktop>.container {
        padding-top: clamp(96px, 11svh, 132px) !important;
        padding-bottom: clamp(28px, 4svh, 46px) !important;
    }

    .hero .sw-hero-desktop>.container>.row:first-child {
        min-height: clamp(360px, 56svh, 560px);
    }

    .hero-copy--desktop {
        padding-top: clamp(8px, 2.6svh, 36px);
    }

    .hero .sw-hero-logo {
        height: clamp(92px, 8.5vw, 132px);
        max-width: min(360px, 32vw);
    }

    .hero .sw-hero-title {
        font-size: clamp(2.85rem, 4.25vw, 4.1rem);
        line-height: 1.02;
    }

    .hero .sw-hero-subhead {
        max-width: 620px;
        font-size: clamp(1.04rem, 1.1vw, 1.2rem);
    }

    .hero .sw-hero-features-row {
        margin-top: clamp(0.8rem, 2.4svh, 1.8rem) !important;
        padding-top: 0 !important;
    }
}

@media (min-width: 1400px) {
    .hero.sw-hero {
        --hero-bike-left: clamp(-110px, -2.8vw, -40px);
        --hero-bike-width: clamp(760px, 50vw, 1020px);
    }
}

@media (min-width: 1800px) {
    .hero.sw-hero {
        --hero-bike-left: clamp(-90px, -2vw, -34px);
        --hero-bike-width: clamp(900px, 49vw, 1080px);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero.sw-hero {
        --hero-bike-width: clamp(560px, 50vw, 700px);
        --hero-bike-left: clamp(-96px, -5vw, -42px);
    }
}

@media (min-width: 992px) and (max-height: 760px) {
    .hero.sw-hero {
        --hero-bike-width: clamp(500px, 38vw, 650px);
    }

    .hero .sw-hero-desktop>.container {
        padding-top: clamp(70px, 15svh, 88px) !important;
        padding-bottom: 16px !important;
    }

    .hero .sw-hero-logo-box {
        margin-bottom: 0.7rem !important;
    }

    .hero .sw-hero-logo {
        height: clamp(54px, 12svh, 74px);
    }

    .hero .sw-hero-title {
        font-size: clamp(2.25rem, 3.45vw, 2.8rem);
    }

    .hero .sw-hero-separator {
        margin-bottom: 0.9rem !important;
    }

    .hero .sw-hero-subhead-wrapper {
        margin-bottom: 1.1rem !important;
    }

    .hero .sw-hero-subhead {
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .hero .sw-cta-group {
        margin-bottom: 0 !important;
    }

    .hero .sw-hero-features-row {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero.sw-hero {
        --hero-floor-width: 100vw;
        --hero-ground-line: clamp(350px, 44svh, 520px);
        --hero-bike-width: clamp(520px, 75vw, 700px);
        --hero-bike-left: 50%;
        min-height: 100svh;
    }

    .hero .hero-bg {
        background-image: var(--sw-hero-bg-url-mobile) !important;
        background-size: cover;
        background-position: center top;
    }

    .hero .hero-bg::after {
        background: linear-gradient(to bottom, transparent 0%, transparent 50%, var(--sw-bg) 98%) !important;
        transition: background 0.4s ease;
        pointer-events: none;
    }

    .hero-floor {
        width: 100%;
        height: clamp(420px, 62svh, 700px);
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 12%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 1) 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 12%, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 1) 100%);
    }

    .hero-floor-img--desktop {
        display: none;
    }

    .hero-floor-img--mobile {
        position: absolute;
        left: 50%;
        bottom: 0;
        display: block;
        width: 100%;
        min-width: 100%;
        min-height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center bottom;
        transform: translateX(-50%);
    }

    .hero-bike {
        transform: translateX(-50%);
    }

    .hero-content {
        display: block;
        min-height: 100svh;
    }

    .hero .sw-hero-mobile {
        min-height: 100svh;
        background: none !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero .sw-hero-mobile-content {
        flex: 0 0 auto;
        width: 100%;
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        padding-left: clamp(1.5rem, 7vw, 4rem) !important;
        padding-right: clamp(1.5rem, 7vw, 4rem) !important;
        padding-top: clamp(660px, 62svh, 760px);
        padding-bottom: clamp(30px, 6svh, 56px);
        text-align: left;
    }

    .hero .sw-mobile-badge {
        justify-content: center;
        margin-right: auto;
        margin-left: 0;
        background-color: rgba(3, 14, 1, 0.38);
    }

    .hero .sw-mobile-title {
        max-width: 14ch;
        margin-right: auto;
        margin-left: 0;
        font-size: clamp(1.2rem, 5.2vw, 1.85rem) !important;
        line-height: 1.08;
        letter-spacing: 0;
    }

    .hero .sw-mobile-subhead {
        max-width: 28rem;
        margin-right: auto;
        margin-left: 0;
        color: var(--sw-text) !important;
        white-space: normal;
    }

    .hero .sw-mobile-actions {
        width: 100%;
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero .sw-mobile-actions .mt-2 {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero.sw-hero {
        --hero-ground-line: clamp(320px, 96vw, 430px);
        --hero-bike-width: clamp(430px, 123vw, 540px);
    }

    .hero .sw-hero-mobile-content {
        max-width: 390px;
        padding-top: clamp(540px, 63svh, 610px);
    }

    .hero .sw-mobile-title {
        font-size: clamp(1.1rem, 6.2vw, 1.45rem) !important;
    }

    .hero .sw-mobile-subhead {
        font-size: clamp(0.82rem, 3.15vw, 1rem) !important;
        line-height: 1.34;
    }

    .hero .sw-mobile-actions {
        margin-top: 1rem;
    }
}

@media (max-width: 380px) {
    .hero.sw-hero {
        --hero-bike-width: clamp(400px, 116vw, 460px);
    }

    .hero .sw-hero-mobile-content {
        padding-top: clamp(495px, 61svh, 540px);
    }

    .hero .sw-mobile-title {
        font-size: clamp(1.82rem, 8vw, 2.12rem);
    }
}

@media (max-width: 360px) and (max-height: 700px) {
    .hero.sw-hero {
        --hero-ground-line: max(306px, 94vw);
        --hero-bike-width: clamp(230px, 72vw, 260px);
    }

    .hero .sw-hero-mobile-content {
        padding-top: clamp(330px, 58svh, 372px);
    }

    .hero .sw-mobile-badge {
        padding: 0.26rem 0.7rem;
        font-size: 0.72rem;
        margin-bottom: 0.75rem !important;
    }

    .hero .sw-mobile-title {
        font-size: clamp(1.6rem, 7.2vw, 1.9rem);
        line-height: 1.02;
        margin-bottom: 0.75rem !important;
    }

    .hero .sw-mobile-subhead {
        max-width: 17rem;
        font-size: 0.78rem !important;
        line-height: 1.25;
        margin-bottom: 1rem !important;
    }

    .hero .sw-mobile-actions {
        margin-top: 0.55rem;
        gap: 0.4rem !important;
    }

    .hero .sw-mobile-actions .btn-sw-primary {
        min-height: 42px;
        padding-top: 0.45rem !important;
        padding-bottom: 0.45rem !important;
        font-size: 0.84rem;
    }

    .hero .sw-mobile-actions .sw-mobile-link-btn {
        min-height: 22px;
        font-size: 0.78rem;
        padding-top: 0;
    }
}

@media (max-width: 991.98px) and (orientation: landscape),
(max-width: 991.98px) and (max-height: 500px) {
    .sw-header .navbar {
        padding-top: clamp(0.6rem, 2.6svh, 0.9rem) !important;
        padding-bottom: 0.35rem !important;
    }

    .sw-header .container {
        padding-left: clamp(1rem, 3vw, 1.5rem);
        padding-right: clamp(1rem, 3vw, 1.5rem);
    }

    .sw-header .sw-nav-logo {
        height: clamp(38px, 11svh, 52px);
    }

    .sw-lang-dropdown button {
        min-width: 56px;
        min-height: 34px;
        padding: 3px 10px !important;
        border-radius: 10px !important;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
    }

    .navbar-toggler-icon {
        width: 1.65rem;
        height: 1.65rem;
    }

    .hero.sw-hero {
        --hero-bike-left: 73%;
        --hero-bike-width: clamp(280px, 38vw, 380px);
        --hero-floor-width: max(118vw, 1100px);
        --hero-ground-line: clamp(34px, 9svh, 54px);
    }

    .hero .sw-hero-mobile-content {
        max-width: min(50vw, 410px);
        margin-left: 0;
        margin-right: 0;
        padding-left: clamp(1.5rem, 5vw, 4rem) !important;
        padding-right: 1rem !important;
        padding-top: clamp(96px, 27svh, 124px);
        padding-bottom: 1.25rem;
        text-align: center;
    }

    .hero .hero-bg {
        background-position: center center;
    }

    .hero-floor {
        height: auto;
        overflow: visible;
    }

    .hero-floor-img--desktop {
        display: block;
    }

    .hero-floor-img--mobile {
        display: none;
    }

    .hero .sw-mobile-badge {
        display: none !important;
    }

    .hero .sw-mobile-title {
        max-width: 14ch;
        font-size: clamp(1.16rem, 3.35vw, 1.68rem);
        line-height: 1.02;
        margin-bottom: 0.5rem !important;
    }

    .hero .sw-mobile-subhead {
        max-width: 24rem;
        font-size: clamp(0.68rem, 1.65vw, 0.84rem) !important;
        line-height: 1.25;
        margin-bottom: 0.65rem !important;
    }

    .hero .sw-mobile-actions {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 0.6rem !important;
        max-width: none;
        margin-top: 0.25rem;
    }

    .hero .sw-mobile-actions .btn-sw-primary {
        width: auto;
        min-height: 38px;
        padding: 0.4rem 0.95rem !important;
        font-size: clamp(0.74rem, 1.75vw, 0.88rem);
        white-space: nowrap;
    }

    .hero .sw-mobile-actions .mt-2 {
        margin: 0 !important;
    }

    .hero .sw-mobile-actions .sw-mobile-link-btn {
        width: auto;
        min-height: 38px;
        padding: 0.45rem 0 !important;
        font-size: clamp(0.7rem, 1.65vw, 0.82rem);
        white-space: nowrap;
    }
}

/* Feature cards at the bottom */
.sw-hero-features {
    position: relative;
    z-index: 5;
    --bs-gutter-x: 1rem;
}

.sw-feature-card {
    padding: 8px 6px;
    gap: 0.75rem !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.sw-feature-card:hover {
    transform: translateY(-3px);
}

.sw-feature-icon-box {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sw-feature-icon-box svg {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
}

.sw-feature-card:hover .sw-feature-icon-box svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(79, 196, 66, 0.7));
}

.sw-feature-card h6 {
    font-size: 0.95rem !important;
    line-height: 1.18;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.sw-feature-card:hover h6 {
    color: var(--sw-green-light) !important;
}

.sw-feature-card p {
    font-size: 0.8rem;
    line-height: 1.25;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .sw-hero-features {
        --bs-gutter-x: 0.45rem;
    }

    .sw-feature-card {
        gap: 0.38rem !important;
        padding-left: 0;
        padding-right: 0;
    }

    .sw-feature-icon-box {
        width: 28px;
        height: 28px;
    }

    .sw-feature-icon-box svg {
        width: 28px;
        height: 28px;
    }

    .sw-feature-card h6 {
        font-size: 0.78rem !important;
    }

    .sw-feature-card p {
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   Internal Pages Styling — Models, About, Sustainability, Blog, Contact, Booking
   ========================================================================== */

/* ==========================================================================
   Home Featured Models
   ========================================================================== */
.sw-featured-models {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 7.5rem);
    background: var(--sw-featured-bg);
    transition: background 0.4s ease;
}

.sw-featured-models::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(79, 196, 66, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(249, 255, 249, 0.025), transparent 34%);
}

.sw-featured-models__header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.sw-section-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.9rem;
    color: var(--sw-label-green);
    font-family: 'Sora-SemiBold', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sw-featured-models__header h2 {
    max-width: 640px;
    font-size: 2.75rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.sw-featured-models__header p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.55;
}

.sw-featured-slider-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.sw-featured-models__slider {
    display: flex;
    justify-content: center;
    /* Center slider horizontally on desktop */
    gap: 1.25rem;
    width: 100%;
    min-height: 380px;
    height: 380px;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
    perspective: 1200px;
}

.sw-model-card {
    position: relative;
    flex: 0 0 100px;
    height: 100%;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    background-color: #051203;
    border: 1px solid rgba(164, 255, 154, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    transition: flex 0.65s cubic-bezier(0.25, 1, 0.3, 1),
        border-radius 0.65s cubic-bezier(0.25, 1, 0.3, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}



.sw-model-card.is-active {
    flex: 1 1 580px;
    max-width: 600px;
    border-radius: 28px;
    cursor: default;
    background-color: #ffffff !important;
    border-color: rgba(79, 196, 66, 0.35) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12) !important;
}

/* Active card 1:1 image positioning on the right */
.sw-model-card.is-active .sw-model-card__bg-wrap {
    width: 350px !important;
    height: 380px !important;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    background-color: #ffffff !important;
    z-index: 2 !important;
}

.sw-model-card.is-active .sw-model-card__bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center right !important;
    transform: none !important;
    background-color: #ffffff !important;
}

.sw-model-card.is-active .sw-model-card__gradient {
    opacity: 0 !important;
    display: none !important;
}

/* Active card content layout - full width with absolute positioned children */
.sw-model-card.is-active .sw-model-card__content {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    background-color: transparent !important;
    padding: 0 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    z-index: 5 !important;
}

/* Title placed full width at the top on a fading dark green gradient backdrop */
.sw-model-card.is-active .sw-model-card__content h3 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 1.35rem 2rem 2.85rem 2rem !important;
    margin: 0 !important;
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    color: #ffffff !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    background: linear-gradient(to bottom, #071A04 0%, rgba(7, 26, 4, 0.95) 45%, rgba(7, 26, 4, 0) 100%) !important;
    border-radius: 28px 28px 0 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}

/* Bottom left details wrapper - absolute positioned container that lets children flow naturally */
.sw-model-card.is-active .sw-model-card__details-flow {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: calc(100% - 350px) !important;
    height: calc(100% - 75px) !important;
    /* starts below header */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    /* Flow from top to bottom naturally */
    align-items: flex-start !important;
    padding: 2rem 1.5rem 1.5rem 1.5rem !important;
    /* padding inside the white area */
    background-color: #ffffff !important;
    pointer-events: auto !important;
    z-index: 4 !important;
}

/* Natural layout and styling for children of the details-flow wrapper */
.sw-model-card.is-active .sw-model-card__category {
    position: static !important;
    width: fit-content !important;
    margin-bottom: 1.15rem !important;
    /* good spacing above description or specs */
    z-index: 10 !important;
    color: #12570A !important;
    background-color: rgba(79, 196, 66, 0.1) !important;
    border: 1px solid rgba(79, 196, 66, 0.3) !important;
}

.sw-model-card.is-active .sw-model-card__desc {
    position: static !important;
    width: 100% !important;
    margin: 0 0 1.75rem 0 !important;
    z-index: 10 !important;
    color: rgba(4, 30, 2, 0.76) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 0.92rem !important;
    line-height: 1.48 !important;
}

.sw-model-card.is-active .sw-model-card__specs {
    position: static !important;
    width: 100% !important;
    margin: 0 0 1.75rem 0 !important;
    /* generous bottom margin to clear the button and look elevated! */
    z-index: 10 !important;
    display: flex !important;
    gap: 0.75rem !important;
}

.sw-model-card.is-active .sw-spec-item {
    background-color: rgba(79, 196, 66, 0.05) !important;
    border: 1px solid rgba(79, 196, 66, 0.16) !important;
    flex: 1 !important;
    max-width: 135px !important;
}

.sw-model-card.is-active .sw-spec-item .sw-spec-label {
    color: #12570A !important;
}

.sw-model-card.is-active .sw-spec-item strong {
    color: #041E02 !important;
}

.sw-model-card.is-active .sw-model-card__link {
    position: static !important;
    z-index: 10 !important;
    color: #ffffff !important;
    background-color: #12570A !important;
    border: 1px solid #12570A !important;
    margin-top: auto !important;
    /* Push details button to the bottom! */
    white-space: nowrap !important;
    /* Prevent text wrapping */
    padding: 0.4rem 1.15rem !important;
    /* Thinner padding */
    min-height: 34px !important;
    /* Thinner button */
    font-size: 0.8rem !important;
    /* Perfectly proportioned thin text */
}

.sw-model-card.is-active .sw-model-card__link:hover {
    color: #ffffff !important;
    background-color: #4FC442 !important;
    border-color: #4FC442 !important;
}

.sw-model-card:hover {
    border-color: rgba(79, 196, 66, 0.35);
}

.sw-model-card.is-active:hover {
    border-color: rgba(79, 196, 66, 0.45);
}

.sw-model-card__bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sw-model-card__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.sw-model-card.is-active .sw-model-card__bg-img {
    transform: scale(1.04);
}

.sw-model-card__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(3, 14, 1, 0.1) 0%,
            rgba(3, 14, 1, 0.4) 50%,
            rgba(3, 14, 1, 0.95) 100%);
    transition: opacity 0.5s ease;
}

.sw-model-card__pill-label {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sw-model-card__pill-label span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    white-space: nowrap;
}

.sw-model-card.is-active .sw-model-card__pill-label {
    opacity: 0;
    transform: translateY(20px);
}

.sw-model-card__content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 4;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.sw-model-card.is-active .sw-model-card__content {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.sw-model-card__category {
    width: fit-content;
    margin-bottom: 0.8rem;
    padding: 0.25rem 0.65rem;
    color: var(--sw-green-light);
    background-color: rgba(79, 196, 66, 0.08);
    border: 1px solid rgba(79, 196, 66, 0.24);
    border-radius: 999px;
    font-family: 'Sora-SemiBold', sans-serif;
    font-size: 0.72rem;
    line-height: 1.2;
}

.sw-model-card__content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.85rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sw-model-card__desc {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 380px;
}

.sw-model-card__specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 380px;
}

.sw-spec-item {
    flex: 1;
    padding: 0.6rem 0.85rem;
    background-color: rgba(3, 14, 1, 0.45);
    border: 1px solid rgba(164, 255, 154, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.sw-spec-item .sw-spec-label {
    display: block;
    font-size: 0.68rem;
    color: var(--sw-green-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.sw-spec-item strong {
    display: block;
    color: var(--sw-white);
    font-family: 'Sora-SemiBold', sans-serif;
    font-size: 1rem;
}

.sw-model-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    width: fit-content;
    min-height: 44px;
    padding: 0.65rem 1.25rem;
    color: var(--sw-text);
    text-decoration: none;
    background-color: var(--sw-surface-soft);
    border: 1px solid var(--sw-border);
    border-radius: 999px;
    font-family: 'Sora-SemiBold', sans-serif;
    font-size: 0.86rem;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sw-model-card__link:hover {
    color: var(--sw-green);
    background-color: rgba(79, 196, 66, 0.12);
    border-color: var(--sw-green-light);
    transform: translateX(4px);
}

.sw-model-card .sw-model-card__link {
    color: var(--sw-white-const);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(164, 255, 154, 0.18);
}

.sw-model-card .sw-model-card__link:hover {
    color: var(--sw-green-light);
    background-color: rgba(79, 196, 66, 0.12);
    border-color: rgba(164, 255, 154, 0.38);
}

.sw-model-card__link i {
    color: var(--sw-green);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sw-model-card__link:hover i {
    transform: translateX(3px);
}

.sw-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sw-surface-soft);
    border: 1px solid var(--sw-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--sw-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.35s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sw-slider-arrow--prev {
    left: -24px;
}

.sw-slider-arrow--next {
    right: -24px;
}

.sw-featured-slider-container:hover .sw-slider-arrow {
    opacity: 1;
}

.sw-slider-arrow:hover {
    background: rgba(79, 196, 66, 0.2);
    border-color: rgba(79, 196, 66, 0.55);
    color: var(--sw-green-light);
    transform: translateY(-50%) scale(1.08);
}

.sw-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.sw-featured-models__footer {
    display: flex;
    justify-content: center;
    margin-top: 2.25rem;
}

.sw-featured-models__cta {
    min-width: 220px;
    justify-content: center;
}

/* Category selector alternative layout: ?categoria=modelo2 */
.sw-category-modelo2 {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(3.8rem, 6vw, 5.75rem);
    background:
        radial-gradient(circle at 50% 42%, rgba(79, 196, 66, 0.11), transparent 38%),
        radial-gradient(circle at 8% 12%, rgba(164, 255, 154, 0.11), transparent 28%),
        linear-gradient(180deg, #010805 0%, #041107 52%, #010704 100%);
    color: #ffffff;
}

.sw-category-modelo2::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(164, 255, 154, 0.08), transparent 34%),
        repeating-linear-gradient(150deg, rgba(164, 255, 154, 0.045) 0 1px, transparent 1px 9px);
    opacity: 0.2;
}

.sw-category-modelo2__container {
    position: relative;
    z-index: 1;
    max-width: min(100% - 2rem, 1280px) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.sw-category-modelo2__header {
    max-inline-size: 740px;
    margin: 0 auto clamp(1.8rem, 3vw, 2.4rem);
    text-align: center;
}

.sw-category-modelo2__eyebrow {
    display: inline-flex;
    margin-bottom: 0.65rem;
    color: var(--sw-green-light);
    font-family: 'Sora-Bold', sans-serif;
    font-size: clamp(0.68rem, 0.9vw, 0.78rem);
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.sw-category-modelo2__header h2 {
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.sw-category-modelo2__header p {
    max-inline-size: 680px;
    margin: 0.85rem auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.9rem, 1.25vw, 1.05rem);
    line-height: 1.55;
}

.sw-category-modelo2__grid {
    display: grid;
    grid-template-columns:
        minmax(7.8rem, 0.74fr) minmax(7.8rem, 0.74fr) minmax(26rem, 2.25fr) minmax(7.8rem, 0.74fr) minmax(7.8rem, 0.74fr);
    grid-auto-flow: dense;
    gap: clamp(0.9rem, 1.55vw, 1.35rem);
    align-items: stretch;
}

.sw-category-modelo2-card,
.sw-category-modelo2-feature {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-block-size: clamp(20rem, 28vw, 23.8rem);
    color: #ffffff;
    text-decoration: none;
    background: rgba(2, 12, 6, 0.86);
    border: 1px solid rgba(164, 255, 154, 0.22);
    border-radius: clamp(1.25rem, 2vw, 1.75rem);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.sw-category-modelo2-card:hover,
.sw-category-modelo2-feature:hover {
    color: #ffffff;
    border-color: rgba(164, 255, 154, 0.7);
    box-shadow: 0 28px 62px rgba(0, 0, 0, 0.45), 0 0 24px rgba(79, 196, 66, 0.28);
    transform: translateY(-4px);
}

.sw-category-modelo2-card--side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.25rem, 2vw, 1.65rem) clamp(0.85rem, 1.5vw, 1.2rem);
    text-align: center;
}

.sw-category-modelo2-card--after-feature {
    grid-column: 4;
    grid-row: 1;
}

.sw-category-modelo2-feature {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: flex-end;
    padding: clamp(1.5rem, 2.4vw, 2rem);
    border-color: rgba(164, 255, 154, 0.72);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.45), 0 0 28px rgba(79, 196, 66, 0.32);
}

.sw-category-modelo2-card__image,
.sw-category-modelo2-feature__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.sw-category-modelo2-card__image {
    opacity: 0.48;
    filter: brightness(0.62) saturate(0.98);
}

.sw-category-modelo2-card:hover .sw-category-modelo2-card__image,
.sw-category-modelo2-feature:hover .sw-category-modelo2-feature__image {
    transform: scale(1.045);
}

.sw-category-modelo2-card__shade,
.sw-category-modelo2-feature__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.sw-category-modelo2-card__shade {
    background:
        linear-gradient(180deg, rgba(2, 11, 5, 0.5) 0%, rgba(2, 11, 5, 0.66) 52%, rgba(2, 11, 5, 0.96) 100%),
        radial-gradient(circle at 50% 28%, rgba(79, 196, 66, 0.16), transparent 34%);
}

.sw-category-modelo2-feature__shade {
    background:
        linear-gradient(90deg, rgba(2, 13, 5, 0.95) 0%, rgba(2, 13, 5, 0.8) 38%, rgba(2, 13, 5, 0.15) 72%),
        linear-gradient(180deg, rgba(2, 13, 5, 0.12) 0%, rgba(2, 13, 5, 0.4) 100%);
}

.sw-category-modelo2-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(3.65rem, 5.3vw, 4.75rem);
    aspect-ratio: 1;
    color: var(--sw-green);
    background: rgba(4, 18, 7, 0.68);
    border: 1px solid rgba(79, 196, 66, 0.42);
    border-radius: 999px;
    box-shadow: inset 0 0 22px rgba(79, 196, 66, 0.09);
}

.sw-category-modelo2-card__icon i {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    line-height: 1;
}

.sw-category-modelo2-card__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.2rem;
}

.sw-category-modelo2-card__copy strong {
    max-inline-size: 9.5rem;
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    line-height: 1.12;
}

.sw-category-modelo2-card__copy span {
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    line-height: 1.45;
}

.sw-category-modelo2-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(3.15rem, 4.3vw, 3.75rem);
    aspect-ratio: 1;
    color: var(--sw-green);
    border: 1px solid rgba(79, 196, 66, 0.7);
    border-radius: 999px;
    background: rgba(2, 12, 5, 0.5);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.sw-category-modelo2-feature__badge {
    position: absolute;
    top: clamp(1rem, 2vw, 1.35rem);
    left: clamp(1.3rem, 2.4vw, 1.8rem);
    z-index: 3;
    padding: 0.28rem 0.78rem;
    color: #061506;
    background: linear-gradient(180deg, var(--sw-green-light), var(--sw-green));
    border-radius: 999px;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(79, 196, 66, 0.42);
}

.sw-category-modelo2-feature__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-inline-size: min(47%, 16rem);
    padding-top: 2.2rem;
}

.sw-category-modelo2-feature__title {
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    font-size: clamp(1.85rem, 3.2vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.sw-category-modelo2-feature__rule {
    display: block;
    inline-size: 2.2rem;
    block-size: 2px;
    margin: 0.85rem 0 0.8rem;
    background: var(--sw-green);
    border-radius: 999px;
}

.sw-category-modelo2-feature__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    line-height: 1.42;
}

.sw-category-modelo2-feature__perks {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    margin: 0.85rem 0 1.1rem;
}

.sw-category-modelo2-feature__perks>span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
    color: rgba(255, 255, 255, 0.82);
}

.sw-category-modelo2-feature__perks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 1.65rem;
    aspect-ratio: 1;
    color: var(--sw-green-light);
    border: 1px solid rgba(79, 196, 66, 0.5);
    border-radius: 999px;
    font-size: 0.92rem;
}

.sw-category-modelo2-feature__perks b,
.sw-category-modelo2-feature__perks small {
    display: block;
    line-height: 1.25;
}

.sw-category-modelo2-feature__perks b {
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.68rem;
}

.sw-category-modelo2-feature__perks small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
}

.sw-category-modelo2-feature__button,
.sw-category-modelo2-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-block-size: 2.5rem;
    padding: 0.66rem 1.25rem;
    color: #061506;
    background: linear-gradient(180deg, var(--sw-green-light), var(--sw-green));
    border-radius: 999px;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.82rem;
    line-height: 1;
}

.sw-category-modelo2-card--all {
    grid-column: 5;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.25rem, 2vw, 1.65rem) clamp(0.85rem, 1.5vw, 1.2rem);
    text-align: center;
}

.sw-category-modelo2-all-icons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
    inline-size: min(100%, 8.7rem);
}

.sw-category-modelo2-all-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    color: var(--sw-green);
    background: rgba(79, 196, 66, 0.07);
    border: 1px solid rgba(79, 196, 66, 0.42);
    border-radius: 0.55rem;
}

.sw-category-modelo2-card--all .sw-category-modelo2-card__button {
    min-block-size: 2.35rem;
    padding: 0.62rem 1rem;
    font-size: 0.78rem;
}

.sw-category-modelo2__benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.5rem);
    max-inline-size: 1020px;
    margin: clamp(1.6rem, 3vw, 2.25rem) auto 0;
    padding: clamp(1rem, 1.8vw, 1.25rem) clamp(1.25rem, 2.6vw, 2rem);
    background: rgba(8, 26, 11, 0.72);
    border: 1px solid rgba(164, 255, 154, 0.16);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 45px rgba(0, 0, 0, 0.24);
}

.sw-category-modelo2__benefits span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.75rem;
    align-items: center;
}

.sw-category-modelo2__benefits i,
.sw-category-modelo2__benefits svg {
    grid-row: 1 / span 2;
    color: var(--sw-green);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    width: clamp(1.35rem, 2vw, 1.65rem);
    height: clamp(1.35rem, 2vw, 1.65rem);
}

.sw-category-modelo2__benefits strong {
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    font-size: clamp(0.72rem, 1vw, 0.86rem);
    line-height: 1.25;
}

.sw-category-modelo2__benefits small {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.66rem, 0.9vw, 0.76rem);
    line-height: 1.25;
}

@media (max-width: 1199.98px) {
    .sw-category-modelo2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-category-modelo2-feature,
    .sw-category-modelo2-card--after-feature,
    .sw-category-modelo2-card--all {
        grid-column: auto;
        grid-row: auto;
    }

    .sw-category-modelo2-feature {
        grid-column: 1 / -1;
        order: -1;
        min-block-size: clamp(24rem, 46vw, 31rem);
    }

    .sw-category-modelo2-card--side,
    .sw-category-modelo2-card--all {
        min-block-size: clamp(17rem, 34vw, 22rem);
    }

    .sw-category-modelo2__benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .sw-category-modelo2 {
        padding: clamp(3.5rem, 12vw, 4.5rem) 0;
    }

    .sw-category-modelo2__grid {
        grid-template-columns: 1fr;
    }

    .sw-category-modelo2-feature {
        min-block-size: clamp(31rem, 128vw, 38rem);
        padding: clamp(1.2rem, 5vw, 1.5rem);
    }

    .sw-category-modelo2-feature__shade {
        background:
            linear-gradient(180deg, rgba(2, 13, 5, 0.18) 0%, rgba(2, 13, 5, 0.74) 48%, rgba(2, 13, 5, 0.96) 100%),
            linear-gradient(90deg, rgba(2, 13, 5, 0.42), rgba(2, 13, 5, 0.08));
    }

    .sw-category-modelo2-feature__image {
        object-position: 55% center;
    }

    .sw-category-modelo2-feature__content {
        max-inline-size: 100%;
        padding-top: clamp(10rem, 44vw, 14rem);
    }

    .sw-category-modelo2-feature__title {
        max-inline-size: 12rem;
    }

    .sw-category-modelo2-card--side,
    .sw-category-modelo2-card--all {
        min-block-size: clamp(15.5rem, 70vw, 21rem);
    }

    .sw-category-modelo2__benefits {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}

/* Category selector modelo2 interactive refinement */
.sw-category-modelo2__grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(0.8rem, 1.45vw, 1.25rem);
}

.sw-category-modelo2-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    flex: 0 1 clamp(5.5rem, 9vw, 10.8rem);
    min-width: 0;
    min-block-size: clamp(20rem, 28vw, 23.75rem);
    color: #ffffff;
    text-decoration: none;
    background: rgba(2, 12, 6, 0.86);
    border: 1px solid rgba(164, 255, 154, 0.22);
    border-radius: clamp(1.2rem, 1.8vw, 1.65rem);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
    transition: flex-basis 0.5s cubic-bezier(0.25, 1, 0.3, 1), flex-grow 0.5s cubic-bezier(0.25, 1, 0.3, 1), transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.sw-category-modelo2-item:hover,
.sw-category-modelo2-item:focus-visible,
.sw-category-modelo2-item.is-active {
    color: #ffffff;
    border-color: rgba(164, 255, 154, 0.72);
    box-shadow: 0 26px 65px rgba(0, 0, 0, 0.45), 0 0 28px rgba(79, 196, 66, 0.32);
}

.sw-category-modelo2-item:hover,
.sw-category-modelo2-item:focus-visible {
    transform: translateY(-4px);
}

.sw-category-modelo2-item.is-active {
    flex: 1 1 min(42vw, 32.5rem);
    cursor: pointer;
}

.sw-category-modelo2-item__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    filter: brightness(0.62) saturate(0.98);
    transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease, object-position 0.45s ease;
}

.sw-category-modelo2-item.is-active .sw-category-modelo2-item__image {
    opacity: 1;
    filter: brightness(0.86) saturate(1.08);
    object-position: center right;
}

.sw-category-modelo2-item:hover .sw-category-modelo2-item__image,
.sw-category-modelo2-item:focus-visible .sw-category-modelo2-item__image {
    transform: scale(1.04);
}

.sw-category-modelo2-item__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(2, 11, 5, 0.46) 0%, rgba(2, 11, 5, 0.68) 52%, rgba(2, 11, 5, 0.96) 100%),
        radial-gradient(circle at 50% 28%, rgba(79, 196, 66, 0.16), transparent 34%);
}

.sw-category-modelo2-item.is-active .sw-category-modelo2-item__shade {
    background:
        linear-gradient(90deg, rgba(2, 13, 5, 0.95) 0%, rgba(2, 13, 5, 0.82) 36%, rgba(2, 13, 5, 0.15) 72%),
        linear-gradient(180deg, rgba(2, 13, 5, 0.1) 0%, rgba(2, 13, 5, 0.42) 100%);
}

.sw-category-modelo2-item--all {
    background:
        radial-gradient(circle at 50% 20%, rgba(79, 196, 66, 0.16), transparent 42%),
        rgba(2, 12, 6, 0.9);
}

.sw-category-modelo2-item__compact,
.sw-category-modelo2-item__expanded {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.28s ease, transform 0.34s ease;
}

.sw-category-modelo2-item__compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.25rem, 2vw, 1.65rem) clamp(0.8rem, 1.4vw, 1.05rem);
    text-align: center;
}

.sw-category-modelo2-item.is-active .sw-category-modelo2-item__compact {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.sw-category-modelo2-item__expanded {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    max-inline-size: min(85%, 28rem);
    padding: clamp(1.35rem, 2.2vw, 1.8rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.sw-category-modelo2-item.is-active .sw-category-modelo2-item__expanded {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sw-category-modelo2-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(3.6rem, 5vw, 4.55rem);
    aspect-ratio: 1;
    color: var(--sw-green);
    background: rgba(4, 18, 7, 0.68);
    border: 1px solid rgba(79, 196, 66, 0.42);
    border-radius: 999px;
    box-shadow: inset 0 0 22px rgba(79, 196, 66, 0.09);
}

.sw-category-modelo2-item__icon i {
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    line-height: 1;
}

.sw-category-modelo2-item__compact-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.58rem;
    min-width: 0;
}

.sw-category-modelo2-item__compact-copy strong,
.sw-category-modelo2-item__title {
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    letter-spacing: 0;
}

.sw-category-modelo2-item__compact-copy strong {
    max-inline-size: 9.6rem;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.1;
}

.sw-category-modelo2-item__compact-copy small {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    line-height: 1.42;
}

.sw-category-modelo2-item__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: clamp(3rem, 4vw, 3.55rem);
    aspect-ratio: 1;
    color: var(--sw-green);
    border: 1px solid rgba(79, 196, 66, 0.7);
    border-radius: 999px;
    background: rgba(2, 12, 5, 0.5);
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
}

.sw-category-modelo2-item__badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.28rem 0.78rem;
    color: #061506;
    background: linear-gradient(180deg, var(--sw-green-light), var(--sw-green));
    border-radius: 999px;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.68rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgba(79, 196, 66, 0.42);
}

.sw-category-modelo2-item__title {
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    line-height: 1.05;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.sw-category-modelo2-item__rule {
    display: block;
    inline-size: 2.2rem;
    block-size: 2px;
    margin: 0.78rem 0 0.76rem;
    background: var(--sw-green);
    border-radius: 999px;
}

.sw-category-modelo2-item__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.78rem, 0.95vw, 0.88rem);
    line-height: 1.42;
}

.sw-category-modelo2-item__perks {
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
    margin: 0.85rem 0 1.1rem;
}

.sw-category-modelo2-item__perks>span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
}

.sw-category-modelo2-item__perks i,
.sw-category-modelo2-item__perks .sw-feature-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inline-size: 1.65rem;
    height: 1.65rem;
    width: 1.65rem;
    aspect-ratio: 1;
    color: var(--sw-green-light);
    border: 1px solid rgba(79, 196, 66, 0.5);
    border-radius: 999px;
    font-size: 0.92rem;
}

.sw-category-modelo2-item__perks b,
.sw-category-modelo2-item__perks small {
    display: block;
    line-height: 1.25;
}

.sw-category-modelo2-item__perks b {
    color: #ffffff;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.68rem;
}

.sw-category-modelo2-item__perks small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
}

.sw-category-modelo2-item__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-block-size: 2.5rem;
    padding: 0.66rem 1.25rem;
    color: #061506;
    background: linear-gradient(180deg, var(--sw-green-light), var(--sw-green));
    border-radius: 999px;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.82rem;
    line-height: 1;
}

.sw-category-modelo2-item__mini-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    inline-size: min(100%, 5.6rem);
}

.sw-category-modelo2-item__mini-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    color: var(--sw-green);
    background: rgba(79, 196, 66, 0.07);
    border: 1px solid rgba(79, 196, 66, 0.42);
    border-radius: 0.5rem;
}

@media (min-width: 768px) {

    .sw-category-modelo2-item:hover,
    .sw-category-modelo2-item:focus-visible {
        flex: 1 1 min(42vw, 32.5rem);
    }

    .sw-category-modelo2-item:hover .sw-category-modelo2-item__image,
    .sw-category-modelo2-item:focus-visible .sw-category-modelo2-item__image {
        opacity: 1;
        filter: brightness(0.86) saturate(1.08);
        object-position: center right;
    }

    .sw-category-modelo2-item:hover .sw-category-modelo2-item__shade,
    .sw-category-modelo2-item:focus-visible .sw-category-modelo2-item__shade {
        background:
            linear-gradient(90deg, rgba(2, 13, 5, 0.95) 0%, rgba(2, 13, 5, 0.82) 36%, rgba(2, 13, 5, 0.15) 72%),
            linear-gradient(180deg, rgba(2, 13, 5, 0.1) 0%, rgba(2, 13, 5, 0.42) 100%);
    }

    .sw-category-modelo2-item:hover .sw-category-modelo2-item__compact,
    .sw-category-modelo2-item:focus-visible .sw-category-modelo2-item__compact {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
    }

    .sw-category-modelo2-item:hover .sw-category-modelo2-item__expanded,
    .sw-category-modelo2-item:focus-visible .sw-category-modelo2-item__expanded {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sw-category-modelo2__grid:has(.sw-category-modelo2-item:is(:hover, :focus-visible)) .sw-category-modelo2-item.is-active:not(:hover):not(:focus-visible) {
        flex: 0 1 clamp(5.5rem, 9vw, 10.8rem);
        border-color: rgba(164, 255, 154, 0.22);
        box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
    }

    .sw-category-modelo2__grid:has(.sw-category-modelo2-item:is(:hover, :focus-visible)) .sw-category-modelo2-item.is-active:not(:hover):not(:focus-visible) .sw-category-modelo2-item__image {
        opacity: 0.5;
        filter: brightness(0.62) saturate(0.98);
        object-position: center;
    }

    .sw-category-modelo2__grid:has(.sw-category-modelo2-item:is(:hover, :focus-visible)) .sw-category-modelo2-item.is-active:not(:hover):not(:focus-visible) .sw-category-modelo2-item__shade {
        background:
            linear-gradient(180deg, rgba(2, 11, 5, 0.46) 0%, rgba(2, 11, 5, 0.68) 52%, rgba(2, 11, 5, 0.96) 100%),
            radial-gradient(circle at 50% 28%, rgba(79, 196, 66, 0.16), transparent 34%);
    }

    .sw-category-modelo2__grid:has(.sw-category-modelo2-item:is(:hover, :focus-visible)) .sw-category-modelo2-item.is-active:not(:hover):not(:focus-visible) .sw-category-modelo2-item__compact {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .sw-category-modelo2__grid:has(.sw-category-modelo2-item:is(:hover, :focus-visible)) .sw-category-modelo2-item.is-active:not(:hover):not(:focus-visible) .sw-category-modelo2-item__expanded {
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
    }
}

@media (max-width: 767.98px) {
    .sw-category-modelo2 {
        padding: clamp(2.25rem, 8vw, 3.25rem) 0 clamp(2rem, 7vw, 3rem);
    }

    .sw-category-modelo2__container {
        max-width: min(100% - 1.5rem, 410px) !important;
    }

    .sw-category-modelo2__header {
        margin-bottom: 1rem;
    }

    .sw-category-modelo2__eyebrow {
        margin-bottom: 0.45rem;
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

    .sw-category-modelo2__header h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
        line-height: 1.08;
    }

    .sw-category-modelo2__header p {
        max-inline-size: 19rem;
        margin-top: 0.55rem;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .sw-category-modelo2__grid {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .sw-category-modelo2-item,
    .sw-category-modelo2-item.is-active {
        flex: none;
        min-block-size: 4.05rem;
        border-radius: 0.82rem;
        transform: none !important;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
    }

    .sw-category-modelo2-item--featured,
    .sw-category-modelo2-item--featured.is-active {
        order: -1;
        min-block-size: clamp(16rem, 68vw, 17.7rem);
        border-color: rgba(164, 255, 154, 0.72);
        border-radius: 1.05rem;
        box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 18px rgba(79, 196, 66, 0.28);
    }

    .sw-category-modelo2-item__image {
        opacity: 0.4;
        object-position: right center;
    }

    .sw-category-modelo2-item--featured .sw-category-modelo2-item__image {
        opacity: 1;
        filter: brightness(0.88) saturate(1.08);
        object-position: 58% center;
    }

    .sw-category-modelo2-item__shade,
    .sw-category-modelo2-item.is-active .sw-category-modelo2-item__shade {
        background:
            linear-gradient(90deg, rgba(2, 13, 5, 0.95) 0%, rgba(2, 13, 5, 0.7) 46%, rgba(2, 13, 5, 0.28) 100%),
            linear-gradient(180deg, rgba(2, 13, 5, 0.18) 0%, rgba(2, 13, 5, 0.94) 100%);
    }

    .sw-category-modelo2-item--featured .sw-category-modelo2-item__shade,
    .sw-category-modelo2-item--featured.is-active .sw-category-modelo2-item__shade {
        background:
            linear-gradient(90deg, rgba(2, 13, 5, 0.96) 0%, rgba(2, 13, 5, 0.8) 38%, rgba(2, 13, 5, 0.16) 78%),
            linear-gradient(180deg, rgba(2, 13, 5, 0.12) 0%, rgba(2, 13, 5, 0.44) 100%);
    }

    .sw-category-modelo2-item__compact,
    .sw-category-modelo2-item.is-active .sw-category-modelo2-item__compact {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem;
        padding: 0.62rem 0.78rem;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        text-align: left;
    }

    .sw-category-modelo2-item--featured .sw-category-modelo2-item__compact,
    .sw-category-modelo2-item--featured.is-active .sw-category-modelo2-item__compact {
        opacity: 0;
        pointer-events: none;
    }

    .sw-category-modelo2-item__expanded,
    .sw-category-modelo2-item.is-active .sw-category-modelo2-item__expanded {
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
    }

    .sw-category-modelo2-item--featured .sw-category-modelo2-item__expanded,
    .sw-category-modelo2-item--featured.is-active .sw-category-modelo2-item__expanded {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        max-inline-size: 80%;
        padding: 1rem;
    }

    .sw-category-modelo2-item__badge {
        margin-bottom: 0.65rem;
        padding: 0.22rem 0.62rem;
        font-size: 0.52rem;
    }

    .sw-category-modelo2-item__title {
        font-size: clamp(1.32rem, 6.5vw, 1.75rem);
        line-height: 1.02;
    }

    .sw-category-modelo2-item__rule {
        inline-size: 1.7rem;
        margin: 0.52rem 0 0.5rem;
    }

    .sw-category-modelo2-item__text {
        font-size: 0.58rem;
        line-height: 1.35;
    }

    .sw-category-modelo2-item__perks {
        gap: 0.34rem;
        margin: 0.62rem 0 0.75rem;
    }

    .sw-category-modelo2-item__perks>span {
        gap: 0.38rem;
    }

    .sw-category-modelo2-item__perks i,
    .sw-category-modelo2-item__perks .sw-feature-icon-box {
        inline-size: 1.25rem;
        height: 1.25rem;
        width: 1.25rem;
        font-size: 0.7rem;
    }

    .sw-category-modelo2-item__perks b {
        font-size: 0.48rem;
    }

    .sw-category-modelo2-item__perks small {
        font-size: 0.45rem;
    }

    .sw-category-modelo2-item__button {
        min-block-size: 1.95rem;
        padding: 0.52rem 1rem;
        font-size: 0.67rem;
    }

    .sw-category-modelo2-item__icon {
        inline-size: 2.9rem;
    }

    .sw-category-modelo2-item__icon i {
        font-size: 1.35rem;
    }

    .sw-category-modelo2-item__compact-copy {
        align-items: flex-start;
        gap: 0.22rem;
    }

    .sw-category-modelo2-item__compact-copy strong {
        max-inline-size: none;
        font-size: 0.86rem;
        line-height: 1.1;
    }

    .sw-category-modelo2-item__compact-copy small {
        max-inline-size: 9rem;
        font-size: 0.58rem;
        line-height: 1.25;
    }

    .sw-category-modelo2-item__arrow {
        inline-size: 2rem;
        font-size: 0.95rem;
        align-self: center;
    }

    .sw-category-modelo2-item__mini-icons {
        display: none;
    }

    .sw-category-modelo2-item--all .sw-category-modelo2-item__compact {
        grid-template-columns: auto minmax(0, 1fr) auto auto;
    }

    .sw-category-modelo2-item--all .sw-category-modelo2-item__mini-icons {
        display: grid;
        grid-template-columns: repeat(4, 1.8rem);
        gap: 0.24rem;
        inline-size: auto;
    }

    .sw-category-modelo2-item__mini-icons span {
        border-radius: 0.36rem;
    }

    .sw-category-modelo2-item__mini-icons i {
        font-size: 0.75rem;
    }

    .sw-category-modelo2__benefits {
        display: none;
    }
}

@media (max-width: 360px) {

    .sw-category-modelo2-item--featured .sw-category-modelo2-item__expanded,
    .sw-category-modelo2-item--featured.is-active .sw-category-modelo2-item__expanded {
        max-inline-size: 85%;
        padding: 0.82rem;
    }

    .sw-category-modelo2-item__title {
        font-size: 1.24rem;
    }

    .sw-category-modelo2-item__perks {
        gap: 0.25rem;
        margin: 0.5rem 0 0.6rem;
    }

    .sw-category-modelo2-item__text {
        font-size: 0.54rem;
    }

    .sw-category-modelo2-item--all .sw-category-modelo2-item__mini-icons {
        grid-template-columns: repeat(2, 1.58rem);
    }
}

@media (max-width: 991.98px) {
    .sw-featured-models__header {
        margin-bottom: 1.75rem;
    }

    .sw-featured-models__header h2 {
        font-size: clamp(1.65rem, 4.5vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    .sw-featured-models__header p {
        font-size: 0.92rem;
    }

    .sw-featured-models__slider {
        min-height: 340px !important;
        height: auto !important;
        justify-content: center !important;
    }

    .sw-model-card {
        flex: 0 0 75px !important;
        height: 340px !important;
    }

    .sw-model-card.is-active {
        flex: 0 0 340px !important;
        width: 340px !important;
        height: 340px !important;
        aspect-ratio: 1 / 1 !important;
        background-color: #ffffff !important;
    }

    /* Mobile/Tablet active card contained layout and text gradient overlay overrides */
    .sw-model-card.is-active .sw-model-card__bg-wrap {
        width: 100% !important;
        height: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        background-color: #ffffff !important;
        z-index: 1 !important;
    }

    .sw-model-card.is-active .sw-model-card__bg-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        background-color: #ffffff !important;
    }

    .sw-model-card.is-active .sw-model-card__gradient {
        opacity: 0 !important;
        display: none !important;
    }

    .sw-model-card.is-active .sw-model-card__content {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        z-index: 3 !important;
    }

    .sw-model-card.is-active .sw-model-card__content h3 {
        color: #ffffff !important;
        font-size: 1.15rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
        padding: 0.8rem 1.2rem 1.8rem 1.2rem !important;
        border-top-left-radius: 28px !important;
        border-top-right-radius: 28px !important;
        text-align: center !important;
    }

    .sw-model-card.is-active .sw-model-card__details-flow {
        display: none !important;
    }

    .sw-model-card.is-active .sw-model-card__desc {
        color: rgba(4, 30, 2, 0.75) !important;
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        margin-bottom: 0.45rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }

    .sw-model-card.is-active .sw-model-card__specs {
        display: none !important;
        /* Hide specs in mobile/tablet slider to avoid overflow */
    }

    .sw-model-card.is-active .sw-model-card__category {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
        padding: 0.15rem 0.5rem !important;
        width: fit-content !important;
    }

    .sw-model-card.is-active .sw-model-card__link {
        font-size: 0.76rem !important;
        padding: 0.4rem 0.9rem !important;
        min-height: 32px !important;
        width: fit-content !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        /* Prevent text wrapping on mobile */
    }
}

@media (max-width: 767.98px) {
    .sw-featured-models__header {
        margin-bottom: 1.5rem;
    }

    .sw-featured-models__header h2 {
        font-size: clamp(1.35rem, 5.8vw, 1.8rem) !important;
        line-height: 1.15;
        margin-bottom: 0.5rem !important;
    }

    .sw-featured-models__header p {
        font-size: clamp(0.82rem, 3.15vw, 0.92rem) !important;
        line-height: 1.45;
    }

    .sw-featured-models .container {
        padding-right: 1.5rem !important;
    }

    .sw-featured-slider-container {
        overflow: hidden;
    }

    .sw-slider-arrow {
        display: none !important;
    }

    .sw-featured-models__slider {
        min-height: 290px !important;
        height: auto !important;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .sw-model-card {
        flex: 0 0 50px !important;
        height: 290px !important;
        border-radius: 28px !important;
    }

    .sw-model-card.is-active {
        flex: 0 0 240px !important;
        width: 240px !important;
        height: 290px !important;
        border-radius: 20px !important;
        background-color: #ffffff !important;
    }

    .sw-model-card.is-active .sw-model-card__content h3 {
        font-size: 1.15rem !important;
        padding: 0.65rem 1rem 1.5rem 1rem !important;
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }

    .sw-model-card__pill-label span {
        font-size: 0.9rem;
    }

    .sw-model-card__content {
        padding: 1.25rem 1rem;
    }

    .sw-model-card__content h3 {
        font-size: 1.35rem;
    }

    .sw-model-card__desc {
        font-size: 0.82rem;
        line-height: 1.4;
        max-width: none;
    }

    .sw-model-card__specs {
        max-width: none;
    }

    .sw-spec-item {
        padding: 0.45rem 0.6rem;
    }

    .sw-spec-item .sw-spec-label {
        font-size: 0.6rem;
    }

    .sw-spec-item strong {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .sw-featured-models__slider {
        min-height: 240px !important;
        height: auto !important;
    }

    .sw-model-card {
        flex: 0 0 40px !important;
        height: 240px !important;
        border-radius: 22px !important;
    }

    .sw-model-card.is-active {
        flex: 0 0 200px !important;
        width: 200px !important;
        height: 240px !important;
        border-radius: 16px !important;
    }

    .sw-model-card.is-active .sw-model-card__content h3 {
        font-size: 0.95rem !important;
        padding: 0.55rem 0.8rem 1.25rem 0.8rem !important;
        border-top-left-radius: 16px !important;
        border-top-right-radius: 16px !important;
    }

    .sw-model-card__pill-label span {
        font-size: 0.8rem;
    }
}

.sw-internal-hero {
    min-height: 42vh;
    background-color: var(--sw-bg);
    padding-top: 140px;
    padding-bottom: 50px;
    transition: background-color 0.4s ease;
}

.sw-internal-title {
    font-size: calc(2.2rem + 1.2vw);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

@media (min-width: 992px) {
    .sw-internal-hero {
        min-height: 48vh;
        padding-top: 160px;
        padding-bottom: 60px;
    }
}

/* Glassmorphic Premium Card Styling */
.sw-card-glass {
    background: var(--sw-surface) !important;
    border: 1px solid var(--sw-border) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 12px 35px rgba(3, 14, 1, 0.18) !important;
    overflow: hidden;
}

.sw-card-glass:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(79, 196, 66, 0.45) !important;
    box-shadow: 0 20px 45px rgba(79, 196, 66, 0.15) !important;
}

/* Premium dynamic theme overrides for inline-styled containers */
.sw-blog-cover {
    background: var(--sw-surface-soft) !important;
    border-color: var(--sw-border) !important;
    transition: all 0.4s ease;
}

.sw-glass-showcase {
    background: var(--sw-surface) !important;
    border-color: var(--sw-border) !important;
    box-shadow: 0 12px 35px rgba(3, 14, 1, 0.15) !important;
    transition: all 0.4s ease;
}

.sw-calculator__card {
    background: var(--sw-surface) !important;
    border-color: var(--sw-border) !important;
    transition: all 0.4s ease;
}

/* Dynamic styling for input controls */
.sw-input {
    background-color: var(--sw-surface-soft) !important;
    border: 1px solid var(--sw-border) !important;
    color: var(--sw-text) !important;
}

.sw-input:focus {
    background-color: var(--sw-surface) !important;
    border-color: var(--sw-green) !important;
    box-shadow: 0 0 15px rgba(79, 196, 66, 0.22) !important;
}

/* Featured model S-2 Pro styling */
.sw-card-featured {
    border-color: rgba(79, 196, 66, 0.38) !important;
    box-shadow: 0 12px 35px rgba(79, 196, 66, 0.08) !important;
}

.sw-card-featured:hover {
    box-shadow: 0 20px 45px rgba(79, 196, 66, 0.22) !important;
}

/* Scooter image inside catalog card */
.sw-card-img-wrapper {
    background: radial-gradient(circle, rgba(18, 87, 10, 0.15) 0%, rgba(3, 14, 1, 0) 70%);
    border-bottom: 1px solid rgba(164, 255, 154, 0.08);
}

.sw-card-scooter-img {
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sw-card-glass:hover .sw-card-scooter-img {
    transform: scale(1.05) translateY(-3px);
}

/* Card custom badges */
.sw-card-badge {
    background-color: rgba(3, 14, 1, 0.8);
    border: 1px solid var(--sw-border);
    color: var(--sw-white);
    border-radius: 30px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-family: 'Sora-SemiBold', sans-serif;
    letter-spacing: 1px;
}

/* Specification lists with premium borders */
.sw-specs-list li {
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.sw-specs-list li span:last-child {
    font-size: 0.92rem;
}

/* Interactive Glassmorphism Form Inputs */
.sw-input {
    background-color: var(--sw-surface-soft) !important;
    border: 1px solid var(--sw-border) !important;
    color: var(--sw-text) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
    font-family: 'Inter-Regular', sans-serif !important;
    transition: all 0.3s ease !important;
}

.sw-input:focus {
    background-color: var(--sw-surface) !important;
    border-color: var(--sw-green) !important;
    box-shadow: 0 0 15px rgba(79, 196, 66, 0.22) !important;
    outline: none !important;
}

.sw-input::placeholder {
    color: var(--sw-text-soft) !important;
    opacity: 0.6 !important;
}

/* Specific styling for select dropdowns to support dark theme in browser */
.sw-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234FC442' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 14px 12px !important;
}

.sw-select option {
    background-color: var(--sw-surface) !important;
    color: var(--sw-text) !important;
}

/* Custom style for dates input calendar icon tint */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(58%) sepia(82%) saturate(410%) hue-rotate(67deg) brightness(98%) contrast(92%);
    cursor: pointer;
}

/* Milestones and targets */
.sw-targets-list h6 {
    font-size: 1.05rem;
}

/* Glassmorphism timeline card inside about us */
.sw-glass-showcase {
    box-shadow: 0 12px 35px rgba(3, 14, 1, 0.6) !important;
}

/* About section country reach stat */
.sw-about-country-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.55rem, 1.1vw, 0.9rem);
    flex-wrap: wrap;
    min-height: 52px;
    color: #030E01;
}

.sw-about-country-count {
    font-family: 'Sora-Bold', sans-serif;
    font-size: clamp(2rem, 3vw, 2.35rem);
    line-height: 1;
}

.sw-about-country-chips {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.sw-about-country-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 30px;
    padding: 0 0.6rem;
    border: 1px solid rgba(79, 196, 66, 0.28);
    border-radius: 999px;
    background: rgba(79, 196, 66, 0.12);
    color: #12570A;
    font-family: 'Sora-Bold', sans-serif;
    font-size: 0.78rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

@media (max-width: 575.98px) {
    .sw-about-country-stat {
        flex-direction: column;
        gap: 0.55rem;
        min-height: auto;
    }

    .sw-about-country-chips {
        gap: 0.45rem;
    }

    .sw-about-country-chip {
        min-width: 42px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Home EV Savings Calculator
   ========================================================================== */
.sw-calculator {
    background: var(--sw-calc-bg);
    overflow: hidden;
    transition: background 0.4s ease;
}

.sw-calc-glow {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(79, 196, 66, 0.05) 0%, rgba(3, 14, 1, 0) 70%);
    filter: blur(40px);
}

/* Select wrapper styling */
.sw-select-wrap {
    position: relative;
}

.sw-select-wrap select.sw-select {
    background-color: var(--sw-surface-soft) !important;
    border: 1px solid var(--sw-border) !important;
    color: var(--sw-text) !important;
    font-family: 'Sora-SemiBold', sans-serif;
    font-size: 0.8rem;
    border-radius: 99px !important;
    padding: 0.45rem 2.2rem 0.45rem 1rem !important;
    cursor: pointer;
    min-width: 105px;
    transition: all 0.3s ease;
}

.sw-select-wrap select.sw-select:focus {
    border-color: var(--sw-green) !important;
    box-shadow: 0 0 12px rgba(79, 196, 66, 0.25) !important;
    outline: none;
}

/* Slider custom range track and thumb */
.sw-slider-container {
    position: relative;
}

.sw-range {
    width: 100%;
    height: 6px;
    background: rgba(164, 255, 154, 0.1) !important;
    border-radius: 99px;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.sw-range::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sw-green-light) !important;
    border: 2px solid var(--sw-white);
    box-shadow: 0 0 12px rgba(79, 196, 66, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sw-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(79, 196, 66, 0.8);
}

.sw-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sw-green-light) !important;
    border: 2px solid var(--sw-white);
    box-shadow: 0 0 12px rgba(79, 196, 66, 0.6);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sw-range::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 18px rgba(79, 196, 66, 0.8);
}

/* Chart Container & Coordinates Grid */
.sw-chart-container {
    height: 310px;
    width: 100%;
    position: relative;
    padding-left: 4.8rem;
    padding-top: 1rem;
    box-sizing: border-box;
}

.sw-chart-grid {
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 24px);
    padding-left: 4.8rem;
}

.sw-grid-line {
    width: 100%;
    border-bottom: 1px dotted var(--sw-border);
    position: relative;
    height: 0;
}

.sw-grid-line span {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    font-size: 0.72rem;
    font-family: 'Sora-SemiBold', sans-serif;
    color: var(--sw-text-soft);
    width: 4.4rem;
    text-align: right;
    padding-right: 0.6rem;
}

/* Bars Column Graph */
.sw-chart-bars {
    width: 100%;
    height: calc(100% - 24px);
    padding-left: 4.8rem;
}

.sw-chart-bar-wrap {
    flex: 1;
    max-width: 130px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sw-chart-bar {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(164, 255, 154, 0.06);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Bar Segments and specific color gradients */
.sw-bar-segment {
    width: 100%;
    height: 0;
    /* JavaScript dynamic percentage */
    transition: border-radius 0.25s ease;
}

.sw-chart-bar .sw-bar-segment:first-child {
    border-radius: 10px 10px 0 0;
}

.sw-segment-fixed {
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sw-segment-maintenance {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
}

.sw-segment-running {
    background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

.sw-segment-savings {
    background: linear-gradient(180deg, var(--sw-green-light) 0%, var(--sw-green) 100%);
    border-top: 1px solid rgba(164, 255, 154, 0.4);
    box-shadow: 0 0 20px rgba(79, 196, 66, 0.3);
}

.sw-bar-label {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
}

/* Legend items */
.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot--fixed {
    background: #374151;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legend-dot--maintenance {
    background: #2563eb;
}

.legend-dot--running {
    background: #7c3aed;
}

.legend-dot--savings {
    background: var(--sw-green-light);
    box-shadow: 0 0 8px rgba(79, 196, 66, 0.5);
}

/* Responsive Scaling for smaller screens */
@media (max-width: 991.98px) {
    .sw-calculator {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .sw-calculator .container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .sw-calculator h2 {
        font-size: clamp(1.45rem, 5.2vw, 2.2rem) !important;
        line-height: 1.25 !important;
    }

    .sw-calculator p.text-sw-text-muted {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        margin-bottom: 2rem !important;
    }

    .sw-calculator .js-calc-annual-val,
    .sw-calculator .js-calc-monthly-val {
        font-size: clamp(1.3rem, 4.5vw, 1.85rem) !important;
    }
}

@media (max-width: 575.98px) {
    .sw-chart-container {
        padding-left: 3.8rem;
        height: 270px;
    }

    .sw-chart-grid {
        padding-left: 3.8rem;
    }

    .sw-grid-line span {
        width: 3.4rem;
        font-size: 0.65rem;
        padding-right: 0.4rem;
    }

    .sw-chart-bars {
        padding-left: 3.8rem;
    }

    .sw-chart-bar-wrap {
        max-width: 85px;
    }

    .sw-bar-label {
        font-size: 0.56rem;
    }
}

/* Remove glowing green floor reflection under the motorcycle in Light Mode on mobile viewports for clean layout */
@media (max-width: 991.98px) {

    html:not([data-theme="dark"]) .hero-ground-glow,
    html:not([data-theme="dark"]) .sw-scooter-floor-glow {
        display: none !important;
    }
}

/* Keep the featured models showcase dark green-black in both Light and Dark modes to provide visual contrast and layout breakup */
.sw-featured-models {
    background: linear-gradient(180deg, rgba(3, 14, 1, 1) 0%, rgba(6, 20, 4, 1) 48%, rgba(3, 14, 1, 1) 100%) !important;
}

.sw-featured-models .sw-featured-models__header h2,
.sw-featured-models .sw-featured-models__header p {
    color: var(--sw-white-const) !important;
}

.sw-featured-models .sw-featured-models__header p {
    opacity: 0.72 !important;
}

/* ==========================================================================
   SECTION 1: "TECNOLOGIA OCULTA" INTERACTIVE HOTSPOTS STYLE
   ========================================================================== */
.sw-tech-section {
    background-color: #F4F8F3;
    border-top: 1px solid var(--sw-border);
    border-bottom: 1px solid var(--sw-border);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

html[data-theme="dark"] .sw-tech-section {
    background-color: #051203;
}

.sw-tech-stage {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.sw-tech-bike-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 32px rgba(79, 196, 66, 0.08));
    transition: filter 0.3s ease;
}

/* Hotspots core */
.sw-hotspot {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--sw-green);
    border: 3px solid var(--sw-white-const);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 0 15px rgba(79, 196, 66, 0.6);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

.sw-hotspot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--sw-green);
    animation: hotspotRotate 8s linear infinite;
    opacity: 0.7;
}

.sw-hotspot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-color: var(--sw-green);
    opacity: 0.35;
    animation: hotspotRipple 1.8s infinite ease-out;
}

.sw-hotspot:hover {
    transform: scale(1.22);
    background-color: var(--sw-green-light);
}

.sw-hotspot.is-active {
    background-color: var(--sw-white-const);
    border-color: var(--sw-green);
    box-shadow: 0 0 25px rgba(79, 196, 66, 0.8);
}

@keyframes hotspotRipple {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes hotspotRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dynamic hotspot glassmorphic card */
.sw-hotspot-card {
    position: absolute;
    width: 270px;
    padding: 1.15rem;
    border-radius: 18px;
    background-color: rgba(3, 14, 1, 0.9);
    border: 1px solid rgba(164, 255, 154, 0.22);
    color: var(--sw-white-const);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html:not([data-theme="dark"]) .sw-hotspot-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(79, 196, 66, 0.25);
    color: var(--sw-black-const);
    box-shadow: 0 10px 30px rgba(79, 196, 66, 0.08);
}

.sw-hotspot-card.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

@media (max-width: 991.98px) {
    .sw-tech-section {
        padding-bottom: 120px !important;
        /* Dedicated clearance area so centered info cards never clip */
    }

    .sw-hotspot-card {
        position: absolute !important;
        left: 50% !important;
        bottom: -95px !important;
        top: auto !important;
        right: auto !important;
        width: calc(100% - 24px) !important;
        max-width: 440px !important;
        transform: translate(-50%, 15px) scale(0.95) !important;
    }

    .sw-hotspot-card.is-visible {
        transform: translate(-50%, 0) scale(1) !important;
    }
}

.sw-hotspot-card h5 {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
    font-family: 'Sora-Bold', sans-serif;
}

.sw-hotspot-card p {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.48;
    color: rgba(249, 255, 249, 0.78);
}

html:not([data-theme="dark"]) .sw-hotspot-card p {
    color: rgba(3, 14, 1, 0.78);
}

/* Positions of Hotspots (tuned percentual alignment) */
.sw-hotspot--battery {
    top: 72%;
    left: 45%;
}

.sw-hotspot--motor {
    top: 70%;
    left: 78%;
}

.sw-hotspot--dashboard {
    top: 18%;
    left: 32%;
}

/* Card orientations on Desktop: Premium floating tooltips positioned close to hotspots */
@media (min-width: 992px) {
    .sw-hotspot-card {
        width: 280px !important;
        max-width: 280px !important;
        padding: 1.25rem !important;
        border-radius: 16px !important;
        transform: translateY(10px) scale(0.95) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    }

    html:not([data-theme="dark"]) .sw-hotspot-card {
        box-shadow: 0 10px 30px rgba(79, 196, 66, 0.12) !important;
    }

    .sw-hotspot-card.is-visible {
        transform: translateY(0) scale(1) !important;
    }

    /* Floating positions relative to hotspots to make them close and highly visible */
    /* Hotspot Battery: top: 72%; left: 45%; */
    .sw-hotspot-card--battery {
        top: 36% !important;
        left: 24% !important;
        bottom: auto !important;
        right: auto !important;
    }

    /* Hotspot Motor: top: 70%; left: 78%; */
    .sw-hotspot-card--motor {
        top: 34% !important;
        left: 54% !important;
        bottom: auto !important;
        right: auto !important;
    }

    /* Hotspot Dashboard: top: 18%; left: 32%; */
    .sw-hotspot-card--dashboard {
        top: 4% !important;
        left: 38% !important;
        bottom: auto !important;
        right: auto !important;
    }
}

/* ==========================================================================
   SECTION 2: "CONECTANDO TRIPLICE FRONTEIRA" STYLE
   ========================================================================== */
.sw-heritage-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--sw-border);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

html[data-theme="dark"] .sw-heritage-section {
    background-color: #030E01;
}

.sw-map-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    background-color: rgba(3, 14, 1, 0.45);
    border: 1px solid var(--sw-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
    transition: background-color 0.4s, border-color 0.4s;
}

html:not([data-theme="dark"]) .sw-map-wrapper {
    background-color: rgba(79, 196, 66, 0.03);
    box-shadow: inset 0 0 30px rgba(79, 196, 66, 0.04);
}

/* High-tech grid background representing GPS mapping */
.sw-map-grid {
    position: absolute;
    inset: 0;
    background-size: 30px 30px;
    background-image: linear-gradient(to right, var(--sw-border) 1px, transparent 1px),
        linear-gradient(to bottom, var(--sw-border) 1px, transparent 1px);
    opacity: 0.15;
    pointer-events: none;
}

/* Minimal Vector borders represent Iguazu/Parana rivers */
.sw-map-river {
    position: absolute;
    background-color: rgba(79, 196, 66, 0.08);
    pointer-events: none;
}

.sw-map-river--parana {
    top: 0;
    left: 48%;
    width: 16px;
    height: 100%;
    transform: rotate(4deg);
    background: linear-gradient(to bottom, rgba(79, 196, 66, 0.02), rgba(79, 196, 66, 0.12) 50%, rgba(79, 196, 66, 0.02));
}

.sw-map-river--iguazu {
    top: 55%;
    right: 0;
    width: 52%;
    height: 12px;
    transform: rotate(-10deg);
    background: linear-gradient(to left, rgba(79, 196, 66, 0.02), rgba(79, 196, 66, 0.1) 50%, rgba(79, 196, 66, 0.02));
}

/* Pulsing map nodes representing official locations */
.sw-map-node {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: transform 0.3s ease;
}

.sw-map-node:hover {
    transform: scale(1.1);
}

/* Node markers styling */
.sw-node-marker {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--sw-white-const);
    border: 3.5px solid var(--sw-green);
    box-shadow: 0 0 12px rgba(79, 196, 66, 0.4);
    position: relative;
}

.sw-node-marker::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background-color: var(--sw-green);
    opacity: 0.25;
    animation: hotspotRipple 1.6s infinite ease-out;
}

/* Showroom highlight marker */
.sw-map-node--showroom .sw-node-marker {
    width: 24px;
    height: 24px;
    background-color: var(--sw-green);
    border: 4px solid var(--sw-white-const);
    box-shadow: 0 0 20px rgba(79, 196, 66, 0.8);
}

.sw-map-node--showroom .sw-node-marker::after {
    inset: -10px;
    background-color: var(--sw-green-light);
}

/* Label text for nodes */
.sw-node-label {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    background-color: rgba(3, 14, 1, 0.88);
    border: 1px solid var(--sw-border);
    color: var(--sw-white-const);
    font-size: 0.68rem;
    font-family: 'Sora-Bold', sans-serif;
    letter-spacing: 0.05em;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

html:not([data-theme="dark"]) .sw-node-label {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--sw-black-const);
    box-shadow: 0 4px 15px rgba(79, 196, 66, 0.05);
}

/* Custom left label for showroom to avoid overlap */
.sw-map-node--showroom .sw-node-label {
    left: auto;
    right: 32px;
    border-color: var(--sw-green);
    color: var(--sw-green) !important;
}

/* Node layout positioning (mapped geometrically to border coordinates) */
.sw-map-node--showroom {
    top: 38%;
    left: 32%;
}

.sw-map-node--foz {
    top: 48%;
    left: 66%;
}

.sw-map-node--iguazu {
    top: 78%;
    left: 60%;
}

.sw-map-node--bridge {
    top: 42%;
    left: 45%;
}

/* Connective lines showing commute paths */
.sw-map-route {
    position: absolute;
    border: 1.5px dashed rgba(79, 196, 66, 0.45);
    transform-origin: 0 0;
    pointer-events: none;
    z-index: 2;
}

/* Interactive map details slider/info card */
.sw-map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    max-width: 250px;
    padding: 0.95rem 1.15rem;
    border-radius: 16px;
    background-color: rgba(3, 14, 1, 0.92);
    border: 1px solid rgba(164, 255, 154, 0.18);
    color: var(--sw-white-const);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 6;
    transition: all 0.3s ease;
}

html:not([data-theme="dark"]) .sw-map-info-card {
    background-color: rgba(255, 255, 255, 0.98);
    border-color: rgba(79, 196, 66, 0.22);
    color: var(--sw-black-const);
    box-shadow: 0 8px 24px rgba(79, 196, 66, 0.06);
}

.sw-map-info-card h6 {
    font-size: 0.82rem;
    font-family: 'Sora-Bold', sans-serif;
    color: var(--sw-green);
    margin-bottom: 0.35rem;
}

.sw-map-info-card p {
    font-size: 0.72rem;
    margin-bottom: 0;
    line-height: 1.45;
}

/* ==========================================================================
   SECTION 3: "SMART COMMUNITY" TESTIMONIALS STYLE
   ========================================================================== */
.sw-community-section {
    background-color: #F4F8F3;
    border-top: 1px solid var(--sw-border);
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

html[data-theme="dark"] .sw-community-section {
    background-color: #051203;
}

/* Premium glassmorphic community card layout */
.sw-community-card {
    position: relative;
    padding: 2.2rem 2rem;
    border-radius: 28px;
    background-color: rgba(3, 14, 1, 0.35);
    border: 1px solid rgba(164, 255, 154, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.4s,
        box-shadow 0.4s;
    height: 100%;
}

html:not([data-theme="dark"]) .sw-community-card {
    background-color: rgba(255, 255, 255, 0.4);
    border-color: rgba(79, 196, 66, 0.12);
    box-shadow: 0 16px 40px rgba(79, 196, 66, 0.02);
}

.sw-community-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 196, 66, 0.3);
    box-shadow: 0 24px 50px rgba(79, 196, 66, 0.08);
}

/* Verified Buyer premium badge */
.sw-comm-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    background-color: rgba(79, 196, 66, 0.1);
    color: var(--sw-green);
    font-size: 0.65rem;
    font-family: 'Sora-SemiBold', sans-serif;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

/* Customer lifestyle Quote block */
.sw-comm-quote {
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(249, 255, 249, 0.85);
    margin-bottom: 1.65rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

html:not([data-theme="dark"]) .sw-comm-quote {
    color: rgba(3, 14, 1, 0.85);
}

/* Premium quote mark visual element */
.sw-comm-quote::before {
    content: '“';
    position: absolute;
    top: -24px;
    left: -14px;
    font-size: 3.5rem;
    color: var(--sw-green);
    opacity: 0.18;
    font-family: serif;
    z-index: -1;
}

/* User information block */
.sw-comm-user {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.sw-comm-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sw-green) 0%, var(--sw-green-light) 100%);
    color: var(--sw-black-const);
    font-family: 'Sora-Bold', sans-serif;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(79, 196, 66, 0.25);
}

.sw-comm-info h6 {
    font-size: 0.88rem;
    font-family: 'Sora-Bold', sans-serif;
    color: var(--sw-text);
    margin-bottom: 0.15rem;
}

.sw-comm-info p {
    font-size: 0.72rem;
    color: var(--sw-text-muted);
    margin-bottom: 0;
}

/* Lifestyle Tag Badge for selected model */
.sw-comm-tag {
    margin-left: auto;
    font-size: 0.68rem;
    font-family: 'Sora-Bold', sans-serif;
    color: var(--sw-white-const);
    background-color: var(--sw-border);
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    border: 1px solid rgba(79, 196, 66, 0.15);
}

html:not([data-theme="dark"]) .sw-comm-tag {
    color: var(--sw-black-const);
}

/* Enforce high-contrast constant white titles and texts inside featured model cards */
.sw-model-card:not(.is-active) .text-white,
.sw-model-card:not(.is-active) h3 {
    color: var(--sw-white-const) !important;
}

/* ==========================================================================
   Premium Light Mode Contrast & Theme Enhancements
   ========================================================================== */

/* EV Savings Calculator Chart Bar Style in Light Mode */
html:not([data-theme="dark"]) .sw-chart-bar {
    background: rgba(4, 30, 2, 0.02) !important;
    border: 1px solid rgba(79, 196, 66, 0.12) !important;
    box-shadow: inset 0 2px 8px rgba(4, 30, 2, 0.06) !important;
}

/* EV Savings Calculator Legend Savings Dot in Light Mode */
html:not([data-theme="dark"]) .legend-dot--savings {
    background: var(--sw-green) !important;
    box-shadow: 0 0 8px rgba(79, 196, 66, 0.3) !important;
}

/* EV Savings Calculator Metrics text color in Light Mode */
html:not([data-theme="dark"]) .js-calc-annual-val,
html:not([data-theme="dark"]) .js-calc-monthly-val {
    color: #12570A !important;
}

/* EV Savings Calculator range slider thumb in Light Mode */
html:not([data-theme="dark"]) .sw-range::-webkit-slider-thumb {
    background: var(--sw-green) !important;
    box-shadow: 0 0 10px rgba(79, 196, 66, 0.4) !important;
}

html:not([data-theme="dark"]) .sw-range::-moz-range-thumb {
    background: var(--sw-green) !important;
    box-shadow: 0 0 10px rgba(79, 196, 66, 0.4) !important;
}

/* Community Tag badge color contrast in Light Mode */
html:not([data-theme="dark"]) .sw-comm-tag {
    background-color: rgba(79, 196, 66, 0.08) !important;
    border-color: rgba(79, 196, 66, 0.22) !important;
    color: #12570A !important;
}

/* ==========================================================================
   Ver Todas / isAllCard Premium Design & Clickable Fix
   ========================================================================== */

/* Styling for the unified 'Ver Todas' card */
.sw-model-card--all {
    text-decoration: none !important;
}

/* When the 'Ver Todas' card is active */
.sw-model-card--all.is-active {
    background: linear-gradient(135deg, #071A04 0%, #12570A 100%) !important;
    border-color: rgba(79, 196, 66, 0.45) !important;
}

/* Ensure background covers the whole card when active, not split */
.sw-model-card--all.is-active .sw-model-card__bg-wrap {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: transparent !important;
}

/* Adjust the center background arrow icon container */
.sw-model-card--all.is-active .sw-model-card__bg-img {
    background: linear-gradient(135deg, rgba(7, 26, 4, 0.95), rgba(18, 87, 10, 0.8)) !important;
    width: 100% !important;
    justify-content: flex-end !important;
    padding-right: 4rem !important;
    /* Push the arrow icon to the right to clear space for text */
}

/* Adjust the content area for the active 'Ver Todas' card */
.sw-model-card--all.is-active .sw-model-card__content {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 2.25rem 2rem !important;
    background: transparent !important;
    pointer-events: none !important;
}

/* Overrides for header and other elements to layout naturally */
.sw-model-card--all.is-active .sw-model-card__content h3 {
    position: static !important;
    padding: 0 !important;
    background: transparent !important;
    color: #ffffff !important;
    text-shadow: none !important;
    margin-bottom: 0.5rem !important;
}

.sw-model-card--all.is-active .sw-model-card__category {
    position: static !important;
    margin-bottom: 0.5rem !important;
}

.sw-model-card--all.is-active .sw-model-card__desc {
    position: static !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1.5rem !important;
    max-width: 320px !important;
}

.sw-model-card--all.is-active .sw-model-card__link {
    position: static !important;
    color: #ffffff !important;
    background-color: var(--sw-green) !important;
    border-color: var(--sw-green) !important;
    margin-top: auto !important;
}

.sw-model-card--all.is-active .sw-model-card__link:hover {
    background-color: var(--sw-green-light) !important;
    border-color: var(--sw-green-light) !important;
}

/* On mobile viewports */
@media (max-width: 991.98px) {
    .sw-model-card--all.is-active .sw-model-card__bg-img {
        justify-content: center !important;
        padding-right: 0 !important;
    }

    .sw-model-card--all.is-active .sw-model-card__content {
        background: rgba(7, 26, 4, 0.85) !important;
        /* Use a dark green frosted glass on mobile to stand out! */
        backdrop-filter: blur(6px) !important;
    }

    .sw-model-card--all.is-active .sw-model-card__content h3 {
        color: #ffffff !important;
    }

    .sw-model-card--all.is-active .sw-model-card__desc {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}

/* Mobile-specific link button inside active product card */
.sw-model-card.is-active .sw-model-card__link--mobile {
    display: none !important;
}

@media (max-width: 991.98px) {
    .sw-model-card.is-active .sw-model-card__link--mobile {
        position: absolute !important;
        bottom: 1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 100 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        pointer-events: auto !important;
        color: #ffffff !important;
        background-color: #4FC442 !important;
        border: 2.5px solid #4FC442 !important;
        box-shadow: 0 8px 18px rgba(79, 196, 66, 0.28), 0 4px 15px rgba(0, 0, 0, 0.22) !important;
        white-space: nowrap !important;
        padding: 0.45rem 1.15rem !important;
        border-radius: 999px !important;
        font-family: 'Sora-Bold', sans-serif !important;
        font-weight: 700 !important;
        font-size: 0.76rem !important;
        text-decoration: none !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: background-color 0.25s ease, border-color 0.25s ease !important;
    }

    .sw-model-card.is-active .sw-model-card__link--mobile i {
        color: #ffffff !important;
    }
}

.sw-model-card.is-active .sw-model-card__link--mobile:hover,
.sw-model-card.is-active .sw-model-card__link--mobile:active {
    background-color: #3fb536 !important;
    color: #ffffff !important;
    border-color: #3fb536 !important;
}

.sw-model-card.is-active .sw-model-card__link--mobile:hover i,
.sw-model-card.is-active .sw-model-card__link--mobile:active i {
    color: #ffffff !important;
}

.sw-model-card:not(.is-active) .sw-model-card__link--mobile {
    display: none !important;
}

@media (max-width: 480px) {
    .sw-model-card.is-active .sw-model-card__link--mobile {
        bottom: 0.75rem !important;
        font-size: 0.7rem !important;
        padding: 0.35rem 0.95rem !important;
    }
}

/* Category Cards Layout */
.sw-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--sw-surface-soft);
    border: 1px solid rgba(164, 255, 154, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.sw-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 196, 66, 0.45);
    box-shadow: 0 24px 48px rgba(79, 196, 66, 0.15);
}

.sw-category-card__bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sw-category-card__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sw-category-card:hover .sw-category-card__bg-img {
    transform: scale(1.08);
}

.sw-category-card__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(3, 14, 1, 0.1) 0%,
            rgba(3, 14, 1, 0.45) 50%,
            rgba(3, 14, 1, 0.98) 100%);
}

.sw-category-card__content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.sw-category-card__icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(79, 196, 66, 0.15);
    border: 1px solid rgba(79, 196, 66, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sw-category-card__icon-box i {
    color: var(--sw-green-light);
    font-size: 1.35rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sw-category-card:hover .sw-category-card__icon-box {
    background: var(--sw-green);
    border-color: var(--sw-green-light);
}

.sw-category-card:hover .sw-category-card__icon-box i {
    color: var(--sw-white-const);
    transform: rotate(15deg) scale(1.1);
}

.sw-category-card__badge {
    align-self: flex-start;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sw-green-light);
    background: rgba(79, 196, 66, 0.08);
    border: 1px solid rgba(79, 196, 66, 0.2);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.sw-category-card h3 {
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.sw-category-card__desc {
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--sw-text-muted);
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sw-category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-family: 'Sora-SemiBold', sans-serif;
    color: var(--sw-green-light);
    transition: color 0.3s ease, gap 0.3s ease;
}

.sw-category-card:hover .sw-category-card__link {
    color: var(--sw-white-const);
    gap: 0.75rem;
}

.test-ride-btn:hover {
    background-color: var(--sw-green) !important;
    color: var(--sw-white-const) !important;
    box-shadow: 0 0 12px rgba(79, 196, 66, 0.4);
    border-color: var(--sw-green-light) !important;
}

.test-ride-btn:hover i {
    color: var(--sw-white-const) !important;
}

/* User requested title color for product cards */
.sw-v2-card-model-title,
.sw-slider-card-title,
.sw-category-modelo2-item__title {
    color: #041E02 !important;
}

.sw-category-modelo2-item__icon-img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(60%) sepia(63%) saturate(526%) hue-rotate(71deg) brightness(101%) contrast(101%);
}

.sw-category-modelo2-item__icon-img-mini {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(60%) sepia(63%) saturate(526%) hue-rotate(71deg) brightness(101%) contrast(101%);
}

.sw-category-modelo2-item__title-home {
    color: #ffffff !important;
}