@charset "UTF-8";

/* plugins/don-guto-octava-version/navigation/header-don-guto-v3/assets/css/index.css */
/* header-don-guto-v3 — thin wrapper that relies on active-nav-core for full CSS */
/* This file intentionally minimal: behavior CSS is provided by active-nav-core */

/* plugins/don-guto-octava-version/sections/hero-don-guto-v3/assets/css/index.css */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 0;
    color: #fff;
    background: var(--hero-background-image, url("/plugins/don-guto-octava-version/sections/hero-don-guto-v3/assets/img/hero-background.avif")) center 55% / cover no-repeat;
}

.hero__parallax-bg {
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: 0;
    right: 0;
    z-index: 0;
    background: var(--hero-background-image, url("/plugins/don-guto-octava-version/sections/hero-don-guto-v3/assets/img/hero-background.avif")) center / cover no-repeat;
    pointer-events: none;
}

@media (min-width: 901px) {
    .hero__parallax-bg { will-change: transform; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to right,
            rgba(131, 73, 27, 0.36) 0%,
            rgba(131, 73, 27, 0.18) 34%,
            rgba(91, 32, 41, 0.18) 58%,
            rgba(79, 24, 34, 0.34) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(255, 146, 72, 0.22) 0%,
            rgba(166, 74, 49, 0.12) 36%,
            rgba(104, 39, 35, 0.34) 78%,
            rgba(63, 24, 24, 0.58) 100%
        );
}

.hero > .container,
.hero__video-strip {
    position: relative;
    z-index: 2;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, var(--color-blue), var(--color-blue-mid), var(--color-agua)) 1;
}

.hero__title {
    margin: 0;
    font-family: var(--headlinefont, "Outfit", sans-serif);
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    animation: hero-slide-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__title-top {
    display: block;
    font-size: clamp(3.4rem, 7.5vw, 9rem);
    background: linear-gradient(135deg, #ffffff 0%, #ffe9ba 42%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title-bottom {
    display: block;
    font-size: clamp(1.8rem, 3.8vw, 4.5rem);
    color: #fff;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: -0.02em;
}

.hero__sub {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.82rem, 1.1vw, 0.96rem);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.03em;
    background: rgba(255, 248, 234, 0.16);
    border: 1px solid rgba(255, 154, 68, 0.24);
    border-left: 3px solid var(--color-secondary);
    padding: 8px 16px 8px 12px;
    border-radius: 0 6px 6px 0;
    backdrop-filter: blur(8px);
    animation: hero-fade-up 0.7s 0.35s ease both;
}

.hero__sub strong {
    color: var(--color-primary);
    font-weight: 800;
}

.hero__trust-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.80);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: hero-fade-up 0.7s 0.65s ease both;
}

.hero__trust-sep {
    color: rgba(244, 195, 90, 0.72);
    font-size: 0.6rem;
}

.hero .cta {
    animation: hero-fade-up 0.7s 0.5s ease both;
    justify-content: flex-start;
}

.hero__scroll-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 248, 234, 0.36);
    background: rgba(255, 248, 234, 0.16);
    backdrop-filter: blur(4px);
    text-decoration: none;
    animation: hero-fade-up 0.6s 0.85s ease both, scroll-bob 2.2s 1.5s ease-in-out infinite;
    transition: background 0.2s ease, border-color 0.2s ease;
    margin-top: 4px;
}

.hero__scroll-cue:hover {
    background: rgba(255, 154, 68, 0.18);
    border-color: rgba(255, 154, 68, 0.44);
}

.hero__video-strip {
    margin-top: auto;
    padding: 0 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__video-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__video-label i {
    color: var(--color-primary, #FF8C42);
}

.hero__video-frame {
    display: flex;
    justify-content: center;
    width: min(680px, calc(100vw - 40px));
    max-width: 100%;
}

.hero__video-frame .media-frame {
    width: 100%;
}

.hero .media-frame__inner {
    border: 1px solid rgba(255, 248, 234, 0.34);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 20px 60px rgba(184, 138, 90, 0.18),
        0 4px 16px rgba(30, 37, 41, 0.16);
    overflow: hidden;
    padding: 0;
}

.hero .hosted-video-thumbnail {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.hero .hosted-video-thumbnail.hero-video--ready::after {
    content: none;
}

.hero .hosted-video-thumbnail.hero-video--ready video {
    border-radius: 12px;
}

.hero-vid-play-mobile {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
}

.hero-vid-play-mobile svg {
    width: 72px;
    height: 72px;
    color: #fff;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
    opacity: 0.9;
}

.hero-vid-btn {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    color: #fff;
    opacity: 0;
    transition: background 0.2s ease, transform 0.15s ease, opacity 0.25s ease;
    padding: 0;
}

.hero-vid-btn:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: scale(1.1);
}

.hero-vid-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.hero-vid-unmute {
    top: 14px;
    left: 14px;
}

.hero-vid-fullscreen {
    top: 14px;
    right: 14px;
}

.hosted-video-thumbnail:hover .hero-vid-btn,
.hosted-video-thumbnail.hero-vid-visible .hero-vid-btn {
    opacity: 1;
}

@keyframes scroll-bob {
    0%,
    100% { transform: translateY(0); }
    50%  { transform: translateY(7px); }
}

@keyframes hero-slide-in {
    from { opacity: 0; transform: translateX(-48px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-border-grow {
    from { transform: scaleY(0); transform-origin: top; }
    to   { transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero__title-top {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
    }

    .hero__title-bottom {
        font-size: clamp(1.5rem, 6.5vw, 2.8rem);
    }

    .hero__inner {
        padding-left: 16px;
    }

    .hero .hosted-video-thumbnail {
        aspect-ratio: 16 / 9;
        width: 100%;
        height: auto;
    }

    .hero-vid-btn {
        width: 56px;
        height: 56px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.5);
    }

    .hero__scroll-cue {
        animation: scroll-bob 2.2s ease-in-out infinite;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Eliminar overflow extra del parallax bg — reduce área de pintura */
    .hero__parallax-bg {
        top: 0;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero__trust-row {
        gap: 6px 10px;
        font-size: 0.7rem;
    }

    .hero__scroll-cue {
        width: 38px;
        height: 38px;
    }
}

/* plugins/don-guto-octava-version/behavior/active-nav-core/assets/css/index.css */
/* ================================================================
   NAVBAR — fixed, glass on scroll, mobile burger
   ================================================================ */

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
}

/* Estado transparente encima del hero */
.site-nav__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    height: 68px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Al hacer scroll → glassmorphism con acento vino */
.site-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 10px 32px rgba(184, 138, 90, 0.10), 0 1px 0 rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(244, 195, 90, 0.30);
}

/* ── Logo ── */
.site-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-nav__logo img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s ease;
}
.site-nav__logo:hover img { opacity: 0.8; }
.site-nav.is-scrolled .site-nav__logo img {
    filter: brightness(0) invert(1);
}

.site-nav.is-scrolled .site-nav__logo {
    background: linear-gradient(135deg, #5b2328, #3a171c);
    box-shadow: 0 10px 24px rgba(58, 23, 28, 0.18);
    padding: 8px 14px;
}

.site-nav.is-scrolled .site-nav__burger span {
    background: var(--color-heading);
}

/* ── Links ── */
.site-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.site-nav__links a {
    display: block;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 245, 236, 0.82);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
}

.site-nav.is-scrolled .site-nav__links a {
    color: rgba(30, 37, 41, 0.78);
}

.site-nav.is-scrolled .site-nav__links a:hover,
.site-nav.is-scrolled .site-nav__links a.is-active {
    color: var(--color-primary);
    background: rgba(244, 195, 90, 0.16);
}

/* ── CTA button ── */
.site-nav__cta {
    flex-shrink: 0;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-primary), #ff8e53);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 107, 61, 0.22);
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-nav__cta:hover {
    background: linear-gradient(135deg, var(--color-secondary), #f7b955);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(244, 195, 90, 0.22);
}
.site-nav__cta:active { transform: translateY(0); }

/* ── Burger (mobile) ── */
.site-nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
}
.site-nav__burger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.site-nav__burger span:nth-child(2) { width: 75%; }

/* Burger activo → X */
.site-nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.site-nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.site-nav__drawer {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(244, 195, 90, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.site-nav__drawer.is-open {
    display: flex;
    max-height: 400px;
}
.site-nav__drawer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.site-nav__drawer-links a {
    display: block;
    padding: 12px 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(58, 36, 27, 0.84);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(244, 195, 90, 0.14);
    transition: color 0.2s ease;
}
.site-nav__drawer-links a:hover { color: var(--color-primary); }
.site-nav__cta--mobile {
    margin-top: 16px;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .site-nav__links   { display: none; }
    .site-nav__cta:not(.site-nav__cta--mobile) { display: none; }
    .site-nav__burger  { display: flex; }
    .site-nav__drawer  { display: none; }
    .site-nav__drawer.is-open { display: flex; }
}

@media (max-width: 480px) {
    .site-nav__inner { padding: 0 16px; height: 60px; }
    .site-nav__logo img { height: 28px; }
}

@media (max-width: 768px) {
    .site-nav.is-scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.96);
    }
    .site-nav__drawer {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.99);
    }
}

/* plugins/don-guto-octava-version/behavior/lead-modal-core/assets/css/index.css */
.lead-modal[hidden] {
    display: none;
}

.lead-modal [hidden] {
    display: none !important;
}

.lead-modal {
    inset: 0;
    overflow-y: auto;
    position: fixed;
    z-index: 2000;
}

.lead-modal__backdrop {
    background: rgba(14, 22, 24, 0.68);
    inset: 0;
    position: absolute;
}

.lead-modal__dialog {
    align-items: start;
    min-height: 100%;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 28px 20px;
    position: relative;
}

.lead-modal__panel {
    background: #fffdfa;
    border: 6px solid rgba(212, 225, 238, 0.9);
    border-radius: 12px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
    color: #1f2327;
    margin: auto 0;
    max-height: calc(100vh - 56px);
    max-width: 446px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px 20px 20px;
    position: relative;
    width: 100%;
}

.lead-modal__close {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(31, 37, 41, 0.12);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    color: #353b40;
    cursor: pointer;
    display: inline-flex;
    font-size: 1rem;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    z-index: 2;
}

.lead-modal__eyebrow {
    color: #4a4f53;
    font-family: var(--headlinefont);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.lead-modal__title {
    color: #15181b;
    font-family: var(--headlinefont);
    font-size: clamp(2.2rem, 4vw, 3.15rem);
    line-height: 0.88;
    margin: 0 0 10px;
    max-width: 10ch;
    text-transform: uppercase;
}

.lead-modal__description {
    color: rgba(59, 67, 72, 0.82);
    font-size: 0.98rem;
    line-height: 1.42;
    margin: 0 0 18px;
}

.lead-form {
    background: linear-gradient(180deg, rgba(248, 245, 239, 0.98), rgba(244, 240, 232, 0.98));
    border: 1px solid rgba(225, 211, 189, 0.68);
    border-radius: 22px;
    display: grid;
    gap: 14px;
    padding: 16px 16px 18px;
}

.lead-form__field {
    display: grid;
    gap: 8px;
}

.lead-form__label {
    color: #2f3134;
    font-family: var(--contentfont);
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-form__required {
    color: #ee6f48;
}

.lead-form__input {
    background: #ffffff;
    border: 1px solid rgba(195, 172, 139, 0.62);
    border-radius: 10px;
    color: #23282c;
    font-size: 1rem;
    min-height: 54px;
    outline: none;
    padding: 0 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form__input::placeholder {
    color: rgba(118, 109, 96, 0.7);
}

.lead-form__input:focus {
    border-color: rgba(198, 118, 72, 0.84);
    box-shadow: 0 0 0 3px rgba(255, 159, 88, 0.14);
}

.lead-form__submit,
.lead-modal__done {
    align-items: center;
    background: linear-gradient(135deg, #ff8b4a, #ffb843);
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    font: inherit;
    justify-content: center;
    margin-top: 2px;
    min-height: 56px;
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    box-shadow: 0 12px 24px rgba(255, 141, 74, 0.22);
}

.lead-form__submit-main {
    font-family: var(--headlinefont);
    font-size: 0.92rem;
    font-weight: 700;
}

.lead-form__submit-sub {
    font-size: 0.76rem;
    letter-spacing: 0.01em;
    opacity: 0.92;
}

.lead-form__privacy {
    align-items: center;
    color: rgba(72, 58, 43, 0.58);
    display: inline-flex;
    font-size: 0.76rem;
    gap: 6px;
    justify-content: center;
    margin: 0;
    text-transform: uppercase;
}

.lead-modal__panel--success {
    align-items: center;
    display: grid;
    justify-items: center;
    min-height: 340px;
    padding-block: 36px 28px;
    text-align: center;
}

.lead-modal__success-icon {
    color: #5aafa6;
    font-size: 3.2rem;
    margin-bottom: 6px;
}

body.has-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .lead-modal__dialog {
        align-items: start;
        padding: 12px;
    }

    .lead-modal__panel {
        border-width: 5px;
        border-radius: 12px;
        max-width: none;
        max-height: calc(100vh - 24px);
        padding: 16px 14px 16px;
    }

    .lead-modal__close {
        right: 6px;
        top: 6px;
    }

    .lead-modal__title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        max-width: 11ch;
    }

    .lead-modal__description {
        font-size: 0.92rem;
    }

    .lead-form {
        border-radius: 18px;
        padding: 14px;
    }
}

/* plugins/don-guto-octava-version/behavior/scroll-reveal-core/assets/css/index.css */
/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

@media (max-width: 768px) {
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .reveal-delay-1,
    .reveal-delay-2,
    .reveal-delay-3,
    .reveal-delay-4,
    .reveal-delay-5 { transition-delay: 0s; }
}

/* plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/css/index.css */
:root {
    --color-primary: #FF6B3D;
    --color-primary-soft: rgba(255, 107, 61, 0.14);
    --color-secondary: #F4C35A;
    --color-gold: #FFD98A;
    --color-blue: #1F6FA8;
    --color-blue-mid: #3290C7;
    --color-blue-soft: rgba(31, 111, 168, 0.10);
    --color-agua: #7CC8CC;
    --color-agua-soft: rgba(124, 200, 204, 0.12);
    --color-gris-dark: #1E2529;
    --color-gris-mid: #5D6A70;
    --color-gris-light: #DDE4E7;
    --color-surface: #FFFFFF;
    --color-surface-muted: #FBF7EE;
    --color-surface-strong: #F1E2BF;
    --color-background: #FFFDF8;
    --color-heading: #1E2529;
    --color-text: #334047;
    --color-text-muted: #67767D;
    --color-text-soft: #94A0A5;
    --color-border: rgba(184, 138, 90, 0.12);
    --color-border-strong: rgba(244, 195, 90, 0.34);
    --color-sand: #B88A5A;
    --color-vino: #1F5D68;
    --color-vino-soft: rgba(31, 93, 104, 0.10);
    --color-shadow: rgba(31, 111, 168, 0.08);
    --color-shadow-strong: rgba(31, 93, 104, 0.14);
    --gradient-warm: linear-gradient(135deg, #FF6B3D 0%, #FF9A44 44%, #F4C35A 100%);
    --gradient-cool: linear-gradient(135deg, #1F6FA8 0%, #3290C7 48%, #7CC8CC 100%);
    --radius-lg: 24px;
    --section-space: 88px;
    --container-width: 1180px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-background);
    color: var(--color-text);
    background-image:
        radial-gradient(circle at top left, rgba(244, 195, 90, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 214, 138, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 238, 0.96));
}

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

.site-section {
    padding: var(--section-space, 88px) 0;
}

.site-section--light {
    background: linear-gradient(180deg, var(--color-surface, #EDEDEB) 0, var(--color-surface-muted, #E8E6E3) 100%);
}

.section-header {
    margin: 0 auto 2.5rem;
    max-width: 920px;
    text-align: center;
}

.section-header__title {
    color: var(--color-heading);
    font-family: var(--headlinefont, "Outfit", sans-serif);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-header__title::after {
    display: none;
}

.section-header__accent {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-editorial {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 44px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
}

.section-editorial__num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(244, 195, 90, 0.66);
    flex-shrink: 0;
    letter-spacing: -0.02em;
    user-select: none;
}

.section-editorial__copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-editorial__label {
    margin: 0;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(244, 195, 90, 0.14);
    border-left: 3px solid var(--color-primary);
    padding: 4px 10px 4px 8px;
    border-radius: 0 4px 4px 0;
}

.section-editorial__title {
    margin: 0;
    font-family: var(--headlinefont, "Outfit", sans-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-heading);
}

.section-editorial__title em {
    font-style: normal;
    font-weight: 300;
    color: var(--color-text-muted);
}

.cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta__button {
    align-items: center;
    background: var(--gradient-warm);
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(255, 107, 61, 0.24), 0 4px 12px rgba(184, 138, 90, 0.10);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 280px;
    overflow: hidden;
    padding: 18px 32px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: cta-pulse-shadow 2.8s 1.2s ease-in-out infinite;
}

.cta__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-20deg);
    animation: cta-shimmer 3.2s ease-in-out infinite;
}

.cta__button:hover {
    background: var(--gradient-cool);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(244, 195, 90, 0.22), 0 6px 16px rgba(184, 138, 90, 0.14);
}

.cta__button:active {
    transform: translateY(0) scale(0.98);
}

.media-frame {
    width: 100%;
}

.media-frame__inner {
    border: 1px solid rgba(244, 195, 90, 0.28);
    border-radius: 16px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 14px 32px rgba(184, 138, 90, 0.10);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.media-frame__inner:hover {
    transform: scale(1.015);
    border-color: rgba(255, 107, 61, 0.28);
    box-shadow: 0 18px 42px rgba(184, 138, 90, 0.14);
}

.media-frame__thumbnail {
    position: relative;
}

.hosted-video-thumbnail {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hosted-video-thumbnail::after {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 24 24'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 35px;
    border-radius: 10px;
    content: "";
    display: block;
    height: 50px;
    inset: 0;
    margin: auto;
    opacity: 0.8;
    position: absolute;
    width: 75px;
}

.social-club__video-shell::after,
.projects__video-shell::after {
    display: none;
}

.thumbnail-video-u85PNrJdUV,
.thumbnail-video-RyuHdTABO8 {
    background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/hero-mobile.webp");
}

.thumbnail-video-V0Vf044UVW {
    background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/social-club-mobile.avif");
}

@media (min-width: 481px) and (max-width: 1024px) {
    .thumbnail-video-u85PNrJdUV,
    .thumbnail-video-RyuHdTABO8 {
        background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/hero-tablet.webp");
    }

    .thumbnail-video-V0Vf044UVW {
        background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/social-club-tablet.avif");
    }
}

@media (min-width: 1025px) {
    .thumbnail-video-u85PNrJdUV,
    .thumbnail-video-RyuHdTABO8 {
        background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/hero-desktop.webp");
    }

    .thumbnail-video-V0Vf044UVW {
        background-image: url("/plugins/don-guto-octava-version/behavior/shared-ui-don-guto-v3-core/assets/img/video-thumbnails/social-club-desktop.avif");
    }
}

.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    transition: padding-left 0.2s ease;
}

.check-list li::before {
    color: var(--color-primary);
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    opacity: 0.85;
    position: absolute;
    top: 0;
    transition: transform 0.2s ease;
}

.check-list li:hover::before {
    transform: scale(1.2);
}

.logo-marquee {
    overflow: hidden;
    padding: 8px 0;
}

.logo-marquee__track,
.logo-marquee__group {
    align-items: center;
    display: flex;
}

.logo-marquee__track {
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.logo-marquee__group {
    gap: 50px;
}

.logo-marquee__item {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
}

.logo-marquee__image {
    height: auto;
    max-width: 239px;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

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

@keyframes cta-shimmer {
    0% {
        left: -75%;
    }

    60%,
    100% {
        left: 130%;
    }
}

@keyframes cta-pulse-shadow {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(255, 107, 61, 0.24), 0 4px 12px rgba(184, 138, 90, 0.10);
    }
    50% {
        box-shadow:
            0 10px 28px rgba(255, 107, 61, 0.24),
            0 4px 12px rgba(184, 138, 90, 0.10),
            0 0 0 10px rgba(244, 195, 90, 0.12),
            0 0 0 22px rgba(244, 195, 90, 0.04);
    }
}

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

    .site-section {
        padding: 56px 0;
    }

    .section-header__title {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .cta__button {
        min-width: 0;
        width: 100%;
        padding: 14px 20px;
    }

    .logo-marquee__group {
        gap: 28px;
    }

    .logo-marquee__image {
        max-width: 180px;
    }

    .section-editorial {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .cta__button::after { animation: none; }
    .logo-marquee__track { animation: none; }
}

/* plugins/don-guto-octava-version/behavior/scroll-progress-core/assets/css/index.css */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D62300 0%, #FFB700 50%, #06B6D4 100%);
    z-index: 9999;
    transition: width 0.12s linear;
}

@media (max-width: 768px) {
    #scroll-progress { display: none; }
}

/* plugins/don-guto-octava-version/sections/benefits/assets/css/index.css */
.benefits .section-editorial {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 40px;
}

.benefits .section-editorial__num {
    justify-self: end;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 28px;
}

.benefits__media img {
    width: 100%;
    border-radius: 24px;
}

.benefits__video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.benefits__poster,
.benefits__video {
    display: block;
    width: 100%;
    border-radius: 24px;
}

.benefits__poster {
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.benefits__video {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    background: #000;
}

.benefits__video-shell.is-video-ready .benefits__poster {
    opacity: 0;
    visibility: hidden;
}

.benefits__video-shell.is-video-ready .benefits__video {
    opacity: 1;
    visibility: visible;
}

.benefits__card {
    padding: 28px;
    background: linear-gradient(180deg, var(--color-surface) 0, var(--color-surface-muted) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.benefits__card-title {
    margin-bottom: 18px;
    color: var(--color-heading);
    font-family: var(--headlinefont);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

@media (max-width: 900px) {
    .benefits .section-editorial {
        display: flex;
        gap: 24px;
    }

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

@media (max-width: 640px) {
    .benefits__card {
        padding: 22px;
    }
}

/* plugins/don-guto-octava-version/sections/social-club/assets/css/index.css */
.site-section.social-club-section {
    background: linear-gradient(160deg, #fffdf8 0%, #fbf5e9 58%, #fff9ef 100%);
    color: var(--color-text);
}

.site-section.social-club-section .section-editorial__num {
    -webkit-text-stroke: 1.5px rgba(244, 195, 90, 0.60);
}

.site-section.social-club-section .section-header__title,
.site-section.social-club-section .section-editorial__title,
.site-section.social-club-section .social-club__lead {
    color: var(--color-heading);
}

.site-section.social-club-section .section-editorial__title em {
    color: var(--color-text-muted);
}

.site-section.social-club-section .section-editorial__label {
    color: var(--color-primary);
    background: rgba(244, 195, 90, 0.14);
    border-left-color: var(--color-primary);
}

.site-section.social-club-section .section-editorial {
    border-bottom: 1px solid rgba(244, 195, 90, 0.20);
}

.site-section.social-club-section .social-club__content {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(244, 195, 90, 0.18);
    box-shadow: 0 16px 38px rgba(184, 138, 90, 0.08);
}

.social-club__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 28px;
}

.social-club__content {
    padding: 28px;
    background: linear-gradient(180deg, var(--color-surface) 0, #fff7ea 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.social-club__lead {
    margin-bottom: 18px;
    color: var(--color-heading);
    font-family: var(--headlinefont);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.social-club__media .media-frame {
    margin-top: 10px;
}

.social-club__media {
    display: flex;
    justify-content: center;
}

.social-club__media .media-frame {
    max-width: 360px;
}

.social-club__media .media-frame__inner {
    padding: 10px;
    border: 1px solid rgba(244, 195, 90, 0.22);
    box-shadow: 0 18px 42px rgba(184, 138, 90, 0.12);
}

.social-club__video-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
}

.social-club__video-poster {
    position: absolute;
    inset: 0;
    display: block;
    background: inherit;
    background-size: inherit;
    background-position: center;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.social-club__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    background: #000;
}

.social-club__video-shell.is-video-ready .social-club__video-poster {
    opacity: 0;
    visibility: hidden;
}

.social-club__video-shell.is-video-ready .social-club__video {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .social-club__grid {
        grid-template-columns: 1fr;
    }

    .social-club__media .media-frame {
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .social-club__content {
        padding: 22px;
    }
}

/* plugins/don-guto-octava-version/behavior/parallax-media-core/assets/css/index.css */
.parallax-wrap {
    overflow: hidden;
    border-radius: inherit;
}

.parallax-wrap img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    will-change: transform;
    margin-top: -10%;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
    .parallax-wrap img {
        height: 100%;
        margin-top: 0;
        will-change: auto;
    }
}

/* plugins/don-guto-octava-version/sections/bungalows-don-guto-v3/assets/css/index.css */
/* ================================================================
   BUNGALOWS — viewport-fit, sliding gallery, auto-play
   ================================================================ */

.bungalows {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfb 54%, var(--color-surface-muted) 100%);
    overflow: hidden;
}

.bung-header-row {
    display: flex;
    align-items: stretch;
    border-bottom: 2px solid var(--color-border);
    flex-shrink: 0;
}

.bung-section-label {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-right: 1px solid var(--color-border);
    gap: 2px;
}
.bung-section-label__kicker {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.bung-section-label__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-heading);
    font-family: var(--headlinefont);
    line-height: 1;
}

.bung-selector {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}
.bung-selector::-webkit-scrollbar { display: none; }

.bung-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 11px 20px 9px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    text-align: left;
    min-width: 90px;
}
.bung-tab:hover { background: rgba(86, 198, 217, 0.10); }
.bung-tab.is-active {
    border-bottom-color: var(--color-secondary);
    background: rgba(86, 198, 217, 0.08);
}

.bung-tab__label {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #bbb;
    transition: color 0.2s;
}
.bung-tab.is-active .bung-tab__label { color: var(--color-blue); }

.bung-tab__area {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    font-family: var(--headlinefont);
}
.bung-tab.is-active .bung-tab__area { color: #111; }

.bung-tab__bar {
    display: block;
    width: 52px;
    height: 2px;
    background: rgba(201, 165, 116, 0.2);
    border-radius: 99px;
    overflow: hidden;
}
.bung-tab__bar-fill {
    display: block;
    height: 100%;
    background: rgba(201, 165, 116, 0.4);
    border-radius: 99px;
    transition: background 0.25s;
}
.bung-tab.is-active .bung-tab__bar-fill { background: linear-gradient(90deg, var(--color-secondary), var(--color-primary)); }

.bung-panels {
    flex: 1;
    min-height: 0;
    position: relative;
}

.bung-panel {
    display: none;
    height: 100%;
}
.bung-panel.is-active {
    display: grid !important;
    grid-template-columns: 54% 46%;
    height: 100%;
    animation: bung-fade-in 0.35s ease forwards;
}
@keyframes bung-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.bung-gallery {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px 0 14px 20px;
    gap: 8px;
    min-height: 0;
}

.bung-gallery__main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: var(--color-heading);
    flex: 1;
    min-height: 0;
}

.bung-gallery__track {
    display: flex;
    height: 100%;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.bung-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bung-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.42);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.bung-gallery__arrow:hover { background: rgba(0,0,0,0.72); }
.bung-gallery__arrow--prev { left: 10px; }
.bung-gallery__arrow--next { right: 10px; }

.bung-gallery__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 0 2px 2px 0;
    pointer-events: none;
}

.bung-gallery__counter {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.4);
    padding: 2px 8px;
    border-radius: 99px;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.bung-gallery__current { color: var(--color-primary); }

.bung-gallery__thumbs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    flex-shrink: 0;
    padding-bottom: 2px;
}
.bung-gallery__thumbs::-webkit-scrollbar { display: none; }

.bung-gallery__thumb {
    flex: 0 0 56px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.48;
}
.bung-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.bung-gallery__thumb.is-active { border-color: var(--color-primary); opacity: 1; }
.bung-gallery__thumb:hover { opacity: 0.8; }

.bung-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 28px 14px 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    min-height: 0;
}

.bung-info__header { display: flex; flex-direction: column; gap: 3px; }
.bung-info__type {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}
.bung-info__title {
    font-family: var(--headlinefont);
    font-size: clamp(1.15rem, 1.7vw, 1.7rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-heading);
    margin: 0;
}
.bung-info__model { color: var(--color-primary); margin-right: 4px; }

.bung-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 0;
    flex-shrink: 0;
}
.bung-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 6px;
    border-right: 1px solid var(--color-border);
}
.bung-stat:last-child { border-right: none; }

.bung-stat__value {
    font-family: var(--headlinefont);
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    font-weight: 900;
    line-height: 1;
    color: var(--color-heading);
}
.bung-stat__unit {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: 1px;
    align-self: flex-end;
    margin-bottom: 2px;
}
.bung-stat__label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
    margin: 2px 0 0;
}

.bung-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}
.bung-detail {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.bung-detail i {
    width: 16px;
    color: var(--color-secondary);
    font-size: 0.78rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.bung-detail div { display: flex; flex-direction: column; gap: 1px; }
.bung-detail strong {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
    font-weight: 700;
}
.bung-detail span {
    font-size: 0.78rem;
    color: var(--color-text);
    line-height: 1.35;
}

.bung-info .cta { justify-content: flex-start; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 960px) {
    .bungalows {
        height: auto;
        min-height: 100svh;
        overflow: visible;
    }
    .bung-panel.is-active {
        display: flex !important;
        flex-direction: column;
        height: auto;
    }
    .bung-gallery {
        padding: 12px 16px 0;
        height: 52vw;
        min-height: 200px;
        max-height: 340px;
    }
    .bung-info { overflow-y: visible; padding: 16px; }
    .bung-header-row { flex-direction: column; }
    .bung-section-label { border-right: none; border-bottom: 1px solid var(--color-border); flex-direction: row; gap: 12px; align-items: center; padding: 10px 16px; }
}

@media (max-width: 640px) {
    .bungalows { padding-top: 56px; }
    .bung-tab { min-width: 76px; padding: 10px 12px 8px; }
    .bung-tab__area { font-size: 0.88rem; }
    .bung-stats { grid-template-columns: repeat(2, 1fr); gap: 6px; border: none; padding: 8px 0; }
    .bung-stat { border-right: none; border-bottom: 1px solid var(--color-border); padding-bottom: 8px; }
    .bung-stat:nth-child(3), .bung-stat:nth-child(4) { border-bottom: none; }
    .bung-details { grid-template-columns: 1fr; gap: 8px; }
    .bung-info .cta { justify-content: center; }
    .bung-gallery { height: 56vw; }
}

@media (max-width: 768px) {
    .bung-gallery__track { will-change: auto; }
}

@media (max-width: 768px) {
    .bung-gallery__arrow,
    .bung-gallery__counter {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* plugins/don-guto-octava-version/behavior/hero-atmosphere-core/assets/css/index.css */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.85), rgba(255, 215, 0, 0));
    opacity: 0.75;
    animation: hero-particle-float 12s linear infinite;
}

.hero-particles span:nth-child(1) { left: 8%; top: 12%; animation-duration: 13s; transform: scale(0.9); }
.hero-particles span:nth-child(2) { left: 18%; top: 68%; animation-duration: 16s; transform: scale(1.4); }
.hero-particles span:nth-child(3) { left: 36%; top: 22%; animation-duration: 15s; transform: scale(0.75); }
.hero-particles span:nth-child(4) { left: 55%; top: 75%; animation-duration: 18s; transform: scale(1.15); }
.hero-particles span:nth-child(5) { left: 68%; top: 28%; animation-duration: 14s; transform: scale(1.3); }
.hero-particles span:nth-child(6) { left: 82%; top: 62%; animation-duration: 17s; transform: scale(0.9); }
.hero-particles span:nth-child(7) { left: 92%; top: 18%; animation-duration: 19s; transform: scale(1.5); }

@keyframes hero-particle-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.2;
    }

    20% {
        opacity: 0.8;
    }

    50% {
        transform: translate3d(-12px, -26px, 0) scale(1.2);
        opacity: 0.45;
    }

    100% {
        transform: translate3d(10px, -52px, 0) scale(0.9);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce), (max-width: 768px) {
    .hero-particles {
        display: none;
    }
}

/* plugins/don-guto-octava-version/sections/location/assets/css/index.css */
.location__map-shell {
    overflow: hidden;
    padding: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f3fbfb 100%);
    border: 1px solid rgba(86, 198, 217, 0.26);
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(31, 111, 168, 0.12);
}

.location__map {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 16px;
}

/* plugins/don-guto-octava-version/sections/business-backing/assets/css/index.css */
.backing {
    background: linear-gradient(180deg, #f6fbfb 0%, var(--color-surface) 56%, var(--color-surface-muted) 100%);
    padding: 56px 0;
}

.backing .section-header {
    margin-bottom: 18px;
}

.backing .section-header__title {
    font-size: clamp(0.72rem, 1vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-text-soft);
    text-transform: uppercase;
}

.backing .section-header__accent {
    color: var(--color-secondary);
}

.logo-marquee {
    overflow: hidden;
    padding: 12px 0;
}

.logo-marquee__track,
.logo-marquee__group {
    display: flex;
    align-items: center;
}

.logo-marquee__track {
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.logo-marquee__group {
    gap: 24px;
}

.logo-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    min-width: 138px;
    padding-inline: 6px;
}

.logo-marquee__image {
    opacity: 0.62;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    height: 70px;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease, filter 0.4s ease, transform 0.35s ease;
}

.logo-marquee__item:hover .logo-marquee__image {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* plugins/don-guto-octava-version/sections/projects/assets/css/index.css */
.projects {
    background: linear-gradient(180deg, var(--color-surface) 0%, #eef8f8 100%);
}

.projects__header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 52px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}
.projects__header-num {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(5rem, 9vw, 9rem);
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(86, 198, 217, 0.62);
    flex-shrink: 0;
    letter-spacing: -0.02em;
    user-select: none;
}
.projects__header-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.projects__header-label {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-blue);
}
.projects__header-title {
    margin: 0;
    font-family: var(--headlinefont);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-heading);
}
.projects__header-title em {
    font-style: normal;
    font-weight: 300;
    color: var(--color-text-muted);
}

.projects__stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 56px;
    border-top: 1px solid rgba(86, 198, 217, 0.28);
    border-bottom: 1px solid rgba(86, 198, 217, 0.28);
    padding: 32px 0;
}

.stat-card {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 24px !important;
    background: transparent !important;
    border: none !important;
    border-right: 1px solid rgba(86, 198, 217, 0.18) !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    gap: 4px;
}
.stat-card:last-child {
    border-right: none !important;
}
.stat-card__icon {
    display: none;
}
.stat-card__value {
    font-size: clamp(2.8rem, 4vw, 4rem) !important;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-blue)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0;
}
.stat-card__label {
    font-size: 0.72rem !important;
    font-weight: 600;
    color: var(--color-text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}
.stat-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.projects__feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 48px;
}

.projects__feature-media .media-frame__inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 111, 168, 0.14);
    border: 1px solid rgba(86, 198, 217, 0.22);
}

.projects__feature-media {
    display: flex;
    justify-content: center;
}

.projects__feature-media .media-frame {
    max-width: 560px;
}

.projects__video-shell {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 14px;
}

.projects__video-poster {
    position: absolute;
    inset: 0;
    display: block;
    background: inherit;
    background-size: inherit;
    background-position: center;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.projects__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    background: #000;
}

.projects__video-shell.is-video-ready .projects__video-poster {
    opacity: 0;
    visibility: hidden;
}

.projects__video-shell.is-video-ready .projects__video {
    opacity: 1;
    visibility: visible;
}

.projects__feature-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.projects__feature-image--video-poster {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
}

.projects__feature-image--video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.projects__feature-content {
    display: grid;
    gap: 18px;
}

.projects__feature-logo-wrap {
    display: flex;
    justify-content: center;
}

.projects__feature-logo {
    display: block;
    max-width: 460px;
    width: 100%;
    height: auto;
}

.projects__feature-title,
.projects__feature-subtitle {
    margin: 0;
    color: var(--color-heading);
    font-family: var(--headlinefont);
}

.projects__feature-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.projects__feature-subtitle {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    text-transform: uppercase;
}

.projects__feature-brand {
    color: var(--color-primary);
}

.projects__feature-description {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

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

    .projects__feature-media .media-frame {
        max-width: 560px;
    }

    .projects__stats {
        flex-wrap: wrap;
    }
    .stat-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(86, 198, 217, 0.18) !important;
        min-width: 40%;
    }
}

@media (max-width: 640px) {
    .projects__feature-content {
        padding: 22px;
    }
    .stat-card {
        min-width: 100%;
    }
}

/* plugins/don-guto-octava-version/sections/footer-don-guto-v3/assets/css/index.css */
.footer {
    background: linear-gradient(180deg, #45262C 0%, #2B1A1F 100%);
    padding: 48px 0;
    position: relative;
    color: #fff;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), var(--color-sand), transparent);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
}

.footer__legal {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(86, 198, 217, 0.30);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.footer__legal:hover {
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* plugins/don-guto-octava-version/widgets/floating-whatsapp-don-guto-v3/assets/css/index.css */
#float-wa {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 1500;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    text-decoration: none;
    animation: wa-bounce 3.5s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.22);
    animation: none;
}

#float-wa svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

#float-wa::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    animation: wa-ring 2.4s ease-out infinite;
}

.wa-tooltip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.wa-tooltip::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-width: 0;
    border-left-color: #111;
}

#float-wa:hover .wa-tooltip {
    opacity: 1;
}

@keyframes wa-bounce {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes wa-ring {
    0% {
        opacity: 1;
        transform: scale(1);
    }

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

@media (max-width: 768px) {
    #float-wa {
        bottom: 16px;
        right: 14px;
        width: 54px;
        height: 54px;
        animation: none;
    }

    #float-wa::before {
        animation: none;
    }

    #float-wa svg {
        width: 26px;
        height: 26px;
    }
}
