:root {
    --color-bg: #07111d;
    --color-surface: #0e1827;
    --color-surface-soft: #162133;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-text: #f7f9fc;
    --color-muted: #adbbcf;
    --color-body: #1a2638;
    --color-body-muted: #60738d;
    --color-primary: #16c45f;
    --color-primary-strong: #0fa553;
    --color-accent: #f2c14b;
    --color-white-soft: #f5f6fa;
    --shadow-soft: 0 18px 40px rgba(2, 12, 30, 0.1);
    --shadow-strong: 0 24px 60px rgba(2, 10, 28, 0.34);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --transition-base: 0.35s ease;
    --header-offset: 156px;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-heading: "Outfit", sans-serif;
}

@keyframes heroMobileBobFinal {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 8px;
    }
}

@media (max-width: 575.98px) {
    .carousel-item.active .hero-copy {
        translate: 0 0 !important;
        animation: heroMobileBobFinal 4.8s ease-in-out infinite !important;
        will-change: translate;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(22, 196, 95, 0.05), transparent 20%),
        linear-gradient(180deg, #f7f9fc 0%, #edf3fb 100%);
    color: var(--color-body);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
    overflow: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    padding: 0.92rem 1.65rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(22, 196, 95, 0.26);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    box-shadow: 0 20px 38px rgba(22, 196, 95, 0.32);
}

.btn-dark-ghost {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    background: rgba(12, 18, 29, 0.58);
    backdrop-filter: blur(12px);
}

.btn-dark-ghost:hover,
.btn-dark-ghost:focus {
    color: #fff;
    background: rgba(12, 18, 29, 0.78);
    border-color: rgba(255, 255, 255, 0.26);
}

.btn-nav-secondary {
    background: #eff1f6;
    color: #202a3a;
    box-shadow: none;
}

.btn-nav-secondary:hover,
.btn-nav-secondary:focus {
    color: #202a3a;
    background: #e4e8ef;
}

.section-space {
    padding: 110px 0;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 56px;
}

.section-heading h2,
.coverage-section h2,
.final-cta-box h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.section-heading p,
.coverage-text,
.final-cta-box p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-body-muted);
    margin-bottom: 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.76rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.section-tag-dark {
    color: #0f7340;
    background: rgba(22, 196, 95, 0.08);
    border-color: rgba(22, 196, 95, 0.12);
    backdrop-filter: none;
}

.about-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 196, 95, 0.08), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.about-copy {
    max-width: 42rem;
    margin-top: 1.15rem;
}

.about-copy h2 {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.95rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1b2638;
    margin-bottom: 1rem;
    max-width: 14ch;
}

.about-copy p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--color-body-muted);
    margin-bottom: 0;
    text-align: justify;
    text-wrap: pretty;
}

.about-points {
    display: grid;
    gap: 1rem;
    margin: 2rem 0 2.1rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: #223047;
}

.about-point i {
    flex: 0 0 auto;
    color: #10a354;
    font-size: 1.08rem;
    margin-top: 0.12rem;
}

.about-point span {
    line-height: 1.75;
}

.about-stats {
    max-width: 42rem;
}

.about-stat-card {
    height: 100%;
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(14, 24, 39, 0.08);
    box-shadow: 0 16px 36px rgba(15, 29, 52, 0.08);
}

.about-stat-card strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1b2638;
    margin-bottom: 0.38rem;
}

.about-stat-card span {
    display: block;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-body-muted);
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 580px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 34px 70px rgba(10, 26, 46, 0.16);
}

.about-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.06) 0%, rgba(8, 16, 28, 0.22) 36%, rgba(8, 16, 28, 0.64) 100%),
        linear-gradient(135deg, rgba(22, 196, 95, 0.1), transparent 44%);
}

.about-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-floating {
    position: absolute;
    left: 24px;
    right: 24px;
    z-index: 1;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(9, 20, 33, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    color: #fff;
    backdrop-filter: blur(10px);
}

.about-floating-top {
    top: 24px;
    max-width: 290px;
}

.about-floating-bottom {
    bottom: 24px;
    max-width: 320px;
}

.about-floating-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.about-floating strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.06rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.site-header {
    z-index: 1035;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(22, 196, 95, 0.08), transparent 24%),
        linear-gradient(180deg, #07111d 0%, #0b1624 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader__inner {
    width: min(420px, calc(100% - 32px));
}

.page-loader__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    justify-content: center;
    text-align: center;
}

.page-loader__logo {
    display: block;
    width: min(100%, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
}

.page-loader__copy {
    display: grid;
    gap: 0.35rem;
}

.page-loader__brand strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.page-loader__brand small {
    display: block;
    margin-top: 0.35rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(247, 249, 252, 0.66);
    font-size: 0.76rem;
    font-weight: 700;
}

.page-loader__line {
    position: relative;
    margin-top: 1.5rem;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    width: min(100%, 340px);
    margin-inline: auto;
}

.page-loader__line span {
    position: absolute;
    inset: 0;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(135deg, #18ca63, #0ea853);
    box-shadow: 0 10px 24px rgba(22, 196, 95, 0.32);
    animation: loaderRun 1.15s ease-in-out infinite;
}

@media (max-width: 575.98px) {
    .page-loader__inner {
        width: min(100%, calc(100% - 28px));
    }

    .page-loader__brand {
        gap: 0.8rem;
    }

    .page-loader__logo {
        width: min(100%, 265px);
    }

    .page-loader__brand strong {
        font-size: 1.6rem;
    }

    .page-loader__brand small {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .page-loader__line {
        width: min(100%, 250px);
        margin-top: 1.2rem;
    }
}

.site-header.is-scrolled .site-navbar {
    box-shadow: 0 12px 30px rgba(4, 16, 34, 0.12);
}

.site-header.is-scrolled .site-topbar {
    box-shadow: 0 10px 24px rgba(2, 11, 24, 0.18);
}

.site-navbar {
    padding: 0.95rem 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
}

.site-topbar {
    background: #111827;
    color: rgba(247, 249, 252, 0.84);
    font-size: 0.86rem;
    font-weight: 600;
}

.site-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    min-height: 42px;
}

.topbar-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.topbar-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 28px;
}

.topbar-chip span {
    display: block;
}

.topbar-note {
    justify-content: flex-end;
}

.topbar-note span {
    display: inline-flex;
    align-items: center;
}

.topbar-note span + span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 0 0.55rem 0 0.02rem;
    background: rgba(255, 255, 255, 0.42);
}

.topbar-icon-inline {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.14));
}

.topbar-emoji {
    display: inline-block;
    font-size: 0.92rem;
    line-height: 1;
    transform: translateY(-1px);
}

.topbar-icon-phone {
    color: #ff5c89;
}

.topbar-icon-time {
    color: #ffb14a;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
}

.navbar-brand {
    color: #182233;
}

.footer-brand {
    color: #fff;
    margin-bottom: 1.35rem;
    width: fit-content;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    isolation: isolate;
}

.footer-brand::before {
    content: "";
    position: absolute;
    left: 114px;
    top: 50%;
    width: 235px;
    height: 62px;
    transform: translateY(-50%);
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.26) 0%,
        rgba(255, 255, 255, 0.14) 46%,
        rgba(255, 255, 255, 0) 78%
    );
    z-index: -1;
    pointer-events: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.brand-logo-navbar {
    height: 58px;
    width: auto;
    max-width: min(100%, 250px);
}

.brand-logo-footer {
    height: 82px;
    width: auto;
    max-width: min(100%, 360px);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.22));
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: linear-gradient(145deg, #19ca63, #12a854);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(22, 196, 95, 0.22);
}

.navbar-nav {
    gap: 0.75rem;
}

.nav-link {
    color: #3e4a5d;
    font-weight: 700;
    padding: 0.5rem 0.95rem !important;
}

.nav-link:hover,
.nav-link:focus {
    color: #0fbd5b;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.navbar-cta {
    white-space: nowrap;
}

.site-navbar .navbar-toggler {
    color: #202a3a;
}

.site-navbar .navbar-toggler-icon {
    filter: brightness(0) saturate(100%);
}

.hero-section {
    position: relative;
    margin-top: var(--header-offset);
    overflow: hidden;
    background: #07111d;
}

.hero-carousel,
.hero-slide {
    min-height: calc(100svh - var(--header-offset));
    height: calc(100svh - var(--header-offset));
}

.hero-slide {
    position: relative;
}

.hero-slide-bg,
.hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1.12);
    transition: transform 0.9s ease;
    will-change: transform;
}

.carousel-item.active .hero-slide-bg {
    animation: heroZoom 10s ease-in-out infinite alternate;
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(3, 10, 18, 0.88) 0%, rgba(3, 10, 18, 0.72) 34%, rgba(3, 10, 18, 0.38) 58%, rgba(3, 10, 18, 0.72) 100%),
        radial-gradient(circle at left center, rgba(22, 196, 95, 0.24), transparent 30%),
        linear-gradient(180deg, rgba(6, 12, 22, 0.12) 0%, rgba(6, 12, 22, 0.34) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(1.35rem, 3vh, 2.45rem);
    min-height: calc(100svh - var(--header-offset));
    height: calc(100svh - var(--header-offset));
    padding-top: clamp(80px, 10vh, 120px);
    padding-bottom: clamp(62px, 8vh, 94px);
}

.hero-copy {
    max-width: 820px;
    min-width: 0;
    color: var(--color-text);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    color: rgba(247, 249, 252, 0.94);
    background: rgba(20, 24, 34, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.hero-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(22, 196, 95, 0.16);
}

.hero-title {
    margin: 1.65rem 0 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.45rem, 4.7vw, 4.2rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.05em;
    max-width: 760px;
}

.hero-subtitle {
    margin: 0.8rem 0 0.4rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: rgba(247, 249, 252, 0.82);
}

.hero-text {
    max-width: 580px;
    font-size: 0.95rem;
    line-height: 1.62;
    color: rgba(247, 249, 252, 0.82);
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.05rem;
}

.hero-actions .btn {
    padding: 0.82rem 1.45rem;
}

.hero-action-primary {
    min-width: 220px;
}

.hero-action-secondary {
    min-width: 190px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(247, 249, 252, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    align-self: stretch;
    margin-top: 0;
    max-width: 760px;
}

.hero-feature-card {
    padding: 0.82rem 0.92rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(26, 31, 42, 0.62), rgba(26, 31, 42, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
    color: rgba(247, 249, 252, 0.86);
}

.hero-feature-card strong {
    display: block;
    margin-bottom: 0.28rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
}

.hero-feature-card span {
    display: block;
    line-height: 1.38;
    font-size: 0.81rem;
}

.hero-carousel-controls {
    pointer-events: none;
}

.hero-arrow {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(19, 24, 34, 0.44);
    color: #fff;
    display: grid;
    place-items: center;
    backdrop-filter: blur(12px);
    transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
    z-index: 3;
}

.hero-arrow:hover,
.hero-arrow:focus {
    transform: translateY(-50%) scale(1.04);
    background: rgba(19, 24, 34, 0.74);
    border-color: rgba(255, 255, 255, 0.32);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

.hero-arrow i {
    font-size: 1.1rem;
}

.hero-indicators {
    pointer-events: auto;
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    z-index: 3;
}

.hero-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.hero-indicators .active {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(22, 196, 95, 0.16);
}

.service-card,
.benefit-card,
.process-card,
.testimonial-card,
.coverage-card {
    position: relative;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card {
    min-height: 420px;
    padding: 0;
    overflow: hidden;
    background: #091320;
    border: 1px solid rgba(14, 24, 39, 0.08);
    box-shadow: 0 20px 42px rgba(7, 17, 29, 0.12);
    isolation: isolate;
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 0.75s ease, opacity 0.45s ease;
}

.service-card::before {
    background-image: var(--service-image);
    background-size: cover;
    background-position: var(--service-position, center center);
    filter: brightness(1.12) saturate(1.04);
    transform: scale(1.02);
    z-index: -2;
}

.service-card::after {
    background:
        linear-gradient(180deg, rgba(8, 16, 28, 0.08) 0%, rgba(8, 16, 28, 0.18) 34%, rgba(8, 16, 28, 0.72) 100%),
        linear-gradient(0deg, rgba(6, 12, 22, 0.22), rgba(6, 12, 22, 0.22));
    z-index: -1;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 1.9rem 1.9rem 1.7rem;
    color: #fff;
}

.service-card:hover,
.benefit-card:hover,
.process-card:hover,
.testimonial-card:hover,
.coverage-card:hover {
    transform: translateY(-7px);
}

.service-card:hover::before {
    transform: scale(1.08);
}

.service-icon,
.benefit-icon {
    width: 62px;
    height: 62px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 1.35rem;
    font-size: 1.45rem;
}

.service-icon {
    background: linear-gradient(145deg, rgba(22, 196, 95, 0.12), rgba(14, 24, 39, 0.06));
    color: #0f8345;
}

.benefit-icon {
    background: linear-gradient(145deg, rgba(242, 193, 75, 0.18), rgba(255, 255, 255, 0.06));
    color: var(--color-accent);
}

.service-card h3,
.benefit-card h3,
.process-card h3,
.coverage-card h3,
.testimonial-author strong,
.site-footer h3 {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-card h3,
.benefit-card h3,
.process-card h3,
.coverage-card h3 {
    font-size: 1.48rem;
    margin-bottom: 0.8rem;
}

.service-card p,
.benefit-card p,
.process-card p,
.coverage-card p,
.testimonial-card p,
.footer-copy,
.footer-links li,
.footer-links a {
    color: var(--color-body-muted);
    line-height: 1.8;
}

.service-card h3,
.service-card p {
    color: #fff;
}

.service-card h3 {
    max-width: 14ch;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.service-card p {
    max-width: 26ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.brands-section {
    padding-top: 78px;
    background: #fff;
}

.brands-heading {
    margin-bottom: 2.4rem;
}

.brands-heading h2 {
    max-width: 18ch;
    margin-inline: auto;
}

.brands-heading-accent {
    color: var(--color-heading);
}

.brands-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.5rem 0;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2.5rem;
    animation: brandsMarquee 28s linear infinite;
}

.brands-marquee:hover .brands-track,
.brands-marquee:focus-within .brands-track {
    animation-play-state: paused;
}

.brand-logo-item {
    flex: 0 0 auto;
    width: 260px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-logo-image {
    max-width: 100%;
    max-height: 98px;
    object-fit: contain;
    filter: none;
}

.section-dark {
    color: var(--color-text);
    background:
        radial-gradient(circle at left top, rgba(22, 196, 95, 0.08), transparent 22%),
        linear-gradient(180deg, #0a1421 0%, #08111c 100%);
}

.section-dark .section-heading p,
.section-dark .benefit-card p {
    color: rgba(247, 249, 252, 0.72);
}

.benefit-card {
    height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.process-card {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff, #eef3fb);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 24, 39, 0.06);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    height: 62px;
    border-radius: 18px;
    margin-bottom: 1.4rem;
    background: linear-gradient(145deg, #19ca63, #109b50);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(22, 196, 95, 0.24);
}

.coverage-section {
    background: linear-gradient(180deg, #f5f8fd 0%, #eef4fb 100%);
}

.coverage-points {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.coverage-point {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
}

.coverage-point i {
    color: var(--color-primary);
    margin-top: 0.15rem;
}

.coverage-card {
    padding: 2.35rem;
    background: linear-gradient(180deg, #0f1827, #07111d);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
}

.coverage-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(242, 193, 75, 0.12);
}

.coverage-card p,
.coverage-highlight span {
    color: rgba(247, 249, 252, 0.76);
}

.coverage-badge {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--color-accent);
    background: rgba(242, 193, 75, 0.08);
    border: 1px solid rgba(242, 193, 75, 0.18);
}

.coverage-card-top h3 {
    margin: 1rem 0 0.9rem;
    font-size: 2rem;
}

.coverage-highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.4rem 0 1.8rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-highlight i {
    color: var(--color-accent);
    margin-top: 0.15rem;
}

.location-faq-section {
    background:
        radial-gradient(circle at 12% 12%, rgba(242, 193, 75, 0.1), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
}

.location-panel,
.faq-panel {
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(14, 24, 39, 0.06);
    box-shadow: 0 24px 52px rgba(8, 17, 29, 0.08);
    overflow: hidden;
}

.faq-panel {
    height: 100%;
}

.location-panel__intro,
.faq-panel__intro {
    padding: 2rem 2rem 1.45rem;
}

.location-panel__tag,
.faq-panel__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(47, 114, 199, 0.12);
    color: #2358a8;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.location-panel h2,
.faq-panel h2 {
    margin: 0 0 1rem;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #15213a;
}

.location-panel__intro p,
.faq-panel__intro p {
    margin: 0;
    color: #61748f;
    font-size: 1.03rem;
    line-height: 1.75;
}

.location-panel__map {
    position: relative;
    min-height: 500px;
    border-top: 1px solid rgba(14, 24, 39, 0.06);
    overflow: hidden;
}

.location-panel__map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    display: block;
}

.location-panel__map-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #24324a;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(8, 17, 29, 0.22);
    max-width: calc(100% - 2rem);
    line-height: 1.35;
}

.location-panel__map-chip i {
    color: #ff5e5e;
}

.faq-accordion {
    padding: 0 1.2rem 1.3rem;
}

.faq-accordion .accordion-item {
    border: 0;
    border-top: 1px solid rgba(20, 33, 58, 0.08);
    border-radius: 0;
    background: transparent;
}

.faq-accordion .accordion-item:first-child {
    border-top: 0;
}

.faq-accordion .accordion-button {
    padding: 1.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.4;
    color: #182338;
    background: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #182338;
    background: transparent;
}

.faq-accordion .accordion-button::after {
    content: "+";
    width: 2.3rem;
    height: 2.3rem;
    flex: 0 0 2.3rem;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: none;
    background: rgba(47, 114, 199, 0.12);
    color: #2358a8;
    font-size: 1.5rem;
    font-weight: 700;
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "-";
    background: #2f72c7;
    color: #fff;
}

.faq-accordion .accordion-body {
    padding: 0 0 1.45rem;
    color: #60738d;
    font-size: 1rem;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .location-panel__map,
    .location-panel__map iframe {
        min-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .location-panel,
    .faq-panel {
        border-radius: 26px;
    }

    .location-panel__intro,
    .faq-panel__intro {
        padding: 1.45rem 1.35rem 1.15rem;
    }

    .location-panel h2,
    .faq-panel h2 {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    .location-panel__intro p,
    .faq-panel__intro p {
        font-size: 0.98rem;
    }

    .location-panel__map,
    .location-panel__map iframe {
        min-height: 320px;
    }

    .location-panel__map-chip {
        left: 0.85rem;
        bottom: 0.9rem;
        padding: 0.68rem 0.92rem;
        font-size: 0.9rem;
    }

    .faq-accordion {
        padding: 0 1rem 1.05rem;
    }

    .faq-accordion .accordion-button {
        padding: 1.15rem 0;
        font-size: 1.02rem;
    }

    .faq-accordion .accordion-button::after {
        width: 2rem;
        height: 2rem;
        flex-basis: 2rem;
        font-size: 1.25rem;
    }

    .faq-accordion .accordion-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .testimonial-copy {
        font-size: 0.97rem;
        line-height: 1.78;
    }

    .testimonial-author {
        margin-top: 1.25rem;
    }

    .testimonial-author strong {
        font-size: 1.1rem;
    }

    .testimonials-track {
        gap: 1rem;
        animation-duration: 28s;
    }

    .testimonial-slide {
        flex-basis: min(88vw, 350px);
    }
}

.testimonials-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(56, 138, 255, 0.07), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    min-height: 100%;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
    border: 1px solid rgba(14, 24, 39, 0.06);
    box-shadow: 0 18px 38px rgba(8, 17, 29, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.35rem;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

.testimonial-copy {
    flex: 1 1 auto;
    margin: 0;
    color: #5f7390;
    font-size: 1rem;
    line-height: 1.85;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 24, 39, 0.08);
    margin-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #15213a;
    font-family: "Outfit", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.testimonial-author span {
    display: block;
    color: var(--color-body-muted);
    font-size: 0.94rem;
    margin-top: 0.35rem;
}

.testimonials-marquee {
    overflow: hidden;
    padding: 0.35rem 0 0.6rem;
}

.testimonials-track {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: testimonialMarquee 34s linear infinite;
    will-change: transform;
}

.testimonials-marquee:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-slide {
    flex: 0 0 clamp(300px, 31vw, 510px);
}

.final-cta-section {
    padding-top: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.final-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: 2.4rem;
    padding: 2.6rem 2.8rem;
    min-height: 295px;
    border-radius: 34px;
    overflow: hidden;
    color: #fff;
    box-shadow: var(--shadow-strong);
    isolation: isolate;
    --cta-shift-x: 0px;
    --cta-shift-y: 0px;
}

.final-cta-box::before,
.final-cta-box::after {
    content: "";
    position: absolute;
    inset: 0;
}

.final-cta-box::before {
    background-image: url("../img/final-cta-keys-bg.png");
    background-size: cover;
    background-position: center 72%;
    background-repeat: no-repeat;
    transform: translate(var(--cta-shift-x), var(--cta-shift-y)) scale(1.06);
    filter: brightness(0.88) saturate(0.96);
    transition: transform 0.35s ease-out;
    animation: finalCtaDrift 18s ease-in-out infinite alternate;
    z-index: 0;
}

.final-cta-box::after {
    background:
        linear-gradient(90deg, rgba(7, 18, 32, 0.86) 0%, rgba(10, 23, 39, 0.75) 38%, rgba(9, 18, 31, 0.52) 70%, rgba(7, 15, 26, 0.62) 100%),
        radial-gradient(circle at 14% 30%, rgba(22, 196, 95, 0.18), transparent 28%),
        radial-gradient(circle at 86% 26%, rgba(56, 138, 255, 0.16), transparent 22%);
    z-index: 1;
}

.final-cta-content,
.final-cta-meta {
    position: relative;
    z-index: 2;
}

.final-cta-content {
    max-width: 34rem;
}

.final-cta-content h2 {
    margin: 0 0 0.8rem;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #fff;
}

.final-cta-content p {
    margin: 0;
    max-width: 32rem;
    color: rgba(247, 249, 252, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
}

.final-cta-button {
    margin-top: 1.8rem;
    padding-inline: 1.75rem;
    min-height: 60px;
    font-size: 1.05rem;
    box-shadow: 0 16px 34px rgba(22, 196, 95, 0.3);
}

.final-cta-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-self: center;
}

.final-cta-meta-card {
    padding: 1.45rem 1.5rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(42, 57, 79, 0.82), rgba(31, 44, 63, 0.58));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 34px rgba(7, 18, 32, 0.2);
    backdrop-filter: blur(10px);
}

.final-cta-meta-card span {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta-meta-card strong {
    display: block;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.site-footer {
    position: relative;
    padding: 90px 0 26px;
    background: #050c15;
    color: var(--color-text);
    overflow: hidden;
    isolation: isolate;
}

.site-footer::before,
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
}

.site-footer::before {
    background-image: url("../img/footer-workshop-bg.png");
    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;
    opacity: 0.86;
    filter: brightness(1.06) contrast(1.12) saturate(0.92);
    transform: scale(1.08);
    animation: footerDrift 22s ease-in-out infinite alternate;
    z-index: 0;
}

.site-footer::after {
    background:
        linear-gradient(180deg, rgba(3, 8, 15, 0.54) 0%, rgba(3, 8, 15, 0.64) 34%, rgba(3, 8, 15, 0.76) 100%),
        radial-gradient(circle at 15% 30%, rgba(22, 196, 95, 0.16), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(35, 142, 255, 0.09), transparent 24%);
    z-index: 1;
}

.site-footer > .container {
    position: relative;
    z-index: 2;
}

.site-footer h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer .footer-copy,
.site-footer .footer-links li,
.site-footer .footer-links a,
.site-footer .footer-bottom {
    color: rgba(247, 249, 252, 0.72);
    overflow-wrap: anywhere;
}

.footer-copy {
    max-width: 31rem;
    margin-top: 0;
}

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

.footer-links li {
    margin-bottom: 0.68rem;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.72rem;
}

.contact-icon {
    display: inline-grid;
    place-items: center;
    min-width: 1.3rem;
    font-size: 1.18rem;
    line-height: 1;
}

.contact-icon-whatsapp {
    color: #25d366;
    text-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}

.contact-icon-mail {
    color: #59a8ff;
    text-shadow: 0 0 12px rgba(89, 168, 255, 0.28);
}

.contact-icon-location {
    color: #ff8a3d;
    text-shadow: 0 0 12px rgba(255, 138, 61, 0.26);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: calc(env(safe-area-inset-right, 0px) + 18px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
    z-index: 1040;
    width: 68px;
    height: 68px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #1ecf69, #0fa958);
    box-shadow: 0 18px 35px rgba(20, 162, 89, 0.28);
    animation: whatsappFloat 2.8s ease-in-out infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-float::before {
    border: 1px solid rgba(30, 207, 105, 0.55);
    animation: whatsappPulse 2.2s ease-out infinite;
}

.whatsapp-float::after {
    border: 1px solid rgba(30, 207, 105, 0.28);
    animation: whatsappPulse 2.2s ease-out 0.85s infinite;
}

.whatsapp-float i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    color: #fff;
    transform: scale(1.06);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-cascade-card {
    --reveal-delay: 0ms;
    --reveal-direction: 1;
    will-change: transform, opacity, filter;
    transform-origin: center center;
}

.reveal-cascade-card[data-reveal] {
    opacity: 0;
    filter: blur(10px);
    transition:
        opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.92s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.82s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-cascade-card[data-reveal][data-cascade-variant="lift"] {
    transform: translate3d(0, 42px, 0) scale(0.92);
}

.reveal-cascade-card[data-reveal][data-cascade-variant="slide"] {
    transform: translate3d(calc(34px * var(--reveal-direction, 1)), 26px, 0) scale(0.94);
}

.reveal-cascade-card[data-reveal][data-cascade-variant="pop"] {
    transform: translate3d(0, 20px, 0) scale(0.82);
}

.reveal-cascade-card[data-reveal][data-cascade-variant="tilt"] {
    transform: translate3d(calc(16px * var(--reveal-direction, 1)), 34px, 0) rotate(calc(4.5deg * var(--reveal-direction, 1))) scale(0.93);
}

.reveal-cascade-card[data-reveal].revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal-cascade-card[data-reveal].revealed .service-card-content {
    animation: cascadeContentRise 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.reveal-cascade-card[data-reveal].revealed .advantage-icon {
    animation: cascadeIconLift 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.reveal-cascade-card[data-reveal].revealed .process-stage__content {
    animation: cascadeProcessCopy 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 90ms);
}

.reveal-cascade-card[data-reveal].revealed .process-stage__visual {
    animation: cascadeProcessVisual 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 140ms);
}

.reveal-cascade-card[data-reveal].revealed .process-stage__badge {
    animation: cascadeProcessBadge 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

.reveal-cascade-card[data-reveal].revealed .process-stage__ghost {
    animation: cascadeProcessGhost 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

@keyframes cascadeContentRise {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    65% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }

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

@keyframes cascadeIconLift {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.84) rotate(-10deg);
    }

    68% {
        opacity: 1;
        transform: translateY(-2px) scale(1.06) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes cascadeProcessCopy {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

    62% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }

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

@keyframes cascadeProcessVisual {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(0.86) rotate(calc(-5deg * var(--reveal-direction, 1)));
    }

    68% {
        opacity: 1;
        transform: translateY(-3px) scale(1.03) rotate(calc(1.5deg * var(--reveal-direction, 1)));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

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

    70% {
        opacity: 1;
        transform: translateY(1px) scale(1.08);
    }

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

@keyframes cascadeProcessGhost {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px) scale(0.88);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes heroZoom {
    0% {
        transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1.16);
    }

    100% {
        transform: translate3d(calc(var(--hero-shift-x, 0px) + 8px), calc(var(--hero-shift-y, 0px) - 6px), 0) scale(1.08);
    }
}

@keyframes loaderRun {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(360%);
    }
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

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

@keyframes whatsappFloat {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes finalCtaDrift {
    0% {
        transform: translate(calc(var(--cta-shift-x) - 10px), calc(var(--cta-shift-y) - 6px)) scale(1.06);
    }

    100% {
        transform: translate(calc(var(--cta-shift-x) + 10px), calc(var(--cta-shift-y) + 6px)) scale(1.1);
    }
}

@keyframes testimonialMarquee {
    0% {
        transform: translateX(0);
    }

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

@keyframes footerDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-14px, -8px, 0) scale(1.14);
    }
}

@keyframes brandsMarquee {
    0% {
        transform: translateX(0);
    }

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

@media (max-height: 920px) and (min-width: 992px) {
    .hero-slide-content {
        padding-top: 28px;
        padding-bottom: 72px;
        gap: 1rem;
    }

    .hero-pill {
        padding: 0.72rem 1rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 4.2vw, 3.7rem);
        max-width: 700px;
    }

    .hero-subtitle {
        margin-top: 0.68rem;
        font-size: 1.1rem;
    }

    .hero-text {
        max-width: 520px;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 0.9rem;
    }

    .hero-badges {
        margin-top: 0.72rem;
        gap: 0.55rem;
    }

    .hero-badge {
        padding: 0.52rem 0.8rem;
        font-size: 0.79rem;
    }

    .hero-feature-grid {
        max-width: 700px;
        gap: 0.65rem;
    }

    .hero-feature-card {
        padding: 0.74rem 0.84rem;
    }

    .hero-feature-card strong {
        font-size: 0.92rem;
    }

    .hero-feature-card span {
        font-size: 0.77rem;
    }
}

@media (max-height: 780px) and (min-width: 992px) {
    .hero-badges {
        display: none;
    }

    .hero-indicators {
        bottom: 14px;
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(2.9rem, 7vw, 4.8rem);
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .site-topbar {
        display: none;
    }

    .site-navbar {
        padding: 0.9rem 0;
    }

    .site-navbar .container {
        position: relative;
        align-items: center;
    }

    .navbar-brand {
        margin-inline: 0 auto;
        text-align: left;
        max-width: calc(100% - 76px);
    }

    .site-navbar .navbar-toggler {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: auto;
        z-index: 30;
    }

    .navbar-collapse {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        z-index: 25;
        margin-top: 0;
        padding: 1.2rem;
        border-radius: 24px;
        background: #ffffff;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        text-align: center;
        max-height: calc(100dvh - 92px);
        overflow: auto;
    }

    .navbar-nav {
        margin-bottom: 1rem;
        align-items: center;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-actions .btn {
        width: 100%;
        min-height: 50px;
    }

    .about-visual {
        min-height: 460px;
    }

    .brand-logo-item {
        width: 230px;
        height: 104px;
    }

    .hero-slide-content {
        padding-top: 42px;
        padding-bottom: 82px;
        text-align: center;
    }

    .hero-pill {
        max-width: 100%;
        justify-content: center;
        margin-inline: auto;
    }

    .hero-actions {
        gap: 0.8rem;
        justify-content: center;
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-inline: auto;
        width: min(100%, 640px);
    }

    .hero-text {
        max-width: 620px;
        margin-inline: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-arrow {
        width: 52px;
        height: 52px;
    }

    .section-space {
        padding: 92px 0;
    }

    .final-cta-box {
        grid-template-columns: 1fr;
        padding: 2.2rem;
        min-height: auto;
    }

    .final-cta-content {
        max-width: none;
    }

    .final-cta-meta {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand strong,
    .navbar-brand small {
        text-align: left;
    }

    .navbar-collapse {
        text-align: center;
        left: 10px;
        right: 10px;
        padding: 1rem;
        max-height: calc(100dvh - 84px);
    }

    .hero-carousel,
    .hero-slide,
    .hero-slide-content {
        min-height: auto;
        height: auto;
    }

    .hero-slide-content {
        padding-top: 34px;
        padding-bottom: 86px;
        align-items: center;
    }

    .hero-slide-content .row {
        justify-content: center;
        width: 100%;
    }

    .hero-copy {
        max-width: min(100%, 360px);
        margin-inline: auto;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10vw, 3rem);
        line-height: 0.9;
        max-width: 100%;
        margin-inline: auto;
        text-wrap: balance;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-inline: auto;
    }

    .hero-text {
        max-width: 300px;
        font-size: 0.9rem;
        line-height: 1.58;
        margin-inline: auto;
    }

    .hero-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 1.7rem;
        max-width: 320px;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-arrow {
        display: grid;
        top: 56%;
        width: 42px;
        height: 42px;
        transform: translateY(-50%);
    }

    .hero-arrow:hover,
    .hero-arrow:focus {
        transform: translateY(-50%) scale(1.04);
    }

    .hero-arrow-prev {
        left: 10px;
    }

    .hero-arrow-next {
        right: 10px;
    }

    .hero-indicators {
        bottom: 26px;
    }

    .section-heading {
        margin-bottom: 2.5rem;
    }

    .section-space {
        padding: 78px 0;
    }

    .coverage-card,
    .benefit-card,
    .process-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .service-card {
        min-height: 370px;
        padding: 0;
    }

    .service-card-content {
        min-height: 370px;
        padding: 1.45rem 1.45rem 1.35rem;
    }

    .about-copy,
    .about-stats {
        max-width: 100%;
    }

    .about-visual {
        min-height: 400px;
        border-radius: 28px;
    }

    .about-floating {
        left: 16px;
        right: 16px;
        padding: 0.92rem 0.95rem;
        border-radius: 18px;
    }

    .about-floating-top,
    .about-floating-bottom {
        max-width: none;
    }

    .brands-track {
        gap: 1.6rem;
        animation-duration: 24s;
    }

    .brand-logo-item {
        width: 200px;
        height: 94px;
        padding: 0.45rem 0.9rem;
    }

    .brand-logo-image {
        max-height: 76px;
    }

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

    .whatsapp-float {
        right: calc(env(safe-area-inset-right, 0px) + 14px);
        bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
        width: 60px;
        height: 60px;
    }

    .whatsapp-float i {
        font-size: 1.75rem;
    }

    .final-cta-section {
        padding-top: 18px;
    }

    .final-cta-box {
        gap: 1.4rem;
        padding: 1.6rem;
        border-radius: 28px;
    }

    .final-cta-content h2 {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .final-cta-content p {
        font-size: 0.96rem;
    }

    .final-cta-meta {
        grid-template-columns: 1fr;
    }

    .final-cta-meta-card {
        padding: 1.15rem 1.1rem;
        border-radius: 20px;
    }

    .final-cta-meta-card strong {
        font-size: 1.15rem;
    }

    .site-footer {
        padding: 72px 0 22px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        max-width: calc(100% - 64px);
    }

    .brand-logo-navbar {
        height: 44px;
        width: auto;
        max-width: min(100%, 200px);
    }

    .brand-logo-footer {
        height: 66px;
        width: auto;
        max-width: min(100%, 285px);
    }

    .about-copy h2 {
        font-size: 2rem;
        max-width: 100%;
    }

    .about-points {
        gap: 0.82rem;
        margin: 1.6rem 0 1.7rem;
    }

    .about-visual {
        min-height: 340px;
        border-radius: 24px;
    }

    .about-floating {
        left: 14px;
        right: 14px;
        padding: 0.82rem 0.9rem;
    }

    .about-floating strong {
        font-size: 0.95rem;
    }

    .about-stat-card {
        text-align: center;
    }

    .brands-heading {
        margin-bottom: 1.9rem;
    }

    .brands-track {
        gap: 1.1rem;
        animation-duration: 20s;
    }

    .brand-logo-item {
        width: 172px;
        height: 86px;
        padding: 0.4rem 0.75rem;
    }

    .brand-logo-image {
        max-height: 64px;
    }

    .footer-brand::before {
        left: 92px;
        width: 180px;
        height: 50px;
    }

    .site-navbar .navbar-toggler {
        right: 8px;
    }

    .navbar-collapse {
        left: 8px;
        right: 8px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }

    .hero-actions .btn,
    .final-cta-box .btn {
        width: 100%;
        justify-content: center;
    }

    .final-cta-box {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .final-cta-button {
        margin-top: 1.25rem;
        min-height: 54px;
    }

    .hero-actions .btn {
        max-width: 260px;
        min-width: 0;
        padding: 0.68rem 1.1rem;
        font-size: 0.92rem;
        border-radius: 22px;
    }

    .hero-action-primary {
        max-width: 250px;
    }

    .hero-action-secondary {
        max-width: 240px;
        justify-content: center;
    }

    .hero-badges {
        gap: 0.55rem;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-feature-card {
        text-align: center;
    }

    .hero-pill {
        padding: 0.72rem 0.92rem;
        font-size: 0.76rem;
    }

    .hero-badges {
        display: none;
    }

    .hero-feature-grid {
        gap: 0.7rem;
        max-width: 280px;
    }

    .hero-feature-card {
        min-height: 116px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0.78rem 0.72rem;
    }

    .hero-feature-card:nth-child(3) {
        display: none;
    }

    .hero-arrow {
        top: 56%;
        width: 38px;
        height: 38px;
    }

    .hero-arrow-prev {
        left: 6px;
    }

    .hero-arrow-next {
        right: 6px;
    }

    .hero-arrow i {
        font-size: 0.92rem;
    }

    .location-panel,
    .faq-panel {
        border-radius: 22px;
    }

    .location-panel__intro,
    .faq-panel__intro {
        padding: 1.25rem 1rem 1rem;
    }

    .location-panel__map,
    .location-panel__map iframe {
        min-height: 280px;
    }

    .location-panel__map-chip {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        justify-content: center;
        max-width: none;
        font-size: 0.86rem;
    }

    .faq-accordion {
        padding: 0 0.9rem 0.95rem;
    }

    .faq-accordion .accordion-button {
        font-size: 0.96rem;
        line-height: 1.45;
    }

    .faq-accordion .accordion-body {
        font-size: 0.92rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        border-radius: 20px;
    }

    .testimonial-slide {
        flex-basis: min(86vw, 310px);
    }

    .testimonials-track {
        gap: 0.9rem;
        animation-duration: 26s;
    }

    .final-cta-button {
        width: min(100%, 320px);
    }

    .final-cta-meta-card strong {
        font-size: 1rem;
    }

    .site-footer {
        text-align: center;
    }

    .footer-brand {
        margin-inline: auto;
    }

    .footer-copy {
        max-width: none;
    }

    .footer-contact li {
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }

    .site-footer .btn {
        width: min(100%, 320px);
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        text-align: left;
    }

    .site-footer h3,
    .site-footer .footer-copy,
    .site-footer .footer-links,
    .site-footer .footer-links li,
    .site-footer .footer-links a {
        text-align: left;
    }

    .footer-brand {
        margin-inline: 0;
    }

    .footer-contact li {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .site-footer .btn {
        display: inline-flex;
        margin-left: 0;
        margin-right: 0;
    }
}

.benefits-showcase {
    background: #fff;
}

.benefits-heading {
    max-width: 860px;
    margin: 0 auto 2.8rem;
}

.benefits-heading h2 {
    max-width: 11ch;
    margin-inline: auto;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.35rem, 4.8vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.benefits-heading p {
    max-width: 760px;
    margin: 1rem auto 0;
    color: #5f7394;
    font-size: 1.1rem;
    line-height: 1.85;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.advantage-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    padding: 1.85rem 1.2rem 1.5rem;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 35, 58, 0.07);
    box-shadow: 0 18px 36px rgba(16, 29, 47, 0.08);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(16, 29, 47, 0.12);
    border-color: rgba(22, 196, 95, 0.16);
}

.advantage-icon {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: 24px;
    font-size: 2rem;
}

.advantage-card:nth-child(1) .advantage-icon {
    color: #0f9f58;
    background: rgba(22, 196, 95, 0.12);
}

.advantage-card:nth-child(2) .advantage-icon {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.12);
}

.advantage-card:nth-child(3) .advantage-icon {
    color: #f97316;
    background: rgba(249, 115, 22, 0.12);
}

.advantage-card:nth-child(4) .advantage-icon {
    color: #0891b2;
    background: rgba(8, 145, 178, 0.12);
}

.advantage-card:nth-child(5) .advantage-icon {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.12);
}

.advantage-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.32rem;
    color: var(--color-heading);
}

.advantage-card p {
    margin: 0;
    color: #5f7394;
    line-height: 1.8;
}

.benefits-actions {
    margin-top: 2.2rem;
    text-align: center;
}

.benefits-actions .btn {
    min-width: 320px;
    border-radius: 999px;
    padding-inline: 1.8rem;
}

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

@media (max-width: 991.98px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .benefits-heading {
        margin-bottom: 2rem;
    }

    .benefits-heading h2 {
        max-width: 100%;
        font-size: clamp(2.25rem, 10vw, 3.6rem);
    }

    .benefits-heading p {
        font-size: 1rem;
    }

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

    .advantage-card {
        padding: 1.6rem 1.15rem 1.3rem;
    }

    .benefits-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

.process-showcase {
    background:
        radial-gradient(circle at top center, rgba(31, 64, 122, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.process-heading {
    max-width: 940px;
    margin: 0 auto 3.5rem;
}

.process-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #163f73;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.process-heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.9rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.04em;
    color: #09111f;
}

.process-heading p {
    max-width: 760px;
    margin: 1rem auto 0;
    color: #5c708d;
    font-size: 1.12rem;
    line-height: 1.85;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.process-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    isolation: isolate;
    transition: transform var(--transition-base);
}

.process-stage--reverse {
    padding-top: 1.5rem;
}

.process-stage:hover {
    transform: translateY(-4px);
}

.process-stage__content {
    position: relative;
    z-index: 2;
}

.process-stage--reverse .process-stage__content {
    order: 2;
    padding-top: 0.45rem;
}

.process-stage__title {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.process-stage__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 36px;
    height: 36px;
    margin-top: 0.2rem;
    border-radius: 7px;
    background: linear-gradient(145deg, #5b98e6, #2d6fbb);
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    box-shadow: 0 10px 22px rgba(35, 88, 168, 0.16);
    z-index: 3;
}

.process-stage__content h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #09111f;
}

.process-stage__content p {
    margin: 0;
    color: #5c708d;
    line-height: 1.75;
    font-size: 1.03rem;
}

.process-stage__visual {
    position: relative;
    width: min(190px, 100%);
    margin-inline: auto;
    margin-top: 1.9rem;
    transition: transform var(--transition-base);
}

.process-stage__visual-card {
    position: relative;
    height: 186px;
    border-radius: 0 0 44px 44px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    box-shadow: 0 16px 34px rgba(16, 29, 47, 0.08);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
    z-index: 2;
}

.process-stage--reverse .process-stage__visual {
    order: 1;
    margin-bottom: 0.45rem;
}

.process-stage__visual-line {
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, #174b88, #2f72c7);
}

.process-stage__visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transform: translateX(-135%);
    animation: processSheen 7s ease-in-out infinite;
    pointer-events: none;
}

.process-stage__icon {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -42%);
    font-size: 4.55rem;
    color: #0f2038;
    line-height: 1;
    transition: transform var(--transition-base), color var(--transition-base);
}

.process-stage__ghost {
    position: absolute;
    z-index: 1;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(15, 32, 56, 0.08);
    font-family: var(--font-heading);
    font-size: clamp(4rem, 4.4vw, 4.9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.process-stage:nth-child(4) .process-stage__ghost {
    color: rgba(34, 83, 145, 0.14);
}

.process-stage:hover .process-stage__visual {
    transform: translateY(-8px);
}

.process-stage:hover .process-stage__visual-card {
    box-shadow: 0 22px 40px rgba(18, 43, 78, 0.14);
}

.process-stage:hover .process-stage__icon {
    transform: translate(-50%, -46%) scale(1.04);
    color: #174b88;
}

@media (max-width: 1199.98px) {
    .process-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.2rem 1.8rem;
    }

    .process-stage--reverse {
        padding-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .process-heading {
        margin-bottom: 2.4rem;
    }

    .process-kicker {
        font-size: 1.2rem;
    }

    .process-heading h2 {
        font-size: clamp(3rem, 16vw, 4.8rem);
    }

    .process-heading p {
        font-size: 1rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .process-stage,
    .process-stage--reverse {
        padding-top: 0;
    }

    .process-stage--reverse .process-stage__content,
    .process-stage--reverse .process-stage__visual {
        order: initial;
    }

    .process-stage__visual {
        width: 170px;
        margin-top: 1.75rem;
    }

    .process-stage__visual-card {
        height: 170px;
    }

    .process-stage__title {
        gap: 0.65rem;
        margin-bottom: 0.75rem;
    }

    .process-stage__badge {
        min-width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .process-stage__icon {
        font-size: 4rem;
    }

    .process-stage__content h3 {
        font-size: 2rem;
    }

    .process-stage__ghost {
        top: -3.3rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4.6rem;
    }
}

@keyframes processSheen {
    0%,
    100% {
        transform: translateX(-135%);
    }
    45%,
    55% {
        transform: translateX(135%);
    }
}

.works-section {
    isolation: isolate;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    scroll-margin-top: var(--header-offset);
    min-height: 690px;
    padding: 78px 0 68px;
    color: var(--color-text);
    background: #07111d;
}

.works-section__bg {
    position: absolute;
    inset: -8%;
    z-index: 0;
    background-image: var(--works-bg-image);
    background-size: cover;
    background-position: center center;
    opacity: 0.9;
    filter: blur(1.2px) saturate(1.14) contrast(1.04);
    transform: scale(1.08);
    animation: worksBackgroundDrift 19s ease-in-out infinite alternate;
    will-change: transform, background-position;
}

.works-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 12%, rgba(22, 196, 95, 0.11), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(47, 114, 199, 0.2), transparent 34%),
        linear-gradient(120deg, rgba(3, 10, 23, 0.78) 0%, rgba(8, 23, 45, 0.68) 43%, rgba(11, 42, 80, 0.56) 100%);
    background-size: auto;
    -webkit-mask-image: none;
    mask-image: none;
    backdrop-filter: blur(0.3px);
    pointer-events: none;
}

.works-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 17, 29, 0.68) 0%, rgba(7, 17, 29, 0.08) 24%, rgba(7, 17, 29, 0.12) 72%, rgba(7, 17, 29, 0.78) 100%),
        linear-gradient(90deg, rgba(7, 17, 29, 0.5), transparent 42%, rgba(7, 17, 29, 0.38));
    pointer-events: none;
}

.works-section .container {
    position: relative;
    z-index: 2;
    width: min(1520px, calc(100% - clamp(16px, 3vw, 42px)));
    max-width: 100%;
}

.works-heading {
    margin-bottom: 1.25rem;
}

.works-heading[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.84s ease,
        transform 0.88s cubic-bezier(0.22, 1, 0.36, 1);
}

.works-heading[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.works-heading .section-tag {
    color: #dff8eb;
    background: rgba(22, 196, 95, 0.16);
    border-color: rgba(22, 196, 95, 0.32);
    box-shadow: 0 12px 32px rgba(22, 196, 95, 0.13);
}

.works-heading h2 {
    color: #ffffff;
    font-size: clamp(2.6rem, 4.3vw, 3.8rem);
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.works-heading p {
    max-width: 760px;
    color: rgba(232, 239, 250, 0.82);
}

.works-carousel {
    position: relative;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 clamp(20px, 2vw, 36px);
    overflow: hidden;
}

.works-carousel.trabajos-swiper {
    overflow: hidden;
    touch-action: pan-y;
}

.works-carousel[data-reveal] {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    transition:
        opacity 0.85s ease,
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 140ms;
}

.works-carousel[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.works-carousel__viewport {
    margin: 0;
    padding: 2.45rem 0 2.25rem;
    overflow: visible;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: none;
    scrollbar-width: none;
    cursor: grab;
    align-items: center;
}

.works-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.works-carousel__viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.works-carousel__viewport.is-dragging .works-card {
    pointer-events: none;
}

.works-carousel__track {
    --works-gap: clamp(0.9rem, 1.35vw, 1.25rem);
    display: flex;
    align-items: center;
    gap: var(--works-gap);
}

.works-carousel__slide {
    flex: 0 0 clamp(340px, 30vw, 430px);
    min-height: clamp(450px, 38vw, 560px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0.38;
    filter: blur(1.8px) brightness(0.64) saturate(0.8);
    transform: scale(0.86);
    transform-origin: center center;
    z-index: 1;
    will-change: transform, opacity, filter;
}

.trabajos-swiper .works-carousel__slide {
    flex: 0 0 auto;
    height: auto;
}

.works-carousel__slide.is-near,
.works-carousel__slide.swiper-slide-prev,
.works-carousel__slide.swiper-slide-next {
    opacity: 0.78;
    filter: blur(0.4px) brightness(0.76) saturate(0.9);
    transform: scale(0.93);
    z-index: 2;
}

.works-carousel__slide.is-active,
.works-carousel__slide.swiper-slide-active {
    opacity: 1;
    filter: none;
    transform: scale(1.14);
    z-index: 4;
}

.works-carousel[data-reveal].revealed .works-carousel__slide {
    animation: worksSlideEntrance 0.78s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(180ms + (var(--works-slide-index, 0) * 70ms));
}

.works-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: clamp(450px, 38vw, 560px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    background: rgba(8, 19, 35, 0.72);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
    transition:
        opacity 0.55s ease,
        filter 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow var(--transition-base),
        border-color var(--transition-base);
}

.works-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(4, 12, 24, 0.02) 0%, rgba(4, 12, 24, 0.1) 38%, rgba(4, 12, 24, 0.86) 100%);
    pointer-events: none;
}

.works-card::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: auto 1.35rem 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 196, 95, 0.58), transparent);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.works-card__media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    overflow: hidden;
    background: #081323;
}

.works-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 12%, rgba(22, 196, 95, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(4, 12, 24, 0) 18%, rgba(4, 12, 24, 0.22) 50%, rgba(4, 12, 24, 0.82) 100%);
    z-index: 1;
    pointer-events: none;
}

.works-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter var(--transition-base);
}

.works-card__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 44%;
    justify-content: flex-end;
    padding: clamp(1.22rem, 1.85vw, 1.7rem);
}

.works-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 0.88rem;
    padding: 0.46rem 0.72rem;
    border-radius: 999px;
    background: rgba(22, 196, 95, 0.18);
    color: #dff8eb;
    border: 1px solid rgba(22, 196, 95, 0.28);
    backdrop-filter: blur(12px);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.works-card h3 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    font-size: clamp(1.38rem, 1.85vw, 1.82rem);
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.works-card p {
    margin: 0.72rem 0 0;
    max-width: 38rem;
    color: rgba(232, 239, 250, 0.82);
    font-size: 0.96rem;
    line-height: 1.58;
    text-align: left;
    text-align-last: auto;
}

.works-carousel__slide:not(.is-active):not(.swiper-slide-active) .works-card p {
    color: rgba(232, 239, 250, 0.72);
}

.works-carousel__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(7, 17, 29, 0.72);
    color: #ffffff;
    font-size: 1.12rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}

.works-carousel__nav--prev {
    left: 0;
}

.works-carousel__nav--next {
    right: 0;
}

.works-carousel__nav:hover,
.works-carousel__nav:focus-visible {
    border-color: rgba(22, 196, 95, 0.5);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(22, 196, 95, 0.24);
    transform: translateY(-50%) scale(1.04);
}

.works-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.works-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    min-height: 34px;
    width: auto;
    position: static;
}

.works-carousel__dot,
.works-carousel__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    opacity: 1;
    margin: 0 !important;
    cursor: pointer;
    transition: width var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
}

.works-carousel__dot.is-active,
.works-carousel__dots .swiper-pagination-bullet-active {
    width: 30px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
    box-shadow: 0 8px 20px rgba(22, 196, 95, 0.24);
}

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

.works-cta__button {
    min-width: 236px;
}

@media (hover: hover) and (pointer: fine) {
    .works-carousel__slide:hover {
        transform: scale(0.86);
    }

    .works-carousel__slide.is-near:hover,
    .works-carousel__slide.swiper-slide-prev:hover,
    .works-carousel__slide.swiper-slide-next:hover {
        transform: scale(0.93);
    }

    .works-carousel__slide:not(.is-active):not(.swiper-slide-active):hover .works-card__media img {
        filter: none;
        transform: scale(1.04);
    }

    .works-carousel__slide.is-active:hover,
    .works-carousel__slide.swiper-slide-active:hover {
        border-color: rgba(22, 196, 95, 0.4);
        box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
        transform: scale(1.16);
    }

    .works-carousel__slide.is-active:hover .works-card::after,
    .works-carousel__slide.swiper-slide-active:hover .works-card::after {
        opacity: 1;
    }

    .works-carousel__slide.is-active:hover .works-card__media img,
    .works-carousel__slide.swiper-slide-active:hover .works-card__media img {
        filter: saturate(1.08) contrast(1.03);
        transform: scale(1.09);
    }
}

@media (max-width: 991.98px) {
    .works-section {
        min-height: 640px;
        padding: 76px 0 70px;
    }

    .works-section .container {
        width: min(100% - 28px, 980px);
    }

    .works-carousel {
        padding-inline: 32px;
    }

    .works-carousel__viewport {
        padding: 2rem 0 1.9rem;
    }

    .works-carousel__track {
        --works-gap: 1rem;
    }

    .works-carousel__slide {
        flex-basis: clamp(310px, 56vw, 390px);
        min-height: 440px;
        transform: scale(0.84);
    }

    .works-carousel__slide.is-near,
    .works-carousel__slide.swiper-slide-prev,
    .works-carousel__slide.swiper-slide-next {
        transform: scale(0.9);
    }

    .works-carousel__slide.is-active,
    .works-carousel__slide.swiper-slide-active {
        transform: scale(1.06);
    }

    .works-card {
        min-height: 440px;
    }

    .works-card h3 {
        font-size: 1.42rem;
    }

    .works-card p {
        font-size: 0.92rem;
    }
}

@media (max-width: 767.98px) {
    .works-section {
        min-height: auto;
        padding: 70px 0 74px;
    }

    .works-section__bg {
        inset: -5%;
        opacity: 0.78;
        filter: blur(1px) saturate(1.08) contrast(1.03);
    }

    .works-section .container {
        width: min(100% - 22px, 560px);
    }

    .works-heading {
        margin-bottom: 1.15rem;
    }

    .works-heading h2 {
        font-size: 2.35rem;
    }

    .works-heading p {
        max-width: 340px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .works-carousel {
        padding-inline: 0;
    }

    .works-carousel__viewport {
        padding: 1.2rem 0 1.1rem;
    }

    .works-carousel__track {
        --works-gap: 0;
    }

    .works-carousel__slide {
        flex-basis: 100%;
        min-height: 470px;
        opacity: 0;
        filter: brightness(0.72) saturate(0.85);
        transform: scale(0.92);
    }

    .works-carousel__slide.is-active,
    .works-carousel__slide.swiper-slide-active {
        opacity: 1;
        filter: none;
        transform: scale(1);
    }

    .works-carousel__slide.is-near,
    .works-carousel__slide.swiper-slide-prev,
    .works-carousel__slide.swiper-slide-next {
        opacity: 0;
        transform: scale(0.92);
    }

    .works-card {
        min-height: 470px;
        border-radius: 28px;
    }

    .works-card__content {
        min-height: 46%;
        padding: 1.25rem;
    }

    .works-card h3 {
        font-size: 1.52rem;
    }

    .works-card p {
        font-size: 0.93rem;
        line-height: 1.58;
    }

    .works-carousel__nav {
        top: 50%;
        width: 46px;
        height: 46px;
    }

    .works-carousel__nav--prev {
        left: 0.35rem;
    }

    .works-carousel__nav--next {
        right: 0.35rem;
    }

    .works-cta {
        margin-top: 1.75rem;
    }

    .works-cta__button {
        min-width: min(100%, 250px);
    }
}

@media (max-width: 575.98px) {
    .works-section {
        padding: 64px 0 78px;
    }

    .works-section .container {
        width: min(100% - 18px, 430px);
    }

    .works-heading {
        margin-bottom: 1rem;
    }

    .works-heading h2 {
        font-size: 2.12rem;
    }

    .works-carousel__viewport {
        padding: 1rem 0;
    }

    .works-carousel__slide,
    .works-card {
        min-height: 430px;
    }

    .works-card__content {
        min-height: 48%;
        padding: 1.08rem;
    }

    .works-card h3 {
        font-size: 1.32rem;
    }

    .works-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .works-carousel__nav {
        width: 42px;
        height: 42px;
    }

    .works-carousel__nav--prev {
        left: 0.45rem;
    }

    .works-carousel__nav--next {
        right: 0.45rem;
    }
}

@media (max-width: 430px) {
    .works-section {
        padding: 58px 0 82px;
    }

    .works-section .container {
        width: calc(100% - 16px);
    }

    .works-heading h2 {
        font-size: 1.95rem;
    }

    .works-heading p {
        max-width: 310px;
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .works-carousel__slide,
    .works-card {
        min-height: 400px;
    }

    .works-card {
        border-radius: 24px;
    }

    .works-card__tag {
        min-height: 30px;
        margin-bottom: 0.7rem;
        padding: 0.4rem 0.62rem;
        font-size: 0.68rem;
    }

    .works-card__content {
        min-height: 52%;
        padding: 0.95rem;
    }

    .works-card h3 {
        font-size: 1.18rem;
    }

    .works-card p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .works-carousel__nav {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .works-carousel__nav--prev {
        left: 0.35rem;
    }

    .works-carousel__nav--next {
        right: 0.35rem;
    }

    .works-carousel__dots {
        min-height: 30px;
    }

    .works-cta {
        margin-top: 1.85rem;
    }

    .works-cta__button {
        width: min(100%, 260px);
    }
}

@keyframes worksSlideEntrance {
    0% {
        opacity: 0;
        filter: blur(14px) brightness(0.5);
        translate: 0 28px;
    }
}

@keyframes worksBackgroundDrift {
    0% {
        background-position: center center;
        transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
    }

    100% {
        background-position: center 58%;
        transform: scale(1.16) translate3d(1.2%, 0.8%, 0);
    }
}

.gallery-section {
    padding-top: 12px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7fbff 100%);
}

.gallery-section .container {
    width: min(1620px, calc(100% - clamp(18px, 4vw, 72px)));
    max-width: 100%;
}

.gallery-heading {
    max-width: 860px;
    margin: 0 auto 2.2rem;
}

.gallery-heading h2 {
    margin: 0.65rem 0 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #182338;
}

.gallery-heading p {
    margin: 0.95rem auto 0;
    max-width: 760px;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #5d6b84;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
    align-items: stretch;
}

.gallery-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
    padding: 0.95rem;
    border: 1.6px solid rgba(45, 111, 230, 0.22);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(241, 247, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 28%, rgba(242, 248, 255, 1) 100%);
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(18, 43, 78, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    cursor: zoom-in;
}

.gallery-card:focus-visible {
    outline: none;
    border-color: rgba(47, 114, 199, 0.54);
    box-shadow:
        0 0 0 4px rgba(63, 129, 241, 0.18),
        0 22px 44px rgba(18, 43, 78, 0.12);
}

.gallery-card[data-reveal] {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px) scale(0.95);
    transition:
        opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.78s ease,
        box-shadow var(--transition-base),
        border-color var(--transition-base);
    transition-delay: calc(var(--gallery-index, 0) * 80ms);
}

.gallery-card[data-reveal].revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.gallery-card[data-reveal].revealed.gallery-card--loaded {
    animation: galleryCardCascade 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--gallery-index, 0) * 95ms);
}

.gallery-card[data-reveal].revealed.gallery-card--loaded .gallery-card__brand-logo {
    animation: galleryLogoCascade 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc((var(--gallery-index, 0) * 95ms) + 90ms);
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(84, 141, 255, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(230, 239, 255, 0.52) 0%, transparent 35%);
    pointer-events: none;
}

.gallery-card::after {
    content: "";
    position: absolute;
    top: -12%;
    left: -42%;
    width: 42%;
    height: 140%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-120%) rotate(14deg);
    transition: transform 0.9s ease, opacity 0.35s ease;
    z-index: 2;
}

.gallery-card__logo-wrap {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 116px;
    padding: 0.35rem 0.5rem 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card__logo-wrap::before {
    content: "";
    position: absolute;
    inset: -0.45rem -0.3rem auto;
    height: 162px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(255, 255, 255, 0.92) 90%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

.gallery-card__brand-logo {
    width: min(90%, 320px);
    max-width: 100%;
    max-height: 118px;
    object-fit: contain;
    filter: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card__media {
    position: relative;
    z-index: 1;
    aspect-ratio: 5 / 7.45;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #eef5ff 100%);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.gallery-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(11, 50, 120, 0.08) 100%),
        radial-gradient(circle at 20% 108%, rgba(29, 113, 255, 0.96) 0%, rgba(29, 113, 255, 0) 34%),
        radial-gradient(circle at 40% 112%, rgba(97, 183, 255, 0.72) 0%, rgba(97, 183, 255, 0) 30%);
    pointer-events: none;
    z-index: 1;
}

.gallery-card__media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 176px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(255, 255, 255, 0.94) 90%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform var(--transition-base), filter var(--transition-base);
}

.gallery-card:hover .gallery-card__image {
    transform: scale(1.06);
    filter: saturate(1.06);
}

.gallery-section .gallery-grid:hover .gallery-card:not(:hover) {
    opacity: 0.92;
}

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
}

.gallery-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 20, 0.82);
    backdrop-filter: blur(14px);
}

.gallery-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - clamp(10px, 3vw, 32px)));
    max-width: 100%;
    max-height: calc(100dvh - clamp(10px, 3vh, 28px));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 1rem;
    color: #f7f9fc;
}

.gallery-lightbox__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    padding: 0.9rem 1rem;
    border-radius: 22px;
    background: rgba(8, 14, 24, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 44px rgba(3, 8, 18, 0.3);
    backdrop-filter: blur(18px);
}

.gallery-lightbox__counter {
    min-width: 82px;
    font-family: "Outfit", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.96);
}

.gallery-lightbox__brandbox {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    flex: 1 1 auto;
    padding: 0.45rem 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-lightbox__brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    padding: 0.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    flex-shrink: 0;
}

.gallery-lightbox__brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gallery-lightbox__eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.54);
}

.gallery-lightbox__brand-copy strong {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-lightbox__actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
}

.gallery-lightbox__action,
.gallery-lightbox__nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(17, 28, 44, 0.96);
    color: #fff;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.gallery-lightbox__action {
    width: 56px;
    height: 56px;
    font-size: 1.16rem;
}

.gallery-lightbox__action:hover,
.gallery-lightbox__action:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    transform: translateY(-2px);
    background: rgba(33, 53, 84, 0.98);
    border-color: rgba(112, 177, 255, 0.48);
    color: #fff;
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.22),
        0 0 0 4px rgba(69, 144, 255, 0.16);
    outline: none;
}

.gallery-lightbox__action--close {
    background: linear-gradient(180deg, rgba(111, 31, 41, 0.96) 0%, rgba(86, 17, 26, 0.98) 100%);
    border-color: rgba(255, 146, 146, 0.28);
}

.gallery-lightbox__action--close:hover,
.gallery-lightbox__action--close:focus-visible {
    background: linear-gradient(180deg, rgba(145, 34, 49, 0.98) 0%, rgba(111, 24, 35, 1) 100%);
    border-color: rgba(255, 183, 183, 0.42);
    box-shadow:
        0 18px 34px rgba(53, 8, 14, 0.32),
        0 0 0 4px rgba(255, 108, 108, 0.18);
}

.gallery-lightbox__stage {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 0;
    height: min(70dvh, 760px);
}

.gallery-lightbox__nav {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
    z-index: 2;
}

.gallery-lightbox__viewport {
    position: relative;
    min-width: 0;
    min-height: 0;
    height: 100%;
    padding: clamp(0.7rem, 1.8vw, 1.1rem);
    overflow: auto;
    border-radius: 28px;
    background: rgba(8, 13, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 28px 54px rgba(0, 0, 0, 0.25);
    scrollbar-width: thin;
}

.gallery-lightbox__figure {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-lightbox__poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #eef5ff 100%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.gallery-lightbox__poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(11, 50, 120, 0.08) 100%),
        radial-gradient(circle at 20% 108%, rgba(29, 113, 255, 0.96) 0%, rgba(29, 113, 255, 0) 34%),
        radial-gradient(circle at 40% 112%, rgba(97, 183, 255, 0.72) 0%, rgba(97, 183, 255, 0) 30%);
    pointer-events: none;
    z-index: 1;
}

.gallery-lightbox__poster::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22%;
    min-height: 118px;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 78%, rgba(255, 255, 255, 0.94) 90%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.gallery-lightbox__poster-logo-wrap {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    pointer-events: none;
}

.gallery-lightbox__poster-logo {
    width: min(88%, 320px);
    max-width: 100%;
    max-height: 112px;
    object-fit: contain;
    filter: none;
}

.gallery-lightbox__image {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    user-select: none;
}

.gallery-lightbox__viewport.is-zoomed {
    cursor: grab;
}

.gallery-lightbox__viewport.is-zoomed:active {
    cursor: grabbing;
}

.gallery-lightbox__footer {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .gallery-card:hover {
        border-color: rgba(47, 114, 199, 0.48);
        box-shadow: 0 28px 58px rgba(18, 43, 78, 0.16);
    }

    .gallery-card[data-reveal].revealed:hover {
        transform: translateY(-12px) scale(1.015);
    }

    .gallery-card:hover::after {
        opacity: 1;
        transform: translateX(360%) rotate(14deg);
    }

    .gallery-card:hover .gallery-card__media {
        transform: translateY(-6px);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.92),
            0 18px 40px rgba(36, 79, 151, 0.14);
    }

    .gallery-card:hover .gallery-card__logo-wrap {
        transform: translateY(-4px);
    }

    .gallery-card:hover .gallery-card__brand-logo {
        transform: scale(1.05);
    }
}

.gallery-card__stamp {
    position: absolute;
    right: 0.95rem;
    bottom: 0.9rem;
    z-index: 2;
    width: 82px;
    height: auto;
    max-width: 23%;
    opacity: 0.13;
    pointer-events: none;
    mix-blend-mode: multiply;
    filter: grayscale(1) brightness(0.8) saturate(0.72);
}

@media (max-width: 1199.98px) {
    .gallery-section .container {
        width: calc(100% - 56px);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .gallery-card__brand-logo {
        width: min(88%, 280px);
    }

    .gallery-lightbox__stage {
        height: min(68dvh, 700px);
    }
}

@media (max-width: 991.98px) {
    .gallery-section .container {
        width: calc(100% - 42px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }

    .gallery-lightbox__dialog {
        width: calc(100vw - 18px);
        gap: 0.85rem;
    }

    .gallery-lightbox__topbar {
        padding: 0.8rem 0.9rem;
        gap: 0.8rem;
    }

    .gallery-lightbox__brandbox {
        flex: 1 1 250px;
    }

    .gallery-lightbox__stage {
        height: min(66dvh, 640px);
    }

    .gallery-lightbox__nav {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding-top: 20px;
    }

    .gallery-heading {
        margin-bottom: 2rem;
    }

    .gallery-heading h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .gallery-heading p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .gallery-card {
        padding: 0.8rem;
        border-radius: 22px;
        gap: 0;
    }

    .gallery-card[data-reveal] {
        filter: blur(4px);
        transform: translateY(22px) scale(0.97);
        transition-delay: calc(var(--gallery-index, 0) * 55ms);
    }

    .gallery-card__logo-wrap {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
        min-height: 96px;
        padding-top: 0.25rem;
    }

    .gallery-card__logo-wrap::before {
        height: 136px;
    }

    .gallery-card__brand-logo {
        width: min(92%, 260px);
        max-height: 92px;
    }

    .gallery-card__media {
        border-radius: 18px;
        aspect-ratio: 5 / 7.15;
    }

    .gallery-card__media::after {
        height: 148px;
    }

    .gallery-lightbox {
        padding: 8px;
    }

    .gallery-lightbox__dialog {
        width: calc(100vw - 10px);
        max-height: calc(100dvh - 10px);
    }

    .gallery-lightbox__topbar {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.7rem;
    }

    .gallery-lightbox__counter {
        min-width: auto;
    }

    .gallery-lightbox__brandbox {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.1rem;
    }

    .gallery-lightbox__actions {
        margin-left: auto;
    }

    .gallery-lightbox__stage {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        height: min(62dvh, 560px);
        min-height: 320px;
    }

    .gallery-lightbox__nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
        background: rgba(17, 28, 44, 0.96);
    }

    .gallery-lightbox__nav:hover,
    .gallery-lightbox__nav:focus-visible {
        transform: translateY(-50%) scale(1.03);
    }

    .gallery-lightbox__nav--prev {
        left: 0.7rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.7rem;
    }

    .gallery-lightbox__viewport {
        min-height: 0;
        padding: 0.75rem;
        border-radius: 22px;
    }

    .gallery-lightbox__poster {
        border-radius: 20px;
    }

    .gallery-lightbox__poster-logo-wrap {
        top: 0.8rem;
        left: 0.8rem;
        right: 0.8rem;
        min-height: 92px;
    }

    .gallery-lightbox__poster-logo {
        width: min(88%, 220px);
        max-height: 82px;
    }

}

@media (max-width: 575.98px) {
    .gallery-section .container {
        width: calc(100% - 28px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .gallery-heading {
        margin-bottom: 1.55rem;
    }

    .gallery-heading p {
        max-width: 340px;
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .gallery-card {
        padding: 0.7rem;
        border-radius: 20px;
    }

    .gallery-card__logo-wrap {
        top: 0.65rem;
        left: 0.65rem;
        right: 0.65rem;
        min-height: 70px;
    }

    .gallery-card__logo-wrap::before {
        height: 92px;
    }

    .gallery-card__brand-logo {
        width: min(92%, 200px);
        max-height: 62px;
    }

    .gallery-card__media {
        border-radius: 16px;
        aspect-ratio: 4 / 5.6;
    }

    .gallery-card__media::after {
        height: 92px;
    }

    .gallery-lightbox__dialog {
        width: calc(100vw - 8px);
        gap: 0.65rem;
    }

    .gallery-lightbox__topbar {
        grid-template-columns: 1fr auto;
        padding: 0.7rem 0.8rem;
        border-radius: 18px;
    }

    .gallery-lightbox__brandbox {
        display: none;
    }

    .gallery-lightbox__counter {
        font-size: 0.96rem;
    }

    .gallery-lightbox__actions {
        gap: 0.45rem;
    }

    .gallery-lightbox__action {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .gallery-lightbox__nav {
        width: 50px;
        height: 50px;
        font-size: 1.15rem;
    }

    .gallery-lightbox__nav--prev {
        left: 0.45rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.45rem;
    }

    .gallery-lightbox__stage {
        height: min(58dvh, 500px);
        min-height: 280px;
    }

    .gallery-lightbox__viewport {
        padding: 0.62rem;
        border-radius: 18px;
    }

    .gallery-lightbox__poster {
        border-radius: 16px;
    }

    .gallery-lightbox__poster-logo-wrap {
        min-height: 72px;
    }

    .gallery-lightbox__poster-logo {
        width: min(86%, 180px);
        max-height: 62px;
    }
}

@media (max-width: 430px) {
    .section-space {
        padding: 68px 0;
    }

    .navbar-collapse {
        left: 6px;
        right: 6px;
        padding: 0.85rem;
    }

    .hero-title {
        font-size: clamp(1.58rem, 8vw, 2.05rem);
        margin-top: 0.78rem;
        line-height: 0.95;
        letter-spacing: -0.03em;
        max-width: 100%;
        text-wrap: balance;
    }

    .hero-text {
        max-width: 100%;
        font-size: 0.82rem;
        line-height: 1.52;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-carousel,
    .hero-slide,
    .hero-slide-content {
        min-height: calc(100dvh - var(--header-offset));
        height: calc(100dvh - var(--header-offset));
    }

    .hero-slide-content {
        justify-content: center;
        gap: 0.62rem;
        padding-top: 12px;
        padding-bottom: 52px;
    }

    .hero-slide-content .row {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-width: min(100%, 274px);
        text-align: center;
        margin: 0 auto;
    }

    .hero-pill {
        gap: 0.55rem;
        padding: 0.56rem 0.82rem;
        font-size: 0.7rem;
        margin-inline: auto;
        max-width: 100%;
    }

    .hero-pill-dot {
        width: 8px;
        height: 8px;
        box-shadow: 0 0 0 4px rgba(22, 196, 95, 0.15);
    }

    .hero-subtitle {
        display: none;
    }

    .hero-actions {
        margin-top: 0.72rem;
        gap: 0.55rem;
        align-items: center;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 274px;
        min-height: 46px;
        padding: 0.66rem 1rem;
        font-size: 0.87rem;
        border-radius: 18px;
    }

    .hero-action-primary,
    .hero-action-secondary {
        max-width: 274px;
        min-width: 0;
    }

    .hero-action-secondary {
        font-size: 0.82rem;
    }

    .hero-badges,
    .hero-feature-grid {
        display: none;
    }

    .hero-feature-card {
        min-height: 98px;
    }

    .hero-arrow {
        top: auto;
        bottom: 14px;
        width: 34px;
        height: 34px;
        transform: none;
    }

    .hero-arrow:hover,
    .hero-arrow:focus {
        transform: scale(1.04);
    }

    .hero-arrow-prev {
        left: 10px;
    }

    .hero-arrow-next {
        right: 10px;
    }

    .hero-arrow i {
        font-size: 0.84rem;
    }

    .hero-indicators {
        bottom: 12px;
    }

    .hero-slide-bg {
        background-position: center center;
        transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0) scale(1.08);
    }

    .hero-slide:nth-child(1) .hero-slide-bg {
        background-position: 54% center;
    }

    .hero-slide:nth-child(2) .hero-slide-bg {
        background-position: 60% center;
    }

    .hero-slide:nth-child(3) .hero-slide-bg {
        background-position: 52% center;
    }

    .brands-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }

    .brand-logo-item {
        width: 148px;
        height: 72px;
        padding: 0.35rem 0.55rem;
    }

    .brand-logo-image {
        max-height: 52px;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-floating {
        left: 12px;
        right: 12px;
        padding: 0.72rem 0.78rem;
    }

    .about-floating strong {
        font-size: 0.88rem;
    }

    .location-panel__map,
    .location-panel__map iframe {
        min-height: 250px;
    }

    .testimonial-slide {
        flex-basis: min(90vw, 280px);
    }

    .final-cta-box {
        padding: 1.05rem;
        border-radius: 20px;
    }

    .site-footer {
        padding: 64px 0 18px;
    }

    .whatsapp-float {
        right: calc(env(safe-area-inset-right, 0px) + 10px);
        bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
        width: 56px;
        height: 56px;
    }

    .whatsapp-float i {
        font-size: 1.58rem;
    }

    .gallery-grid {
        gap: 0.72rem;
    }

    .gallery-section .container {
        width: calc(100% - 18px);
    }

    .gallery-card {
        padding: 0.58rem;
        border-radius: 18px;
    }

    .gallery-card__logo-wrap {
        top: 0.55rem;
        left: 0.55rem;
        right: 0.55rem;
        min-height: 62px;
    }

    .gallery-card__logo-wrap::before {
        height: 82px;
    }

    .gallery-card__brand-logo {
        width: min(92%, 160px);
        max-height: 54px;
    }

    .gallery-card__media {
        border-radius: 14px;
        aspect-ratio: 4 / 5.75;
    }

    .gallery-card__media::after {
        height: 80px;
    }

    .gallery-lightbox {
        padding: 6px;
    }

    .gallery-lightbox__dialog {
        width: calc(100vw - 6px);
        max-height: calc(100dvh - 6px);
        gap: 0.5rem;
    }

    .gallery-lightbox__topbar {
        padding: 0.6rem 0.68rem;
    }

    .gallery-lightbox__counter {
        font-size: 0.9rem;
    }

    .gallery-lightbox__action {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }

    .gallery-lightbox__nav {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .gallery-lightbox__stage {
        height: min(56dvh, 460px);
        min-height: 250px;
    }

    .gallery-lightbox__viewport {
        padding: 0.5rem;
        border-radius: 16px;
    }

    .gallery-lightbox__poster {
        border-radius: 14px;
    }

    .gallery-lightbox__poster-logo-wrap {
        top: 0.55rem;
        left: 0.55rem;
        right: 0.55rem;
        min-height: 64px;
    }

    .gallery-lightbox__poster-logo {
        width: min(84%, 150px);
        max-height: 52px;
    }
}

@media (max-height: 720px) and (max-width: 991.98px) {
    .navbar-collapse {
        max-height: calc(100dvh - 72px);
    }

    .hero-slide-content {
        padding-top: 28px;
        padding-bottom: 70px;
    }

    .hero-feature-grid {
        display: none;
    }

    .hero-subtitle {
        display: none;
    }
}

@media (max-height: 760px) {
    .gallery-lightbox__dialog {
        max-height: calc(100dvh - 8px);
    }

    .gallery-lightbox__topbar {
        padding: 0.65rem 0.8rem;
    }

    .gallery-lightbox__brandbox {
        display: none;
    }

    .gallery-lightbox__stage {
        height: min(64dvh, 520px);
    }
}

@media (max-height: 640px) {
    .gallery-lightbox__stage {
        height: min(60dvh, 430px);
        min-height: 220px;
    }

    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .gallery-lightbox__action {
        width: 42px;
        height: 42px;
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-card,
    .gallery-card[data-reveal],
    .gallery-card__media,
    .gallery-card__logo-wrap,
    .gallery-card__brand-logo,
    .gallery-card__image,
    .gallery-card::after,
    .works-section__bg,
    .works-card,
    .works-card__media img,
    .works-card::after,
    .works-carousel__viewport,
    .works-carousel__nav,
    .works-carousel__dot,
    .reveal-cascade-card,
    .reveal-cascade-card[data-reveal],
    .service-card-content,
    .advantage-icon,
    .gallery-lightbox,
    .gallery-lightbox__action,
    .gallery-lightbox__nav {
        animation: none !important;
        transition: none !important;
    }

    .gallery-card[data-reveal],
    .works-card[data-reveal],
    .reveal-cascade-card[data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@keyframes galleryCardCascade {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(0.9);
    }

    62% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02);
    }

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

@keyframes galleryLogoCascade {
    0% {
        opacity: 0;
        transform: translateY(-18px) scale(0.78);
    }

    70% {
        opacity: 1;
        transform: translateY(2px) scale(1.06);
    }

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





.hero-letter {
    display: inline-block;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hero-animate-in {
    opacity: 0;
    animation: heroFadeUp 0.75s ease forwards;
}

@keyframes heroLetterReveal {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.92);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}
/* ===== FIX DEFINITIVO HERO MÓVIL ===== */
@media (max-width: 430px) {

    .hero-copy{
        max-width: 296px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-title{
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(1.62rem, 7.2vw, 2rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
        text-align: center !important;
        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
        margin-bottom: 1rem !important;
    }

    .hero-title .hero-letter{
        display: inline !important;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .hero-text{
        max-width: 270px !important;
        margin: 0 auto !important;
        margin-top: .45rem !important;
        line-height: 1.52 !important;
    }

    .hero-actions{
        margin-top: 1.45rem !important; /* separación extra del botón */
    }

    .hero-actions .btn{
        min-height: 52px !important;
    }
}
/* ===== HERO FLOTANTE MÁS NOTORIO ===== */
@media (max-width: 430px) {

    .hero-copy{
        position: relative !important;
        animation: heroFloatStrong 2.2s ease-in-out infinite !important;
        will-change: transform;
    }

    @keyframes heroFloatStrong {
        0%{
            transform: translateY(0px);
        }

        25%{
            transform: translateY(12px);
        }

        50%{
            transform: translateY(24px);
        }

        75%{
            transform: translateY(12px);
        }

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

}
/* ===== MOVIMIENTO VISIBLE HERO MÓVIL ===== */
@media (max-width: 430px) {

    .carousel-item.active .hero-slide-content .row {
        animation: heroMoveUpDownVisible 1.6s ease-in-out infinite !important;
        will-change: transform;
    }

    @keyframes heroMoveUpDownVisible {
        0% {
            transform: translateY(-2px);
        }

        50% {
            transform: translateY(4px);
        }

        100% {
            transform: translateY(-2px);
        }
    }
}
/* ===================================================
   LLAVEMOVIL - VERSION FINAL LIMPIA Y ORDENADA
   Animaciones premium suaves
=================================================== */


/* ===================================================
   BENEFICIOS / POR QUÉ ELEGIRNOS
=================================================== */

.benefits-grid .advantage-card{
    animation: benefitCardMove 6s ease-in-out infinite;
    transition:.35s ease;
    will-change:transform;
}

.benefits-grid .advantage-card:nth-child(2){animation-delay:.6s;}
.benefits-grid .advantage-card:nth-child(3){animation-delay:1.2s;}
.benefits-grid .advantage-card:nth-child(4){animation-delay:1.8s;}

.benefits-grid .advantage-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 18px 38px rgba(0,0,0,.12);
}

.benefits-grid .advantage-card i,
.benefits-grid .advantage-card svg,
.benefits-grid .advantage-card .bi{
    animation:benefitIconMove 3.4s ease-in-out infinite;
}

@keyframes benefitCardMove{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}

@keyframes benefitIconMove{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px) rotate(8deg);}
}



/* ===================================================
   SERVICIOS (6 CUADROS)
=================================================== */

#servicios .card,
#servicios article,
.service-card{
    animation:serviceFloat 4.8s ease-in-out infinite;
    transition:.35s ease;
}

#servicios .col-lg-4:nth-child(2) .card{animation-delay:.4s;}
#servicios .col-lg-4:nth-child(3) .card{animation-delay:.8s;}
#servicios .col-lg-4:nth-child(4) .card{animation-delay:1.2s;}
#servicios .col-lg-4:nth-child(5) .card{animation-delay:1.6s;}
#servicios .col-lg-4:nth-child(6) .card{animation-delay:2s;}

#servicios .card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,.14);
}

@keyframes serviceFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-9px);}
}



/* ===================================================
   QUIENES SOMOS
=================================================== */

.about-section .section-tag,
.about-section h2,
.about-section p,
.about-section li,
.about-section .about-stat-card,
.about-section .about-visual{
    opacity:0;
    animation:aboutFadeUp .9s ease forwards;
}

.about-section .section-tag{animation-delay:.05s;}
.about-section h2{animation-delay:.15s;}
.about-section p{animation-delay:.30s;}
.about-section li:nth-child(1){animation-delay:.45s;}
.about-section li:nth-child(2){animation-delay:.60s;}
.about-section li:nth-child(3){animation-delay:.75s;}

.about-section .about-stat-card:nth-child(1){animation-delay:.9s;}
.about-section .about-stat-card:nth-child(2){animation-delay:1.05s;}

.about-section .about-floating,
.about-section .about-floating-bottom{
    animation:aboutFloat 4s ease-in-out infinite;
}

.about-section .about-floating-bottom{
    animation-delay:.7s;
}

@keyframes aboutFadeUp{
    0%{
        opacity:0;
        transform:translateY(35px);
        filter:blur(10px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
        filter:blur(0);
    }
}

@keyframes aboutFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}



/* ===================================================
   PROCESO DE TRABAJO (DISEÑO ORIGINAL + MOVIMIENTO)
=================================================== */

.process-stage{
    animation:processFloat 4.2s ease-in-out infinite;
}

.process-stage:nth-child(2){animation-delay:.5s;}
.process-stage:nth-child(3){animation-delay:1s;}
.process-stage:nth-child(4){animation-delay:1.5s;}

.process-stage__visual{
    position:relative;
    width:min(190px,100%);
    margin:auto;
    margin-top:1.9rem;
}

.process-stage__visual-card{
    position:relative;
    height:186px;
    border-radius:0 0 44px 44px;
}

.process-stage__icon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:4.5rem;
}

@keyframes processFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}



/* ===================================================
   CONTACTANOS
=================================================== */

#contacto .contact-card,
#contacto .contact-panel,
#contacto .cta-box,
.contact-section .contact-card{
    animation:contactFloat 5s ease-in-out infinite;
}

#contacto .info-card{
    animation:contactMini 4s ease-in-out infinite;
}

#contacto .info-card:nth-child(2){
    animation-delay:.6s;
}

@keyframes contactFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
}

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



/* ===================================================
   BOTONES GLOBALES
=================================================== */

.btn,
button{
    transition:.30s ease;
}

.btn:hover,
button:hover{
    transform:translateY(-3px);
}



/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:768px){

    .benefits-grid .advantage-card,
    #servicios .card,
    .process-stage,
    #contacto .contact-card{
        animation-duration:3.5s;
    }

}
/* ===== NOSOTROS LETRA POR LETRA SIN ROMPER PALABRAS ===== */

.about-section .about-copy h2 {
    max-width: 14ch !important;
    line-height: 1.08 !important;
    white-space: normal !important;
}

.about-word {
    display: inline-block !important;
    white-space: nowrap !important;
}

.about-letter {
    display: inline-block !important;
    opacity: 0;
    transform: translateY(28px) scale(.86);
    filter: blur(7px);
    animation: aboutLetterClean .55s ease forwards;
}

@keyframes aboutLetterClean {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(.86);
        filter: blur(7px);
    }

    70% {
        opacity: 1;
        transform: translateY(-4px) scale(1.04);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 575px) {
    .about-section .about-copy h2 {
        max-width: 100% !important;
        font-size: clamp(2rem, 9vw, 2.55rem) !important;
    }
}

/* ===== HERO MOVIL FINAL LIMPIO ===== */
.hero-word {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 430px) {
    .hero-slide-content .row,
    .carousel-item.active .hero-slide-content .row,
    .hero-copy {
        animation: none !important;
        transform: none !important;
    }

    .hero-copy {
        max-width: min(100%, 276px) !important;
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-pill,
    .hero-title,
    .hero-text,
    .hero-actions {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-title {
        max-width: 100% !important;
        font-size: clamp(1.6rem, 8vw, 2.05rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.025em !important;
        text-wrap: balance !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: normal !important;
    }

    .hero-title .hero-letter {
        display: inline-block !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }

    .hero-text {
        max-width: 272px !important;
        font-size: 0.82rem !important;
        line-height: 1.5 !important;
        margin-top: 0.4rem !important;
        -webkit-line-clamp: 4 !important;
    }

    .hero-actions {
        width: 100% !important;
        margin-top: 0.85rem !important;
        gap: 0.6rem !important;
        align-items: center !important;
    }

    .hero-actions .btn,
    .hero-action-primary,
    .hero-action-secondary {
        width: 100% !important;
        max-width: 276px !important;
    }

    .hero-actions .btn {
        min-height: 46px !important;
        padding: 0.68rem 1rem !important;
        font-size: 0.87rem !important;
    }
}

/* ===== HERO MOVIL IGUAL A LA REFERENCIA ===== */
@media (max-width: 575.98px) {
    .hero-word {
        display: inline-block !important;
        white-space: nowrap !important;
    }

    .hero-slide-content {
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        padding-top: 8px;
        padding-bottom: clamp(92px, 14vh, 118px);
    }

    .hero-slide-content .row {
        flex: 1 1 auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .hero-slide-content .col-xl-7,
    .hero-slide-content .col-lg-8 {
        display: flex;
        justify-content: center;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: min(100%, 304px) !important;
        max-width: 304px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .hero-pill {
        max-width: 100%;
        padding: 0.62rem 0.95rem !important;
        font-size: 0.76rem !important;
    }

    .hero-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 1rem !important;
        font-size: clamp(2.1rem, 10vw, 2.95rem) !important;
        line-height: 0.92 !important;
        letter-spacing: -0.04em !important;
        text-wrap: balance !important;
    }

    .hero-title .hero-letter {
        display: inline-block !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }

    .hero-text {
        max-width: 300px !important;
        font-size: 0.86rem !important;
        line-height: 1.56 !important;
        margin-top: 0.7rem !important;
    }

    .hero-actions .hero-action-primary {
        width: 100% !important;
        max-width: 304px !important;
    }

    .hero-actions .hero-action-secondary {
        width: min(100%, 176px) !important;
        max-width: 176px !important;
        min-width: 0 !important;
        min-height: 40px !important;
        padding: 0.7rem 1.25rem !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        justify-content: center !important;
    }

    .hero-pill,
    .hero-title,
    .hero-text,
    .hero-actions {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-carousel-controls {
        position: absolute;
        inset: 0;
        width: 100%;
        z-index: 3;
    }

    .hero-arrow {
        top: 57%;
        bottom: auto;
        width: 42px;
        height: 42px;
        transform: translateY(-50%) !important;
    }

    .hero-arrow:hover,
    .hero-arrow:focus {
        transform: translateY(-50%) scale(1.04) !important;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

.hero-indicators {
        left: 0;
        right: 0;
        bottom: 20px;
        display: flex;
        justify-content: center;
        margin: 0;
    }
}

/* ===== AJUSTE GLOBAL DE TEXTOS ===== */
:where(
    .hero-text,
    .about-copy p,
    .section-heading p,
    .benefits-heading p,
    .brands-heading p,
    .process-heading p,
    .works-heading p,
    .works-card p,
    .gallery-heading p,
    .coverage-text,
    .location-panel__intro p,
    .faq-panel__intro p,
    .faq-accordion .accordion-body,
    .service-card p,
    .benefit-card p,
    .advantage-card p,
    .process-card p,
    .process-stage__content p,
    .coverage-card p,
    .testimonial-copy,
    .final-cta-box p,
    .footer-copy
) {
    text-align: justify;
    text-justify: inter-word;
    text-wrap: pretty;
}

:where(
    .hero-text,
    .section-heading p,
    .benefits-heading p,
    .brands-heading p,
    .process-heading p,
    .works-heading p,
    .gallery-heading p,
    .advantage-card p
) {
    text-align-last: center;
}
