.page-container {
        
  max-width: 1200px;   
  margin: 0 auto;       

  padding: 0 20px;    
}


@font-face {
    font-family: Porsche Next;
    src: url(porschenext-regular-webfont.woff2) format("woff2"), url(porschenext-regular-webfont.woff) format("woff"), url(porschenext-regular.otf) format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Porsche Next;
    src: url(porschenext-semibold-webfont.woff2) format("woff2"), url(porschenext-semibold-webfont.woff) format("woff"), url(porschenext-semibold.otf) format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Porsche Next;
    src: url(porschenext-bold-webfont.woff2) format("woff2"), url(porschenext-bold-webfont.woff) format("woff"), url(porschenext-bold.otf) format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --font-family-primary: "Porsche Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-size-xxs: .6875rem;
    --font-size-xs: .8125rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.1rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --line-height-neutral: 1;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --letter-spacing-wide: 1px;
    --container-max-width: 1800px;
    --container-padding: 2rem;
    --min-section-height: 800px
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

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

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translate(-50px)
    }

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

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translate(50px)
    }

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

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }

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

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px)
    }

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

@keyframes pulse {

    0%,
    to {
        opacity: .3;
        transform: scale(1)
    }

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes shake {

    0%,
    to {
        transform: translate(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate(10px)
    }
}

@keyframes glow {

    0%,
    to {
        box-shadow: 0 0 5px #ffffff80
    }

    50% {
        box-shadow: 0 0 20px #fffc
    }
}

.animate-fade-in {
    animation: fadeIn .8s ease-out
}

.animate-slide-in-left {
    animation: slideInLeft .8s ease-out
}

.animate-slide-in-right {
    animation: slideInRight .8s ease-out
}

.animate-slide-in-up {
    animation: slideInUp .8s ease-out
}

.animate-slide-in-down {
    animation: slideInDown .8s ease-out
}

.animate-pulse {
    animation: pulse 2s infinite
}

.animate-bounce {
    animation: bounce 2s infinite
}

.animate-spin {
    animation: spin 1s linear infinite
}

.animate-shake {
    animation: shake .5s ease-in-out
}

.animate-glow {
    animation: glow 2s ease-in-out infinite
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px #0000001a, 0 4px 6px #0000000d
}

.hover-scale:hover {
    transform: scale(1.05)
}

.hover-glow:hover {
    animation: glow .5s ease-in-out
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all .8s ease-out
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0)
}

.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease-out
}

.animate-text.animate {
    opacity: 1;
    transform: translateY(0)
}

.animate-stagger .animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease-out
}

.animate-stagger .animate-item.animate {
    opacity: 1;
    transform: translateY(0)
}

.animate-stagger .animate-item:nth-child(1) {
    transition-delay: .1s
}

.animate-stagger .animate-item:nth-child(2) {
    transition-delay: .2s
}

.animate-stagger .animate-item:nth-child(3) {
    transition-delay: .3s
}

.animate-stagger .animate-item:nth-child(4) {
    transition-delay: .4s
}

.animate-stagger .animate-item:nth-child(5) {
    transition-delay: .5s
}

h1,
.h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-neutral)
}

h2,
.h2,
h3,
.h3 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-neutral)
}

h4,
.h4 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal)
}

h5,
.h5 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal)
}

h6,
.h6 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal)
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-justify {
    text-align: justify
}

.text-xs {
    font-size: .75rem
}

.text-sm {
    font-size: .875rem
}

.text-base {
    font-size: 1rem
}

.text-lg {
    font-size: 1.125rem
}

.text-xl {
    font-size: 1.25rem
}

.text-2xl {
    font-size: 1.5rem
}

.text-3xl {
    font-size: 1.875rem
}

.text-4xl {
    font-size: 2.25rem
}

.text-5xl {
    font-size: 3rem
}

.text-6xl {
    font-size: 3.75rem
}

.font-light {
    font-weight: 300
}

.font-regular {
    font-weight: 400
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.leading-tight {
    line-height: 1.25
}

.leading-normal {
    line-height: 1.5
}

.leading-relaxed {
    line-height: 1.75
}

.btn {
    position: relative;
    display: inline-block;
    padding: 1.05rem 2.1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family-primary);
    font-size: calc(var(--font-size-base) * 1.1);
    font-weight: var(--font-weight-regular);
    font-style: 600;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    overflow: hidden;
    background: transparent
}

.btn-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    border: 1px solid #fff;
    background: #000
}

.btn-cta:hover {
    border-color: #666 !important
}

@media (max-width: 720px) {
    .btn-cta {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 64px;
        border: none !important;
        border-radius: 0 !important;
        background: #fffffffc;
        color: #000 !important
    }
}

.black-edition-active .btn-cta {
    position: fixed
}

@media (max-width: 720px) {
    .black-edition-active .btn-cta {
        background: #000000fc;
        color: #fff !important
    }
}

.btn-primary {
    color: #fff;
    border: 1px solid #fff
}

.btn-primary:hover {
    background: #000;
    box-shadow: 0 8px 25px #0000004d;
    border: 1px solid rgba(0, 0, 0, 0);
    color: #fff !important
}

.btn-secondary {
    background: #666;
    color: #fff
}

.btn-secondary:hover {
    background: #555
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000
}

.btn-outline:hover {
    background: #000;
    color: #fff
}

.btn-white {
    background: #fff;
    color: #000
}

.btn-white:hover {
    background: #f8f9fa
}

.btn-sm {
    padding: .75rem 1.5rem;
    font-size: var(--font-size-sm)
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-lg)
}

.btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important
}

.text-primary {
    color: #fff
}

.text-secondary {
    color: #333
}

.text-white {
    color: #fff
}

.text-black {
    color: #000
}

.text-gray {
    color: #666
}

.text-success {
    color: #4caf50
}

.text-error {
    color: #f44336
}

.text-warning {
    color: #ff9800
}

.bg-primary {
    background-color: #fff
}

.bg-secondary {
    background-color: #333
}

.bg-white {
    background-color: #fff
}

.bg-black {
    background-color: #000
}

.bg-light {
    background-color: #f8f9fa
}

.m-0 {
    margin: 0
}

.m-1 {
    margin: .25rem
}

.m-2 {
    margin: .5rem
}

.m-3 {
    margin: 1rem
}

.m-4 {
    margin: 1.5rem
}

.m-5 {
    margin: 2rem
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: .25rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: 1rem
}

.mt-4 {
    margin-top: 1.5rem
}

.mt-5 {
    margin-top: 2rem
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: 1rem
}

.mb-4 {
    margin-bottom: 1.5rem
}

.mb-5 {
    margin-bottom: 2rem
}

.ml-0 {
    margin-left: 0
}

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-3 {
    margin-left: 1rem
}

.ml-4 {
    margin-left: 1.5rem
}

.ml-5 {
    margin-left: 2rem
}

.mr-0 {
    margin-right: 0
}

.mr-1 {
    margin-right: .25rem
}

.mr-2 {
    margin-right: .5rem
}

.mr-3 {
    margin-right: 1rem
}

.mr-4 {
    margin-right: 1.5rem
}

.mr-5 {
    margin-right: 2rem
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: 1rem
}

.p-4 {
    padding: 1.5rem
}

.p-5 {
    padding: 2rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: .25rem
}

.pt-2 {
    padding-top: .5rem
}

.pt-3 {
    padding-top: 1rem
}

.pt-4 {
    padding-top: 1.5rem
}

.pt-5 {
    padding-top: 2rem
}

.pb-0 {
    padding-bottom: 0
}

.pb-1 {
    padding-bottom: .25rem
}

.pb-2 {
    padding-bottom: .5rem
}

.pb-3 {
    padding-bottom: 1rem
}

.pb-4 {
    padding-bottom: 1.5rem
}

.pb-5 {
    padding-bottom: 2rem
}

.pl-0 {
    padding-left: 0
}

.pl-1 {
    padding-left: .25rem
}

.pl-2 {
    padding-left: .5rem
}

.pl-3 {
    padding-left: 1rem
}

.pl-4 {
    padding-left: 1.5rem
}

.pl-5 {
    padding-left: 2rem
}

.pr-0 {
    padding-right: 0
}

.pr-1 {
    padding-right: .25rem
}

.pr-2 {
    padding-right: .5rem
}

.pr-3 {
    padding-right: 1rem
}

.pr-4 {
    padding-right: 1.5rem
}

.pr-5 {
    padding-right: 2rem
}

.d-none {
    display: none
}

.d-block {
    display: block
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-flex {
    display: flex
}

.d-grid {
    display: grid
}

.flex-row {
    flex-direction: row
}

.flex-column {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-nowrap {
    flex-wrap: nowrap
}

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

.justify-center {
    justify-content: center
}

.justify-end {
    justify-content: flex-end
}

.justify-between {
    justify-content: space-between
}

.justify-around {
    justify-content: space-around
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.items-end {
    align-items: flex-end
}

.items-stretch {
    align-items: stretch
}

.position-static {
    position: static
}

.position-relative {
    position: relative
}

.position-absolute {
    position: absolute
}

.position-fixed {
    position: fixed
}

.position-sticky {
    position: sticky
}

.border {
    border: 1px solid #e9ecef
}

.border-0 {
    border: none
}

.border-top {
    border-top: 1px solid #e9ecef
}

.border-bottom {
    border-bottom: 1px solid #e9ecef
}

.border-left {
    border-left: 1px solid #e9ecef
}

.border-right {
    border-right: 1px solid #e9ecef
}

.rounded {
    border-radius: 6px
}

.rounded-sm {
    border-radius: 4px
}

.rounded-lg {
    border-radius: 8px
}

.rounded-xl {
    border-radius: 12px
}

.rounded-full {
    border-radius: 50px
}

.shadow-sm {
    box-shadow: 0 1px 2px #0000000d
}

.shadow {
    box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f
}

.shadow-md {
    box-shadow: 0 4px 6px #00000012, 0 2px 4px #0000000f
}

.shadow-lg {
    box-shadow: 0 10px 15px #0000001a, 0 4px 6px #0000000d
}

.shadow-xl {
    box-shadow: 0 20px 25px #0000001a, 0 10px 10px #0000000a
}

.shadow-none {
    box-shadow: none
}

.overflow-hidden {
    overflow: hidden
}

.overflow-auto {
    overflow: auto
}

.overflow-scroll {
    overflow: scroll
}

.overflow-visible {
    overflow: visible
}

.z-0 {
    z-index: 0
}

.z-10 {
    z-index: 10
}

.z-20 {
    z-index: 20
}

.z-30 {
    z-index: 30
}

.z-40 {
    z-index: 40
}

.z-50 {
    z-index: 50
}

.spacer {
    height: 6rem
}

@media (max-width: 720px) {
    .mobile-hidden {
        display: none
    }

    .mobile-block {
        display: block
    }

    .mobile-flex {
        display: flex
    }

    .mobile-grid {
        display: grid
    }
}

@media (max-width: 1024px) {
    .tablet-hidden {
        display: none
    }

    .tablet-block {
        display: block
    }

    .tablet-flex {
        display: flex
    }

    .tablet-grid {
        display: grid
    }
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500;
    color: #000
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    font-family: Porsche Next, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    transition: all .3s ease;
    background: #fff
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 0 3px #ffffff1a
}

.form-input::placeholder,
.form-textarea::placeholder,
.form-select::placeholder {
    color: #666
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
    transition: all .3s ease
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px #0000001a, 0 4px 6px #0000000d
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding)
}

@media (max-width: 720px) {
    .container {
        padding: 0 1rem
    }
}

.grid {
    display: grid;
    gap: 2rem
}

.grid.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.grid.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.grid.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem
}

.section {
    background-color: #000;
    color: #fff;
    height: 100%;
    min-height: 100vh
}

@media (max-width: 720px) {
    .section {
        min-height: 100vh
    }
}

.section-container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 6rem var(--container-padding)
}

@media (max-width: 720px) {
    .section-container {
        width: 100%;
        padding: 2rem 1.5rem
    }
}

.section-content {
    width: min(60vw, var(--container-max-width) / 2)
}

@media (max-width: 1024px) {
    .section-content {
        width: min(95%, 560px)
    }
}

.section-title {
    font-size: clamp(0.9rem, 0.9125vw, 0.175rem);
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 2.25rem;
    margin-top: 4rem;
    text-transform: uppercase
}

@media (width > 390px) {
    .section-title {
        font-size: clamp(1.6rem, 3.9125vw, 1.175rem)
    }
}

@media (max-width: 720px) {
    .section-title {
        width: 90%
    }
}

.section-description {
    font-size: clamp(1.15rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    max-width: 560px
}

.section-detalles .section-description {
    max-width: unset
}

.section-interior .section-title,
.section-interior .section-description {
    width: 65vw !important;
    max-width: 600px !important
}

@media (max-width: 720px) {

    .section-interior .section-title,
    .section-interior .section-description {
        width: 100% !important;
        max-width: unset !important
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #555
}

::-webkit-scrollbar {
    width: 0px
}

::-webkit-scrollbar-track {
    background: #1a1a1a
}

::-webkit-scrollbar-thumb {
    background: #2d2d2d;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #666
}

html {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base)
}

@media (max-width: 720px) {
    html {
        font-size: var(--font-size-base)
    }
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: #fff;
    background-color: #000
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 1rem
}

p {
    margin-bottom: 1rem;
    line-height: 1.5
}

a {
    color: #fff;
    text-decoration: none;
    transition: all .3s ease
}

a:hover {
    color: #000
}

html.lenis,
html.lenis body {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

@media (prefers-reduced-motion: reduce) {
    .lenis.lenis-smooth {
        scroll-behavior: auto !important
    }
}

.burger-menu {
    position: fixed;
    top: 1.25rem;
    left: 1.5rem;
    width: 30px;
    height: 30px;
    padding: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: .45rem;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none
}

.burger-menu .burger-line {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .3s ease;
    transform-origin: center
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px)
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translate(20px)
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

.menu-overlay {
    position: fixed;
    z-index: 1001;
    inset: 0;
    width: 100%;
    height: 100svh;
    background: #00000080;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible
}

.menu-overlay.active .menu-content {
    transform: translate(0)
}

.menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: #000;
    transform: translate(-100%);
    transition: transform .3s ease;
    will-change: transform;
    overflow: hidden
}

@media (min-width: 1024px) {
    .menu-content {
        width: 50%;
        padding: 2rem 5vw
    }
}

.menu-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    box-shadow: inset 0 0 80px 20px #0006;
    transform-origin: center center
}

.menu-background-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000d9, #000000b3, #000000d9);
    z-index: 1
}

.menu-images-preload {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none
}

.menu-images-preload img {
    display: block;
    width: 1px;
    height: 1px
}

.menu-header {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding-bottom: 0
}

.menu-navigation {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex: 1
}

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

.menu-list li {
    margin-bottom: 0
}

.menu-list li a {
    position: relative;
    display: inline-block;
    padding: .35rem 0;
    font-size: clamp(1.8rem, 3vw, 2.25rem);
    font-weight: var(--font-weight-regular);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    opacity: .5;
    transition: all .4s cubic-bezier(.23, 1, .32, 1);
    transform: translate(0)
}

.menu-list li a .menu-link-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 1;
    pointer-events: none
}

.menu-list li a .menu-link-text-original,
.menu-list li a .menu-link-text-duplicate {
    display: inline-block;
    position: relative
}

.menu-list li a .menu-link-text-duplicate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.menu-list li a :global(.menu-char) {
    display: inline-block;
    position: relative;
    will-change: transform, opacity;
    user-select: none;
    backface-visibility: hidden;
    transform: translateZ(0);
    pointer-events: none
}

.menu-list li a {
    pointer-events: auto
}

.menu-list li a:hover {
    opacity: 1
}

:global(body.menu-open) {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important
}

.navbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    transition: all .3s ease;
    height: 72px
}

.navbar .country-selector {
    opacity: 0;
    pointer-events: none
}

.navbar-container {
    position: relative;
    height: 70px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width: 720px) {
    .navbar-container {
        padding: 0
    }
}

.navbar-logo {
    width: 180px;
    flex-shrink: 0
}

@media (max-width: 720px) {
    .navbar-logo {
        width: 40vw;
        min-width: 140px;
        max-width: 180px
    }
}

.logo-link {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: color .3s ease
}

.logo-link>img {
    display: block;
    width: 100%;
    height: auto
}

.logo-link>svg {
    width: 100%;
    height: auto
}

body.black-edition-active .navbar .logo-link svg path {
    fill: #000
}

body.black-edition-active .navbar .logo-link img {
    filter: brightness(1) invert(1)
}

body.black-edition-active .burger-menu .burger-line {
    background: #000
}

body.black-edition-active .burger-menu.active .burger-line {
    background: #fff
}

.navbar .blur {
    z-index: -1;
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0
}

.navbar .blur>div {
    position: absolute;
    inset: 0
}

.navbar .blur>div:nth-of-type(1) {
    z-index: 1;
    backdrop-filter: blur(64px);
    mask-image: linear-gradient(to bottom, #000 0% 12.5%, #000 25%, #0000 37.5%)
}

.navbar .blur>div:nth-of-type(2) {
    z-index: 2;
    backdrop-filter: blur(32px);
    mask-image: linear-gradient(to bottom, #0000 12.5%, #000 25% 37.5%, #0000 50%)
}

.navbar .blur>div:nth-of-type(3) {
    z-index: 3;
    backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, #0000 25%, #000 37.5% 50%, #0000 62.5%)
}

.navbar .blur>div:nth-of-type(4) {
    z-index: 4;
    backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, #0000 37.5%, #000 50% 62.5%, #0000 75%)
}

.navbar .blur>div:nth-of-type(5) {
    z-index: 5;
    backdrop-filter: blur(4px);
    mask-image: linear-gradient(to bottom, #0000 50%, #000 62.5% 75%, #0000 87.5%)
}

.navbar .blur>div:nth-of-type(6) {
    z-index: 6;
    backdrop-filter: blur(2px);
    mask-image: linear-gradient(to bottom, #0000 62.5%, #000 75% 87.5%, #0000)
}

.navbar .blur>div:nth-of-type(7) {
    z-index: 7;
    backdrop-filter: blur(1px);
    mask-image: linear-gradient(to bottom, #0000 75%, #000 87.5% 100%)
}

.navbar .blur>div:nth-of-type(8) {
    z-index: 8;
    backdrop-filter: blur(.5px);
    mask-image: linear-gradient(to bottom, #0000 87.5%, #000)
}

.is-hero-out .navbar .blur {
    opacity: 1
}

.carousel-container {
    position: relative;
    margin: 4rem auto 0;
    z-index: 2
}

.carousel-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, #0000, #000 12.5% 87.5%, #0000);
    touch-action: pan-y
}

@media (max-width: 720px) {
    .carousel-wrapper {
        mask-image: none;
        padding-bottom: 2rem;
        touch-action: pan-y
    }
}

.carousel-track {
    display: flex;
    transition: transform .5s ease-in-out;
    min-height: 440px;
    touch-action: pan-y
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0
}

@media (max-width: 720px) {
    .carousel-slide {
        padding: 0
    }
}

.carousel-slide.hidden {
    display: none
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
    background: #ffffffd9;
    box-shadow: #959da580 0 8px 24px;
    color: #fff;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent
}

.carousel-nav span {
    height: 24px
}

@media (max-width: 720px) {
    .carousel-nav {
        top: unset;
        bottom: -1rem;
        box-shadow: unset;
        border: 1px solid #222
    }
}

.carousel-nav.button--circle:before,
.carousel-nav.button--circle:after {
    background: #000 !important
}

.carousel-prev {
    left: 1.5rem
}

@media (max-width: 720px) {
    .carousel-prev {
        left: calc(50% - 50px - .5rem)
    }
}

.carousel-next {
    right: 1.5rem
}

@media (max-width: 720px) {
    .carousel-next {
        right: calc(50% - 50px - .5rem)
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem
}

@media (max-width: 720px) {
    .carousel-dots {
        margin-top: 0;
        display: none
    }
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all .3s ease
}

.carousel-dot.active {
    width: 24px;
    background: #222
}

.carousel-dot:hover {
    background: #999
}

.model {
    position: relative;
    width: 85%;
    max-width: 900px;
    height: 540px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
    text-align: center;
    transition: all .3s ease
}

@media (max-width: 720px) {
    .model {
        align-items: center;
        gap: 1.5rem;
        width: 90%;
        height: auto;
        min-height: 50svh;
        padding: 0
    }
}

.model-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.model-image img {
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%
}

@media (max-width: 720px) {
    .model-image img {
        width: 100%
    }
}

.model-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 2rem
}

@media (max-width: 720px) {
    .model-content {
        flex-direction: column;
        width: 100%;
        max-width: 90%;
        gap: 1rem;
        padding: 0
    }
}

.model-title {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .75rem;
    flex-basis: 50%;
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 1rem;
    text-align: left
}

@media (max-width: 720px) {
    .model-title {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0;
        text-align: center
    }
}

.model-title h3 {
    font-size: 1.6rem;
    font-weight: 600;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    width: 80%;
    margin: 0;
    display: inline-block
}

@media (max-width: 720px) {
    .model-title h3 {
        width: 100%
    }
}

.model-title small {
    font-size: .75rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #000;
    padding: .3725rem .5rem;
    border-radius: 4px;
    background: #eee;
    float: left
}

.model-description {
    position: relative;
    flex-basis: 50%;
    text-align: left;
    width: 100%
}

.model-description:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -2rem;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #999
}

@media (max-width: 720px) {
    .model-description:after {
        display: none
    }
}

@media (max-width: 720px) {
    .model-description {
        text-align: center
    }
}

.model-description p {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    line-height: 1.35;
    color: #333
}

@media (max-width: 720px) {
    .model-description p {
        margin-bottom: 2rem
    }
}

.model-cta {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: .025em;
    color: #000;
    transition: all .3s ease
}

@media (max-width: 720px) {
    .model-cta {
        justify-content: center;
        font-size: .875rem
    }
}

.model-cta img {
    filter: invert(1);
    width: auto;
    height: 9px
}

.model-cta:hover {
    color: #333
}

.model-content-fixed {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 10;
    min-height: 150px;
    margin: 0;
    padding: 0
}

@media (max-width: 720px) {
    .model-content-fixed {
        display: none;
        pointer-events: none;
        visibility: hidden
    }
}

.model-content-mobile {
    display: none;
    pointer-events: none;
    visibility: hidden
}

@media (max-width: 720px) {
    .model-content-mobile {
        display: flex;
        pointer-events: auto;
        visibility: visible
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    padding: 0;
    background: #000c;
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.modal-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    max-width: 50vw;
    width: 100%;
    height: 100svh;
    padding-top: 10vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px #0000004d
}

@media (max-width: 720px) {
    .modal-container {
        max-width: unset
    }
}

.modal-header {
    padding: 2rem 2rem 0;
    position: relative
}

.modal-title {
    max-width: 90%;
    margin-bottom: .5rem;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #333
}

.modal-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: all .3s ease;
    padding: 0;
    border-radius: 99px;
    z-index: 99999;
    height: 50px;
    width: 50px;
    background: #eee;
    color: #fff;
    overflow: hidden
}

.modal-close:hover {
    color: #333;
    background: #f5f5f5
}

.modal-body {
    position: relative;
    padding: 1rem 2rem 2rem
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2
}

.modal-container--form .button--circle:before,
.modal-container--form .button--circle:after {
    background: #222 !important
}

.modal-container--form .button--circle:hover span {
    filter: invert(1) brightness(2)
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    margin: 0
}

.form-label {
    font-weight: var(--font-weight-semibold);
    color: #333;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    margin: 0
}

.form-input,
.form-textarea {
    padding: .75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: var(--font-size-base);
    transition: all .3s ease;
    background: #fff;
    font-family: var(--font-family-primary)
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px #ff6b351a
}

.form-textarea {
    resize: vertical;
    min-height: 100px
}

.form-submit {
    display: inline-block;
    padding: .975rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: Porsche Next, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    width: 100%
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px #0000001a, 0 4px 6px #0000000d;
    background: #2d2d2d;
    border-color: #2d2d2d
}

.form-success {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: -1;
    padding: 2rem 0 0;
    text-align: left
}

.success-icon {
    color: #4caf50;
    margin-bottom: 1rem
}

.success-message {
    color: #333;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
    width: 65%
}

.button-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 200px;
    height: 54px;
    background-color: #ffffff0d;
    border-radius: 4px;
    transition: background-color .3s ease;
    overflow: hidden;
    cursor: pointer;
    filter: drop-shadow(0 0 24px rgba(0, 0, 0, .2))
}

@media (max-width: 720px) {
    .button-container {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 64px;
        border: none !important;
        border-radius: 0 !important;
        filter: drop-shadow(0 0 64px rgba(0, 0, 0, .25))
    }
}

.button-container:hover {
    background-color: #fff6
}

.button-container:hover .button-glow {
    transform: scale(2)
}

.button-container:hover .button-stroke {
    transform: scale(1)
}

.button-container:hover .button-fill .button-text {
    transform: translate(10px)
}

.button-container:hover .button-fill img.button-arrow {
    transform: translate(50px);
    opacity: 0
}

.button-container:hover .button-fill img.button-arrow-hover {
    transform: translate(8px);
    opacity: 1
}

.button-stroke-mask {
    overflow: hidden;
    width: 100%;
    height: 100%
}

.button-glow,
.button-stroke {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    pointer-events: none;
    will-change: background, transform
}

@media (max-width: 720px) {

    .button-glow,
    .button-stroke {
        transition: transform .3s cubic-bezier(.25, .46, .45, .94);
        transform-origin: center center
    }
}

.button-glow {
    z-index: 1;
    filter: blur(10px);
    opacity: 1
}

.button-stroke {
    z-index: 2;
    opacity: 1
}

.button-fill {
    display: flex;
    flex-flow: row-reverse;
    flex: none;
    place-content: center;
    align-items: center;
    gap: .75rem;
    position: absolute;
    z-index: 3;
    padding: 0;
    inset: 1px;
    background-color: #000;
    transform: none;
    transform-origin: 50% 50% 0px;
    opacity: 1;
    border-radius: 3px;
    pointer-events: none;
    transition: all .3s
}

@media (max-width: 720px) {
    .button-fill {
        inset: 0;
        border-radius: 0;
        background-color: #fff;
        color: #000 !important
    }
}

.button-fill img {
    width: 20px;
    height: auto;
    transition: .25s cubic-bezier(.1, 0, .3, 1)
}

@media (max-width: 720px) {
    .button-fill img {
        filter: invert(1)
    }
}

.button-fill img.button-arrow-hover {
    opacity: 0;
    transition: .25s cubic-bezier(.1, 0, .3, 1);
    transform: translate(-50px)
}

.button-text {
    position: relative;
    font-family: var(--font-family-primary);
    font-size: calc(var(--font-size-base) * 1.1);
    font-weight: var(--font-weight-regular);
    text-transform: none;
    transition: .35s cubic-bezier(.1, 0, .3, 1);
    z-index: 10
}

.checkbox-group {
    margin-bottom: 1.5rem
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    font-size: calc(var(--font-size-base) * .9);
    line-height: 1.4;
    color: #666
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0
}

.checkbox-text {
    flex: 1
}

.terms-link {
    color: #000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: opacity .2s ease
}

.terms-link:hover {
    opacity: .7
}

@media (max-width: 720px) {
    .checkbox-label {
        font-size: calc(var(--font-size-base) * .85);
        gap: .5rem
    }

    .form-checkbox {
        width: 16px;
        height: 16px
    }
}

.modal-wrapper {
    max-width: 600px;
    margin: 0 auto
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0
}

.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 500
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
}

.message.show {
    display: block
}

footer {
    position: relative;
    overflow: hidden;
    z-index: 1
}

@media (max-width: 720px) {
    footer {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

    }
}

@media (max-width: 720px) {
    footer .section-title {
        margin: 0 0 3rem
    }
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    min-height: 100svh;
    padding-bottom: 0
}

@media (max-width: 720px) {
    .footer-container {
        justify-content: flex-end
    }
}

.footer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    width: 100%;
    padding-bottom: 0
}

@media (max-width: 720px) {
    .footer-content {
        justify-content: center;
        align-items: flex-start;
        gap: 0;
        padding-bottom: 10vh
    }
}

.footer-content h2 {
    text-align: left;
    margin-top: 15vh;
    max-width: 600px
}

@media (max-width: 720px) {
    .footer-content h2 {
        margin-top: 20vh
    }
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: url(footer/bg.jpg) no-repeat center center;
    background-size: cover;
    background-position: 25% 100%
}

.footer-bg img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem 0
}

@media (max-width: 720px) {
    .footer-bottom {
        justify-content: flex-end;
        position: relative;
        padding-bottom: 0
    }
}

.footer-legal {
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: .25rem;
    margin: 0
}

@media (max-width: 720px) {
    .footer-legal {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        display: block
    }
}

.footer-legal a {
    font-size: var(--font-size-xs);
    color: #999;
    transition: .35s
}

@media (max-width: 720px) {
    .footer-legal a {
        display: inline-block;
        padding: 0 3px
    }
}

.footer-legal a:hover {
    color: #fff
}

.footer-copyright {
    font-size: var(--font-size-xs);
    color: #999;
    margin: 0
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem
}

@media (max-width: 720px) {
    .footer-social {
        align-items: center
    }
}

.footer-social h4 {
    margin: 2rem 0 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #fff
}

.footer-social .social-links-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem
}

.footer-social .social-links-container a:hover {
    color: #fff
}

.section-inicio {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    height: 90vh;
    min-height: var(--min-section-height)
}

@media (max-width: 720px) {
    .section-inicio {
        align-items: flex-end;
        justify-content: center;
        height: 80svh;
        min-height: 80svh
    }
}

@media (max-height: 800px) and (min-width: 1280px) and (orientation: portrait) {
    .section-inicio {
        align-items: center
    }
}

.section-inicio .section-container {
    padding-bottom: 15vh
}

@media (max-width: 720px) {
    .section-inicio .section-container {
        padding-bottom: calc(10% + 64px);
        padding-bottom: 18.5vh
    }
}

.section-inicio .section-title {
    font-size: clamp(2.5rem, 5.25vw, 4.5rem);
    margin-bottom: 4rem
}

@media (max-width: 720px) {
    .section-inicio .section-title {
        font-size: clamp(1.57rem, 2.97vw, 3.15rem);
        margin: 0 0 1.75rem;
        padding-top: 0
    }
}

@media (width > 390px) {
    .section-inicio .section-title {
        font-size: clamp(1.75rem, 3.67vw, 3.15rem)
    }
}

.section-inicio .section-description {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600
}

.section-inicio .video-placeholder {
    width: 100%;
    height: 100%;
    background: url(hero/bg.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden
}

@media (max-width: 720px) {
    .hero-background {
        min-height: 100vh
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000b3, #0000004d, #000c);
    z-index: 2;
    min-height: var(--min-section-height)
}

.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: var(--min-section-height);
    z-index: 1
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2
}

.hero-video video.hidden {
    opacity: 0;
    visibility: hidden
}

.hero-video-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
    transition: opacity .5s ease
}

.hero-video-fallback.show {
    opacity: 1;
    visibility: visible;
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 3
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap
}

.hero-price {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

@media (max-width: 720px) {
    .hero-price {
        gap: .5rem
    }
}

.hero-price-container {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: .24rem;
    overflow: hidden;
    height: 1.5rem
}

.hero-price-value {
    font-size: var(--font-size-base)
}

.hero-price-label,
.hero-price-value span {
    display: inline-block;
    font-size: .85rem
}

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 2rem;
    left: calc(5% + 30px);
    transform: translate(-100%);
    z-index: 3
}

.scroll-arrow {
    color: #fff;
    opacity: .7
}

.section-exterior {
    position: relative;
    padding-bottom: 3rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5vh;
    padding: 20vh 0 30vh
}

@media (max-width: 720px) {
    .section-exterior {
        gap: 5vh;
        padding: 15vh 0
    }
}

.section-exterior .section-content {
    max-width: 720px
}

@media (max-width: 720px) {
    .section-exterior .section-title {
        width: 100%
    }
}

.section-exterior-background-image {
    background: url(exterior/bg.jpg) no-repeat center top;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 110%;
    top: 0;
    left: 0
}

.section-exterior .carousel {
    overflow-y: hidden;
    overflow-x: scroll;
    width: 100%;
    padding: 0;
    margin: 0
}

@media (min-width: 1665px) {
    .section-exterior .carousel {
        padding: 0
    }
}

.section-exterior .carousel::-webkit-scrollbar {
    height: 0px
}

.section-exterior .carousel::-webkit-scrollbar-track {
    background: #1a1a1a
}

.section-exterior .carousel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 0
}

.section-exterior .carousel::-webkit-scrollbar-thumb:hover {
    background: #555
}

.section-exterior .view-more-button {
    background-color: #eee;
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    cursor: pointer;
    border-radius: 50%;
    border: none;
    overflow: hidden;
    transition: transform .6s ease;
    color: #1b1b1b
}

.section-exterior .view-more-button.button--circle:before,
.section-exterior .view-more-button.button--circle:after {
    background: #fff
}

.section-exterior .view-more-button.button--circle span {
    z-index: 1;
    mix-blend-mode: normal;
    height: unset
}

.section-exterior .exterior-features {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 3rem
}

.section-exterior .feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    aspect-ratio: 1/1;
    margin-left: 2rem;
    flex-shrink: 0;
    min-height: 480px;
    width: auto;
    max-width: 90vw;
    transition: border-color .3s ease;
    overflow: hidden
}

@media (max-width: 720px) {
    .section-exterior .feature-item {
        min-height: 400px;
        max-width: 85vw;
        margin-left: 1.5rem
    }
}

@media (hover: hover) and (pointer: fine) {
    .section-exterior .feature-item:hover .view-more-button {
        color: #000;
        transform: scale(1.15);
        transition: transform .6s cubic-bezier(.35, 3, .65, 1) !important
    }

    .section-exterior .feature-item:hover .view-more-button:before {
        transform: translate(-50%, -50%) translateZ(0) scaleZ(1);
        transition: transform .4s cubic-bezier(.1, 0, .3, 1)
    }

    .section-exterior .feature-item:hover .view-more-button:after {
        transform: translate(-50%, -50%) translateZ(0);
        transition-duration: .05s;
        transition-delay: .4s;
        transition-timing-function: linear
    }

    .section-exterior .feature-item:hover .view-more-button span {
        animation: MoveScaleUpInitial .3s forwards, MoveScaleUpEnd .3s forwards .2s
    }

    .section-exterior .feature-item:hover .image-placeholder img {
        transform: scale(1.1);
        transition: transform .75s cubic-bezier(.35, 1.75, .65, 1)
    }
}

.section-exterior .feature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    cursor: pointer;
    border: none
}

.section-exterior .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.section-exterior .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: transform .45s ease-out
}

.section-exterior .modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000000d9;
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    transition: opacity .3s ease
}

.section-exterior .modal.active {
    opacity: 1;
    pointer-events: all
}

.section-exterior .modal.active .modal-slide-wrapper {
    clip-path: inset(0% 0% 0% 0%);
    transition: clip-path .9s cubic-bezier(0, 0, 0, 1)
}

.section-exterior .modal-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(30px);
    opacity: .6;
    z-index: 1;
    transition: background-image .4s ease-in-out
}

@media (max-width: 767px) {
    .section-exterior .modal-bg {
        background: #000 !important
    }
}

.section-exterior .modal-content,
.section-exterior .modal-close,
.section-exterior .modal-nav {
    position: relative;
    z-index: 3
}

.section-exterior .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: unset;
    max-height: unset
}

.section-exterior .modal-slide-title {
    font-size: clamp(2rem, 2.75vw, 2.665rem);
    margin-bottom: 1rem;
    margin-top: 2rem;
    width: 100%
}

@media (min-width: 768px) {
    .section-exterior .modal-slide-title {
        margin-bottom: 2rem;
        margin-top: 4rem;
        width: 100%;
        max-width: 600px
    }
}

.section-exterior .modal-slider-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

.section-exterior .modal-slider-list {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    height: 100%;
    position: relative
}

.section-exterior .modal-slider-slide {
    flex: none;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity .4s ease
}

@media (min-width: 768px) {
    .section-exterior .modal-slider-slide {
        padding: 2rem
    }
}

.section-exterior .modal-slider-slide.active {
    opacity: 1
}

.section-exterior .modal-slider-slide.active .modal-slide-wrapper:before {
    opacity: 0
}

.section-exterior .modal-slider-slide.active .modal-slide-content {
    opacity: 1;
    transition: opacity 0s
}

.section-exterior .modal-slide-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    max-width: 1152px;
    aspect-ratio: 3/2;
    position: relative;
    clip-path: inset(25% 25% 25% 25%);
    will-change: clip-path
}

@media (min-width: 768px) {
    .section-exterior .modal-slide-wrapper {
        width: 80%;
        height: auto
    }
}

.section-exterior .modal-slide-wrapper:before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #000;
    opacity: 1;
    transition: opacity .9s ease-out
}

.section-exterior .modal-slide-image {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 55%;
    position: absolute;
    top: 0;
    left: 50%;
    opacity: 1
}

@media (width < 390px) and (orientation: portrait) {
    .section-exterior .modal-slide-image {
        height: 50%
    }
}

@media (min-width: 768px) {
    .section-exterior .modal-slide-image {
        width: 115%;
        height: 115%;
        top: 50%
    }
}

.section-exterior .modal-slide-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    max-width: 90%;
    top: 55%;
    left: 5%;
    opacity: 0;
    transition: opacity .6s
}

@media (width < 390px) and (orientation: portrait) {
    .section-exterior .modal-slide-content {
        top: 50%
    }
}

@media (min-width: 768px) {
    .section-exterior .modal-slide-content {
        bottom: 10%;
        left: 10%;
        max-width: 80%
    }
}

.section-exterior .modal-slide-description {
    line-height: 1.35;
    max-width: 400px
}

@media (max-width: 720px) {
    .section-exterior .modal-slide-description {
        line-height: 1.35
    }
}

.section-exterior .modal-close {
    background: none;
    background: #ffffff26;
    padding: 1.5rem 3rem;
    margin: 0;
    display: inline-block;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    color: #999;
    color: #fff;
    transition: all .3s ease;
    padding: 0;
    border-radius: 99px;
    height: 50px;
    width: 50px;
    overflow: hidden;
    backdrop-filter: blur(10px)
}

.section-exterior .modal-nav {
    background: #ffffff26;
    color: #fff;
    z-index: 1000;
    transition: background .2s ease;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 10;
    backdrop-filter: blur(10px)
}

@media (max-width: 720px) {
    .section-exterior .modal-nav {
        top: unset;
        bottom: .1rem
    }
}

.section-exterior .modal-nav.prev {
    left: 1.5rem
}

@media (max-width: 720px) {
    .section-exterior .modal-nav.prev {
        left: calc(50% - 50px - .5rem)
    }
}

.section-exterior .modal-nav.next {
    right: 1.5rem
}

@media (max-width: 720px) {
    .section-exterior .modal-nav.next {
        right: calc(50% - 50px - .5rem)
    }
}

.button--circle {
    transition: transform .3s ease;
    transform-origin: center
}

.button--circle span {
    display: block;
    position: relative;
    mix-blend-mode: difference;
    z-index: 10;
    height: 24px
}

@media (hover: hover) and (pointer: fine) {
    .button--circle:hover span {
        animation: MoveScaleUpInitial .3s forwards, MoveScaleUpEnd .3s forwards .2s
    }
}

.button--circle:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%) translate3d(0, 68%, 0) scale3d(0, 0, 0)
}

.button--circle:after {
    content: "";
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate3d(0, -100%, 0);
    transition: transform .2s cubic-bezier(.1, 0, .3, 1);
    width: 100%;
    height: 100%
}

.button--rectangle {
    transition: transform .3s ease;
    transform-origin: center;
    overflow: hidden;
    position: relative
}

.button--rectangle span {
    display: block;
    position: relative;
    mix-blend-mode: difference;
    z-index: 10
}

@media (hover: hover) and (pointer: fine) {
    .button--rectangle:hover span {
        animation: MoveScaleUpInitial .3s forwards, MoveScaleUpEnd .3s forwards .2s
    }
}

.button--rectangle:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0)
}

.button--rectangle:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform .2s cubic-bezier(.1, 0, .3, 1);
    width: 100%;
    height: 100%
}

.button--hover-effect {
    transition: transform .3s ease;
    transform-origin: center;
    overflow: hidden
}

.button--hover-effect .button-arrow,
.button--hover-effect .button-arrow-hover {
    z-index: 10
}

.button--hover-effect:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0)
}

.button--hover-effect:after {
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform .2s cubic-bezier(.1, 0, .3, 1);
    width: 100%;
    height: 100%
}

@keyframes MoveScaleUpInitial {
    to {
        transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
        opacity: 0
    }
}

@keyframes MoveScaleUpEnd {
    0% {
        transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
        opacity: 0
    }

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

@media (hover: hover) and (pointer: fine) {
    .button--circle:hover:before {
        transform: translate(-50%, -50%) translateZ(0) scaleZ(1);
        transition: transform .4s cubic-bezier(.1, 0, .3, 1)
    }

    .button--circle:hover:after {
        transform: translate(-50%, -50%) translateZ(0);
        transition-duration: .05s;
        transition-delay: .4s;
        transition-timing-function: linear
    }

    .button--rectangle:hover:before {
        transform: translateZ(0) scaleZ(1);
        transition: transform .4s cubic-bezier(.1, 0, .3, 1)
    }

    .button--rectangle:hover:after {
        transform: translateZ(0);
        transition-duration: .05s;
        transition-delay: .4s;
        transition-timing-function: linear
    }
}

.button-container:hover .button--hover-effect .button-arrow-hover {
    filter: invert(1);
    z-index: 10
}

.button-container:hover .button--hover-effect .button-text {
    color: #000;
    z-index: 10
}

.button-container:hover .button--hover-effect:before {
    transform: translateZ(0) scaleZ(1);
    transition: transform .4s cubic-bezier(.1, 0, .3, 1)
}

.button-container:hover .button--hover-effect:after {
    transform: translateZ(0);
    transition-duration: .05s;
    transition-delay: .4s;
    transition-timing-function: linear
}

.filter-btn.button--rectangle:before,
.filter-btn.button--rectangle:after {
    background: #000
}

.filter-btn.active.button--rectangle:before,
.filter-btn.active.button--rectangle:after {
    background: #fff
}

.section-interior {
    position: relative;
    height: 85vh;
    min-height: unset;
    overflow: hidden
}

@media (min-width: 768px) {
    .section-interior {
        height: 100vh
    }
}

.slider-interior {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-x pan-y
}

.slider-interior:active {
    cursor: grabbing
}

.section-interior .interior-grid {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    touch-action: pan-x pan-y
}

.section-interior .interior-feature {
    position: relative;
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    background: #ffffff1a;
    touch-action: pan-x pan-y
}

.section-interior .interior-feature-title {
    margin-bottom: 1rem;
    margin-top: 2rem
}

@media (min-width: 768px) {
    .section-interior .interior-feature-title {
        margin-bottom: 2.25rem;
        margin-top: 4rem
    }
}

.section-interior .feature-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: .25rem
}

@media (max-width: 720px) {
    .section-interior .feature-content {
        padding: 2rem 1.5rem 4rem
    }
}

.section-interior .feature-content h3,
.section-interior .feature-content p {
    width: 30vw;
    max-width: 480px
}

@media (max-width: 719px) {

    .section-interior .feature-content h3,
    .section-interior .feature-content p {
        width: 100%
    }
}

.section-interior .feature-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #222;
    touch-action: none
}

.section-interior .image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden
}

.section-interior .image-placeholder img {
    position: absolute;
    width: 120%;
    height: 120%;
    max-width: none;
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    touch-action: none
}

.section-interior .modal-nav {
    background: #ffffff26;
    color: #fff;
    z-index: 1000;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(15px)
}

@media (max-width: 720px) {
    .section-interior .modal-nav {
        top: 45%
    }
}

.section-interior .modal-nav.prev {
    left: 1.5rem
}

@media (max-width: 720px) {
    .section-interior .modal-nav.prev {
        left: 1rem
    }
}

.section-interior .modal-nav.next {
    right: 1.5rem
}

@media (max-width: 720px) {
    .section-interior .modal-nav.next {
        right: 1rem
    }
}

.section-black-edition {
    position: relative;
    min-height: 120svh;
    padding: 17.5vh 0 15vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #eee, #fff);
    color: #000
}

.section-black-edition .section-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0
}

.section-black-edition .section-content {
    margin: 0 auto;
    padding-bottom: 3rem
}

.section-black-edition .section-title {
    max-width: 630px;
    text-align: center;
    color: #000;
    margin-left: auto;
    margin-right: auto
}

.section-black-edition .section-description {
    color: #000;
    text-align: center;
    margin: 0 auto
}

.section-black-edition .logo-cayenne {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translate(-50%);
    width: 115%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    pointer-events: none;
    z-index: -1
}

@media (max-width: 720px) {
    .section-black-edition .logo-cayenne {
        top: calc(-50% + 10vh);
        width: 125%
    }
}

.filter-black-edition {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 2
}

@media (max-width: 720px) {
    .filter-black-edition {
        gap: 0rem;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        padding: 1rem 0
    }
}

.filter-black-edition .filter-btn {
    display: block;
    padding: .75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #000;
    min-width: 120px;
    background: transparent;
    font-weight: 600;
    font-size: inherit;
    font-family: inherit;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: all .3s ease
}

@media (max-width: 720px) {
    .filter-black-edition .filter-btn {
        height: 48px;
        width: 33vw;
        padding-bottom: 2px;
        font-size: 18px;
        color: #aaa;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid #aaa
    }
}

.filter-black-edition .filter-btn:hover {
    color: #fff
}

@media (max-width: 720px) {
    .filter-black-edition .filter-btn:hover {
        color: #aaa
    }
}

.filter-black-edition .filter-btn.active {
    background: #000;
    color: #fff
}

@media (max-width: 720px) {
    .filter-black-edition .filter-btn.active {
        background: transparent;
        color: #000;
        border-bottom: 2px solid #000
    }
}

.mouse-follow-btn {
    position: fixed;
    top: 0;
    left: 0;
    width: fit-content;
    height: 40px;
    padding: 1.5rem 2rem;
    background: #eee;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.8);
    transition: opacity .2s ease, transform .2s ease;
    font-size: calc(var(--font-size-base) * 1.1);
    font-weight: var(--font-weight-regular);
    color: #000
}

.mouse-follow-btn.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.mouse-follow-btn span {
    position: relative;
    z-index: 1
}

.model-content-fixed .model-name div {
    line-height: inherit;
    display: inline-block
}

.model-content-fixed .model-name,
.model-content-fixed .model-type,
.model-content-fixed .model-desc-text,
.model-content-fixed .model-cta {
    opacity: 1;
    transform: translateY(0)
}

.section-stories {
    position: relative
}

.section-stories .btn-videos-cta {
    margin-top: 1rem
}

.section-stories-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(stories/bg.jpg) no-repeat center top;
    background-attachment: fixed
}

@media (max-width: 720px) {
    .section-stories-bg {
        height: 120vh;
        background: url(stories/bg-mobile.jpg) no-repeat center top;
        background-size: cover;
        mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%)
    }
}

.section-stories .section-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5vw;
    width: 100%;
    z-index: 2;
    position: relative;
    height: 100%;
    min-height: 2500px
}

@media (max-width: 1024px) {
    .section-stories .section-container {
        flex-direction: column
    }
}

@media (max-width: 720px) {
    .section-stories .section-container {
        min-height: 3000px;
        gap: 2rem
    }
}

@media (width > 1600px) {
    .section-stories .section-container {
        gap: 7vw
    }
}

.section-stories .section-content {
    position: sticky;
    padding-top: 5rem;
    padding-bottom: 30vh;
    top: 100px
}

@media (max-width: 1024px) {
    .section-stories .section-content {
        position: relative;
        padding: unset;
        top: 0
    }
}

.section-stories .section-content .section-title {
    width: 80%
}

@media (max-width: 720px) {
    .section-stories .section-content .section-title {
        width: 100%
    }
}

.section-stories-embed {
    position: relative;
    width: 100%;
    max-width: 740px
}

@media (max-width: 1024px) {
    .section-stories-embed {
        max-width: 100%;
        max-width: 600px
    }
}

.section-stories-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999
}

body #stry-wrapper {
    margin: 0 !important;
    overflow: visible !important;
    padding-top: 50vh;
    padding-bottom: 50vh;
    pointer-events: none;
    position: relative
}

@media (max-width: 1024px) {
    body #stry-wrapper {
        padding-top: 40vh;
        padding-bottom: 30vh
    }
}

@media (max-width: 720px) {
    body #stry-wrapper {
        padding-top: 20vh;
        padding-bottom: 2vh
    }
}

body .stry-carousel-layout.stry-fixed-mode #stry-carousel,
body .stry-carousel-layout .stry-popup {
    overflow: visible !important;
    pointer-events: none
}

body .stry-carousel-layout #stry-carousel-content-wrapper {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 4rem !important;
    width: auto !important;
    margin: 0;
    pointer-events: none
}

body #stry-carousel .stry-pane {
    margin: 0 auto !important
}

@media (min-width: 720px) {
    body .stry-carousel-layout #stry-carousel-content-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 1rem !important;
        grid-row-gap: 20vh !important;
        grid-template-areas: "video1 video2""video3 video4"
    }

    #stry-carousel .stry-pane {
        justify-self: center;
        pointer-events: none
    }

    #stry-carousel .stry-pane:nth-child(1) {
        grid-area: video1;
        transform: translateY(-20vh)
    }

    #stry-carousel .stry-pane:nth-child(2) {
        grid-area: video2;
        transform: translateY(20vh)
    }

    #stry-carousel .stry-pane:nth-child(3) {
        grid-area: video3;
        transform: translateY(-20vh)
    }

    #stry-carousel .stry-pane:nth-child(4) {
        grid-area: video4;
        transform: translateY(20vh)
    }
}

.section-detalles {
    background: none;
    overflow: hidden
}

@media (min-width: 768px) {
    .section-detalles {
        padding-bottom: 6rem
    }
}

.section-detalles .section-container {
    position: relative;
    z-index: 10;
    padding-top: 0vh
}

.section-detalles .section-content {
    margin: 0 auto;
    max-width: 720px
}

@media (max-width: 720px) {
    .section-detalles .section-content {
        margin: 0
    }
}

.section-detalles .spacer {
    height: 30vh
}

@media (max-width: 720px) {
    .section-detalles .spacer {
        height: 10vh
    }
}

.section-detalles .section-title,
.section-detalles .section-description {
    text-align: center
}

@media (max-width: 720px) {

    .section-detalles .section-title,
    .section-detalles .section-description {
        text-align: left;
        margin-top: 0
    }
}

.detalles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0
}

@media (min-width: 768px) {
    .detalles-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(0, 1fr)
    }
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 3rem;
    opacity: 0
}

.feature-item.is-visible {
    opacity: 1
}

@media (min-width: 768px) {
    .feature-item {
        grid-column: var(--grid-col);
        grid-row: var(--grid-row);
        margin-bottom: 0
    }
}

.feature-caption {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .75rem;
    margin: 1rem 0 0 .2rem;
    overflow: hidden
}

.feature-caption>img {
    margin-top: 5px;
    opacity: 0 !important
}

.feature-caption h4 {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    width: min(90%, 400px)
}

.image-placeholder {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: initial;
    aspect-ratio: 3/2;
    padding: 0;
    display: block
}

.detalles-feature-item-image {
    width: 100%;
    height: auto;
    display: block;
    position: absolute
}

.feature-item {
    position: relative
}

.section-video {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    min-height: 600px
}

@media (min-width: 720px) {
    .section-video {
        height: 0;
        padding-bottom: 56.25%
    }
}

.section-video .section-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    pointer-events: auto;
	padding: 10px
}

.section-video .section-container {
    position: relative;
    z-index: 10;
    height: 100vh;
    padding-top: 0vh;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

@media (max-width: 720px) {
    .section-video .section-container {
        padding-top: 10vh;
        display: block
    }
}

.section-video .section-description {
    max-width: 400px
}

.section-video .image-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%
}

.section-video .image-player {
    position: relative;
    width: 100%;
    height: 100%
}

.section-video .image-mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
    clip-path: inset(0% 0%)
}

.section-video .image-mouse-wrapper {
    width: 100%;
    height: 100%;
    position: relative
}

.section-video #image-element {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform-origin: center
}

.section-faq {
    position: relative;
    overflow: hidden
}

@media (max-width: 720px) {
    .section-faq {
        padding-bottom: 15vh
    }

    .section-faq:after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, #000, #0000);
        z-index: 1
    }
}

.section-faq .section-title {
    max-width: 410px
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 1080px;
    z-index: 1;
    background: url(faq/bg.jpg) no-repeat center top;
    background-size: cover;
    mask-image: linear-gradient(to bottom, transparent 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, transparent 100%);
    opacity: .75
}

@media (max-width: 720px) {
    .faq-bg {
        background: url(faq/bg-mobile.jpg) no-repeat right top;
        background-size: cover
    }
}

@media (max-width: 720px) {
    .faq-bg .section-title {
        max-width: 65vw
    }
}

@media (max-width: 720px) {
    .faq-bg .section-description {
        max-width: 55vw
    }
}

.faq-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5%;
    padding-top: 20vh
}

@media (max-width: 1024px) {
    .faq-container {
        padding-top: 10vh;
        flex-direction: column
    }
}

.faq-content {
    width: 100%;
    flex-basis: 30%
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-basis: 65%;
    width: 100%;
    margin-top: 3.25rem
}

.faq-accordion .faq-item {
    overflow: hidden;
    transition: all .3s ease;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.faq-accordion .faq-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width .6s cubic-bezier(.23, 1, .32, 1)
}

.faq-accordion .faq-item:hover:after {
    width: 100%
}

.faq-accordion .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: .75rem 0rem;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: 500;
    text-align: left;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    list-style: none;
    outline: none
}

.faq-accordion .faq-item .faq-question::-webkit-details-marker {
    display: none
}

.faq-accordion .faq-item .faq-question::marker {
    display: none
}

.faq-accordion .faq-item .faq-question .question-text {
    flex: 1;
    margin-right: 1rem;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold)
}

@media (max-width: 720px) {
    .faq-accordion .faq-item .faq-question .question-text {
        font-size: var(--font-size-lg)
    }
}

.faq-accordion .faq-item .faq-question .question-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.faq-accordion .faq-item .faq-question .question-icon:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1)
}

.faq-accordion .faq-item .faq-question .question-icon:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 20px;
    background: #fff;
    transform: rotate(0);
    transition: transform .3s cubic-bezier(.23, 1, .32, 1), opacity .3s cubic-bezier(.23, 1, .32, 1)
}

.faq-accordion .faq-item[data-open=true] .question-icon:after {
    transform: rotate(90deg);
    opacity: .5
}

.faq-accordion .faq-item[data-open=true] .question-icon:before {
    transform: rotate(180deg);
    opacity: .5
}

.faq-accordion .faq-item[data-open=true] .faq-answer {
    animation: slideDown .3s ease
}

.faq-accordion .faq-item .faq-answer {
    padding: 2rem 1.5rem;
    padding: 0 0 1rem;
    color: #fff;
    transition: all .3s ease
}

.faq-accordion .faq-item .faq-answer .answer-content p {
    margin: 0;
    padding: 1rem 0;
    font-size: var(--font-size-xl);
    opacity: .75
}

@media (max-width: 720px) {
    .faq-accordion .faq-item .faq-answer .answer-content p {
        font-size: var(--font-size-lg)
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

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

.section-contacto {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 15vh;
    min-height: 100vh;
    overflow: hidden
}

.section-contacto .section-container {
    position: relative;
    z-index: 2
}

.section-contacto .section-title {
    max-width: 600px;
    margin-top: 15vh
}

.contacto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(contact/bg.jpg) no-repeat center center;
    background-size: cover
}

@font-face {
    font-family: Porsche-Next-Reg;
    src: url(porschenext-regular-webfont.woff2) format("woff2"), url(porschenext-regular-webfont.woff) format("woff") !important;
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: Porsche-Next-Bold;
    src: url(porschenext-bold-webfont.woff2) format("woff2"), url(porschenext-bold-webfont.woff) format("woff") !important;
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: Porsche-Next-SemiBold;
    src: url(porschenext-semibold-webfont.woff2) format("woff2"), url(porschenext-semibold-webfont.woff) format("woff") !important;
    font-weight: 600;
    font-display: swap
}

.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 10px 20px #00000040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    transition: transform .2s ease, box-shadow .2s ease
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 28px #00000047
}

.whatsapp-float svg {
    width: 28px;
    height: 28px
}

@media (max-width: 720px) {
    .whatsapp-float {
        right: 1rem;
        bottom: 84px;
        width: 52px;
        height: 52px
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px
    }
}


  .features {
    max-width: 400px;
    font-family: Arial, sans-serif;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #fff;
  }

  .check {
    color: #22c55e; /* Կանաչ */
    font-size: 22px;
    font-weight: bold;
  }