:root {
    --white: #ffffff;
    --ice: #f2f9fa;
    --ice-strong: #e4f5f7;
    --cyan: #62cbe5;
    --cyan-light: #aee8f1;
    --turquoise: #00a6a6;
    --turquoise-dark: #087986;
    --deep: #063b46;
    --deep-2: #082f39;
    --ink: #102f38;
    --muted: #5d747b;
    --line: #d8e6e9;
    --success: #18a46b;
    --whatsapp: #25d366;
    --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: 1320px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 8px 30px rgba(8, 47, 57, 0.07);
    --shadow-md: 0 24px 65px rgba(8, 47, 57, 0.13);
    --transition: 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

html body a:focus-visible,
html body button:focus-visible,
html body input:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

svg {
    display: block;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.announcement {
    position: relative;
    z-index: 1100;
    background: var(--deep-2);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    letter-spacing: 0.025em;
}

.announcement__content {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.announcement__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.announcement a {
    color: var(--cyan-light);
    transition: color var(--transition);
}

.announcement a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(216, 230, 233, 0.85);
    backdrop-filter: blur(18px);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 40px rgba(8, 47, 57, 0.08);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    display: block;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand__symbol {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-block;
    transform: rotate(45deg);
}

.brand__symbol i {
    position: absolute;
    display: block;
    border-radius: 3px;
}

.brand__symbol i:nth-child(1) {
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: var(--turquoise);
}

.brand__symbol i:nth-child(2) {
    right: 3px;
    bottom: 3px;
    width: 14px;
    height: 14px;
    background: var(--cyan);
}

.brand__symbol i:nth-child(3) {
    right: 3px;
    top: 3px;
    width: 14px;
    height: 31px;
    background: var(--deep);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    color: var(--deep);
    font-size: 1.38rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand__text small {
    margin-top: 6px;
    max-width: 270px;
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.site-nav a {
    position: relative;
    padding: 31px 0 29px;
    color: #36545c;
    font-size: 0.88rem;
    font-weight: 700;
    transition: color var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 2px;
    background: var(--turquoise);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--turquoise-dark);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-search {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--deep);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.nav-search:hover {
    color: var(--white);
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.nav-search svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.menu-toggle {
    position: relative;
    width: 46px;
    height: 46px;
    display: none;
    background: var(--ice);
    border-radius: 50%;
}

.menu-toggle span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background: var(--deep);
    border-radius: 999px;
    transition:
        transform var(--transition),
        opacity var(--transition),
        top var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 15px;
}

.menu-toggle span:nth-child(2) {
    top: 22px;
}

.menu-toggle span:nth-child(3) {
    top: 29px;
}

.menu-open .menu-toggle span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
}

.btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--deep);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn span {
    font-size: 1.05rem;
    transition: transform var(--transition);
}

.btn:hover span {
    transform: translateX(3px);
}

.btn--small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.78rem;
}

.btn--primary {
    color: var(--white);
    background: var(--turquoise-dark);
    box-shadow: 0 12px 30px rgba(8, 121, 134, 0.18);
}

.btn--primary:hover {
    background: var(--deep);
    box-shadow: 0 16px 35px rgba(6, 59, 70, 0.24);
}

.btn--light {
    color: var(--deep);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(3, 29, 36, 0.2);
}

.btn--light:hover {
    background: var(--cyan-light);
}

.btn--outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.32);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--secondary {
    color: var(--deep);
    background: var(--white);
    border-color: var(--line);
}

.btn--secondary:hover {
    color: var(--turquoise-dark);
    border-color: var(--turquoise);
}

.btn--dark {
    color: var(--white);
    background: var(--deep);
}

.btn--dark:hover {
    background: var(--turquoise-dark);
}

.btn--wide {
    width: 100%;
}

.hero {
    position: relative;
    min-height: calc(100svh - 118px);
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(98, 203, 229, 0.18), transparent 36%),
        linear-gradient(135deg, #082f39 0%, #063b46 52%, #075967 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, #000, transparent 65%);
}

.hero__ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.hero__ambient--one {
    top: -190px;
    left: 30%;
    width: 560px;
    height: 560px;
    background: rgba(98, 203, 229, 0.13);
}

.hero__ambient--two {
    right: -200px;
    bottom: -280px;
    width: 680px;
    height: 680px;
    background: rgba(0, 166, 166, 0.23);
}

.hero__grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    padding-top: 70px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
    align-items: center;
    gap: 34px;
}

.hero__content {
    position: relative;
    z-index: 4;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 2px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--turquoise-dark);
}

.hero h1 {
    max-width: 760px;
    margin-top: 24px;
    color: var(--white);
    font-size: clamp(3.5rem, 5.7vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    color: var(--cyan-light);
    font-weight: 800;
}

.hero__description {
    max-width: 610px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
}

.hero__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-search {
    position: relative;
    z-index: 5;
    max-width: 690px;
    min-height: 72px;
    margin-top: 38px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(1, 25, 32, 0.35);
}

.hero-search > svg {
    flex: 0 0 auto;
    width: 21px;
    fill: none;
    stroke: var(--turquoise-dark);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.hero-search input {
    min-width: 0;
    flex: 1;
    padding: 10px 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 0.94rem;
}

.hero-search input::placeholder {
    color: #82959a;
}

.search-clear {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: var(--muted);
    background: var(--ice);
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
}

.search-submit {
    align-self: stretch;
    padding: 0 25px;
    color: var(--white);
    background: var(--turquoise-dark);
    border-radius: 11px;
    font-size: 0.8rem;
    font-weight: 800;
    transition: background var(--transition);
}

.search-submit:hover {
    background: var(--deep);
}

.hero__metrics {
    margin-top: 34px;
    display: flex;
    gap: 38px;
}

.hero__metrics div {
    display: flex;
    flex-direction: column;
}

.hero__metrics strong {
    color: var(--white);
    font-size: 1.05rem;
}

.hero__metrics span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
}

.architectural-scene {
    position: relative;
    width: 100%;
    height: 610px;
    align-self: end;
    perspective: 1200px;
}

.scene-label {
    position: absolute;
    z-index: 6;
    top: 40px;
    right: 18px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.7);
    border-left: 2px solid var(--cyan);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scene-label strong {
    color: var(--white);
    font-size: 0.82rem;
}

.scene-orbit {
    position: absolute;
    border: 1px solid rgba(174, 232, 241, 0.16);
    border-radius: 50%;
}

.scene-orbit--one {
    top: 35px;
    right: -90px;
    width: 480px;
    height: 480px;
}

.scene-orbit--two {
    top: 125px;
    right: 0;
    width: 310px;
    height: 310px;
}

.scene-ground {
    position: absolute;
    z-index: 1;
    right: -100px;
    bottom: 12px;
    width: 115%;
    height: 125px;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 70px,
            rgba(255, 255, 255, 0.075) 70px 71px
        ),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    transform: perspective(500px) rotateX(55deg);
    transform-origin: top;
}

.facade-wing {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 70px;
    width: 54%;
    height: 315px;
    background: linear-gradient(145deg, #5d8b94, #1e5662 72%);
    clip-path: polygon(10% 17%, 100% 0, 100% 100%, 0 100%);
    box-shadow: -40px 28px 70px rgba(0, 0, 0, 0.22);
}

.facade-wing::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.facade-wing__lines {
    position: absolute;
    inset: 0;
    opacity: 0.55;
    background: repeating-linear-gradient(
        90deg,
        transparent 0 27px,
        rgba(3, 34, 42, 0.65) 27px 30px
    );
}

.facade-main {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 70px;
    width: 66%;
    height: 440px;
    background: linear-gradient(145deg, #8bb1b8 0%, #3c707b 42%, #174d59 100%);
    clip-path: polygon(0 12%, 82% 0, 100% 11%, 100% 100%, 0 100%);
    box-shadow: -35px 40px 90px rgba(0, 0, 0, 0.33);
}

.facade-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.17), transparent 28%),
        linear-gradient(135deg, transparent 45%, rgba(0, 0, 0, 0.16));
}

.facade-main__top {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 55px;
    background: rgba(4, 35, 43, 0.48);
    clip-path: polygon(0 100%, 82% 0, 100% 92%, 100% 100%);
}

.facade-main__grid {
    position: absolute;
    inset: 52px 0 0;
    opacity: 0.6;
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 57px,
            rgba(5, 43, 52, 0.82) 57px 61px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 133px,
            rgba(6, 54, 64, 0.42) 133px 136px
        );
}

.facade-glass {
    position: absolute;
    z-index: 3;
    top: 66px;
    bottom: 0;
    left: 16%;
    width: 40%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(4, 38, 48, 0.65);
    border-right: 4px solid rgba(2, 37, 45, 0.9);
    border-left: 4px solid rgba(2, 37, 45, 0.9);
}

.facade-glass span {
    position: relative;
    border-right: 3px solid rgba(1, 30, 38, 0.86);
    background:
        linear-gradient(110deg, transparent 30%, rgba(174, 232, 241, 0.2) 45%, transparent 60%),
        linear-gradient(180deg, rgba(98, 203, 229, 0.16), rgba(4, 31, 39, 0.5));
}

.facade-glass span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 32%;
    left: 0;
    height: 3px;
    background: rgba(2, 32, 40, 0.76);
}

.facade-door {
    position: absolute;
    z-index: 5;
    bottom: 0;
    left: 25%;
    width: 21%;
    height: 40%;
    background:
        linear-gradient(110deg, transparent 25%, rgba(172, 237, 244, 0.22), transparent 45%),
        linear-gradient(180deg, #155461, #062f39);
    border: 5px solid #082d36;
    box-shadow: 0 0 35px rgba(98, 203, 229, 0.22);
}

.facade-door::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #082d36;
}

.facade-door span {
    position: absolute;
    top: 50%;
    right: 12%;
    width: 4px;
    height: 38px;
    background: var(--cyan-light);
    border-radius: 999px;
}

.facade-canopy {
    position: absolute;
    z-index: 6;
    bottom: 39%;
    left: 19%;
    width: 33%;
    height: 11px;
    background: #092f38;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.32);
}

.scene-light {
    position: absolute;
    z-index: 5;
    bottom: 69px;
    width: 90px;
    height: 12px;
    background: var(--cyan-light);
    border-radius: 50%;
    filter: blur(9px);
    opacity: 0.85;
}

.scene-light--one {
    left: 33%;
}

.scene-light--two {
    left: 58%;
}

.scene-light--three {
    right: 6%;
}

.scroll-indicator {
    position: absolute;
    z-index: 5;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-indicator span {
    position: relative;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.scroll-indicator span::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--cyan-light);
    animation: scrollLine 2s infinite;
}

.category-strip {
    position: relative;
    z-index: 8;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 40px rgba(8, 47, 57, 0.06);
}

.category-strip__grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(190px, 1fr));
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.category-strip__grid::-webkit-scrollbar {
    display: none;
}

.category-strip a {
    min-height: 90px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: #345159;
    border-right: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    scroll-snap-align: start;
    transition:
        color var(--transition),
        background var(--transition);
}

.category-strip a:first-child {
    border-left: 1px solid var(--line);
}

.category-strip a span {
    color: var(--turquoise);
    font-size: 0.62rem;
}

.category-strip a:hover {
    color: var(--turquoise-dark);
    background: var(--ice);
}

.catalog-section {
    background:
        linear-gradient(rgba(242, 249, 250, 0.72), rgba(255, 255, 255, 0)),
        var(--white);
}

.section-heading {
    margin-bottom: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.section-heading > div:first-child {
    max-width: 760px;
}

.section-heading h2,
.value-intro h2,
.project-content h2,
.information-copy h2 {
    margin-top: 16px;
    color: var(--deep);
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading p,
.value-intro > p {
    max-width: 650px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.98rem;
}

.section-heading--compact {
    align-items: center;
}

.section-heading--compact h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.catalog-count {
    min-width: 150px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
}

.catalog-count strong {
    color: var(--turquoise-dark);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
}

.catalog-count span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.68rem;
}

.catalog-toolbar {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    min-height: 42px;
    padding: 0 17px;
    color: #557078;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.filter-button:hover,
.filter-button.active {
    color: var(--white);
    background: var(--deep);
    border-color: var(--deep);
}

.catalog-search {
    min-width: 260px;
    height: 46px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.catalog-search svg {
    width: 17px;
    fill: none;
    stroke: var(--turquoise-dark);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.catalog-search input {
    min-width: 0;
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 0.78rem;
}

.product-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(8, 47, 57, 0.04);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    border-color: rgba(0, 166, 166, 0.52);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.product-card__link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
}

.product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 39, 48, 0.22), transparent 45%);
    pointer-events: none;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-card__media img {
    transform: scale(1.06);
}

.product-card__category,
.product-card__featured {
    position: absolute;
    z-index: 2;
    top: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-card__category {
    left: 15px;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.product-card__featured {
    right: 15px;
    color: var(--white);
    background: var(--turquoise-dark);
}

.product-card__arrow {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--deep);
    background: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.product-card:hover .product-card__arrow {
    color: var(--white);
    background: var(--turquoise);
    transform: rotate(45deg);
}

.product-card__body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.product-card__meta {
    min-height: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #809399;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stock-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stock-dot i {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(24, 164, 107, 0.12);
}

.product-card__body h3 {
    margin-top: 12px;
    color: var(--deep);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.product-card__body > p {
    margin-top: 11px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.65;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.product-card__footer > div {
    display: flex;
    flex-direction: column;
}

.product-card__footer small {
    color: #89999e;
    font-size: 0.58rem;
}

.product-card__footer strong {
    margin-top: 2px;
    color: var(--turquoise-dark);
    font-size: 1.12rem;
}

.product-card__footer > span {
    color: var(--deep);
    font-size: 0.68rem;
    font-weight: 800;
}

.product-skeleton {
    aspect-ratio: 0.79 / 1;
    background:
        linear-gradient(
            100deg,
            rgba(229, 240, 242, 0) 25%,
            rgba(255, 255, 255, 0.75) 45%,
            rgba(229, 240, 242, 0) 65%
        ),
        var(--ice-strong);
    background-size: 200% 100%;
    border-radius: var(--radius-md);
    animation: skeleton 1.5s infinite;
}

.empty-state,
.error-state {
    grid-column: 1 / -1;
    min-height: 360px;
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: var(--ice);
    border: 1px dashed #bad5da;
    border-radius: var(--radius-md);
    text-align: center;
}

.empty-state__icon,
.error-state > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--turquoise-dark);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    font-size: 1.7rem;
}

.empty-state h3,
.error-state h3 {
    margin-top: 18px;
    color: var(--deep);
    font-size: 1.45rem;
}

.empty-state p,
.error-state p {
    max-width: 520px;
    margin: 8px 0 24px;
    font-size: 0.85rem;
}

.value-section {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 80px;
    align-items: start;
}

.value-intro {
    position: sticky;
    top: 140px;
}

.value-intro h2 {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
}

.text-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--turquoise-dark);
    border-bottom: 1px solid currentColor;
    font-size: 0.78rem;
    font-weight: 800;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--deep);
}

.value-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.value-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--ice);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.value-card:first-child {
    grid-column: 1 / -1;
    min-height: 280px;
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-card--accent {
    color: var(--white);
    background:
        radial-gradient(circle at 100% 0%, rgba(98, 203, 229, 0.3), transparent 45%),
        var(--deep);
    border-color: var(--deep);
}

.value-card__number {
    position: absolute;
    top: 25px;
    right: 28px;
    color: rgba(8, 121, 134, 0.42);
    font-size: 0.68rem;
    font-weight: 800;
}

.value-card--accent .value-card__number {
    color: rgba(255, 255, 255, 0.4);
}

.value-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: auto;
    display: grid;
    place-items: center;
    color: var(--turquoise-dark);
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.value-card__icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h3 {
    margin-top: 28px;
    color: var(--deep);
    font-size: 1.23rem;
    letter-spacing: -0.03em;
}

.value-card--accent h3 {
    color: var(--white);
}

.value-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.78rem;
}

.value-card--accent p {
    color: rgba(255, 255, 255, 0.66);
}

.project-section {
    background: var(--ice);
}

.project-card {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: var(--deep);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.project-visual {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 30%, rgba(98, 203, 229, 0.32), transparent 30%),
        linear-gradient(135deg, #77aab5, #275f6c 52%, #0b3d48);
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.17) 40%, transparent 51%),
        linear-gradient(to top, rgba(3, 29, 36, 0.48), transparent 50%);
}

.project-visual__frame {
    position: absolute;
    inset: 9% 9% 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 12px solid #123f49;
    border-bottom: 0;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.25);
}

.project-visual__frame span {
    border-right: 8px solid #123f49;
    background: linear-gradient(
        112deg,
        rgba(255, 255, 255, 0.06) 20%,
        rgba(198, 241, 246, 0.23) 36%,
        rgba(255, 255, 255, 0.02) 51%
    );
}

.project-visual__frame span:last-child {
    border-right: 0;
}

.project-visual__door {
    position: absolute;
    right: 19%;
    bottom: 0;
    width: 26%;
    height: 72%;
    background: rgba(3, 34, 43, 0.56);
    border: 10px solid #123f49;
    border-bottom: 0;
}

.project-visual__door::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 6px;
    background: #123f49;
}

.project-visual__handle {
    position: absolute;
    z-index: 3;
    right: 27.5%;
    bottom: 29%;
    width: 7px;
    height: 78px;
    background: var(--cyan-light);
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(174, 232, 241, 0.6);
}

.project-visual__tag {
    position: absolute;
    z-index: 4;
    bottom: 32px;
    left: 32px;
    padding: 15px 19px;
    display: flex;
    flex-direction: column;
    color: var(--deep);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(12px);
}

.project-visual__tag small {
    color: var(--turquoise-dark);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-visual__tag strong {
    font-size: 0.85rem;
}

.project-content {
    padding: clamp(48px, 7vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content h2 {
    color: var(--white);
    font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.project-content > p {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.project-points {
    margin: 32px 0;
    display: grid;
    gap: 17px;
}

.project-points > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.project-points > div > span {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: var(--deep);
    background: var(--cyan-light);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

.project-points p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
}

.project-points strong {
    display: block;
    color: var(--white);
    font-size: 0.84rem;
}

.project-content .btn {
    align-self: flex-start;
}

.cta-section {
    padding: 70px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    min-height: 280px;
    padding: clamp(40px, 6vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.3), transparent 28%),
        linear-gradient(120deg, var(--cyan-light), #72dadd 50%, var(--turquoise));
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cta-card::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -7%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, 0.08),
        0 0 0 110px rgba(255, 255, 255, 0.04);
}

.cta-card > * {
    position: relative;
    z-index: 2;
}

.cta-card > div:first-child {
    max-width: 720px;
}

.cta-card__label {
    color: var(--deep);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.cta-card h2 {
    margin-top: 12px;
    color: var(--deep);
    font-size: clamp(2rem, 4.2vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.06;
}

.cta-card p {
    max-width: 610px;
    margin-top: 15px;
    color: rgba(6, 59, 70, 0.76);
    font-size: 0.88rem;
}

.cta-card__actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cta-email {
    color: var(--deep);
    border-bottom: 1px solid rgba(6, 59, 70, 0.4);
    font-size: 0.75rem;
    font-weight: 800;
}

.site-footer {
    padding-top: 78px;
    color: rgba(255, 255, 255, 0.62);
    background: var(--deep-2);
}

.footer-grid {
    padding-bottom: 62px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 55px;
}

.brand--footer .brand__text strong {
    color: var(--white);
}

.brand--footer .brand__logo {
    height: 62px;
    width: 62px;
}

.brand--footer .brand__text small {
    color: var(--cyan-light);
}

.brand--footer .brand__symbol i:nth-child(3) {
    background: var(--white);
}

.footer-brand > p {
    max-width: 350px;
    margin-top: 22px;
    font-size: 0.78rem;
    line-height: 1.8;
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.66rem;
    font-weight: 800;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.footer-social a:hover {
    color: var(--deep);
    background: var(--cyan-light);
    border-color: var(--cyan-light);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.73rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--cyan-light);
}

.footer-bottom {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.67rem;
}

.footer-bottom a {
    color: var(--cyan-light);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--whatsapp);
    border: 5px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(9, 70, 45, 0.28);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp:hover {
    box-shadow: 0 20px 40px rgba(9, 70, 45, 0.36);
    transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.detail-page {
    background: var(--white);
}

.detail-hero {
    position: relative;
    padding: 30px 0 90px;
    background:
        radial-gradient(circle at 100% 0%, rgba(98, 203, 229, 0.16), transparent 35%),
        var(--ice);
    overflow: hidden;
}

.detail-hero__line {
    position: absolute;
    top: 0;
    right: 8%;
    width: 34%;
    height: 100%;
    opacity: 0.28;
    background: repeating-linear-gradient(
        90deg,
        transparent 0 64px,
        rgba(8, 121, 134, 0.22) 64px 65px
    );
    transform: skewX(-10deg);
}

.breadcrumbs {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    color: #72878d;
    font-size: 0.68rem;
}

.breadcrumbs a {
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--turquoise-dark);
}

.breadcrumbs strong {
    max-width: 460px;
    color: var(--deep);
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-detail {
    position: relative;
    z-index: 2;
}

.detail-loading {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 70px;
}

.detail-loading__media,
.detail-loading__content span {
    background:
        linear-gradient(
            100deg,
            rgba(220, 237, 240, 0) 25%,
            rgba(255, 255, 255, 0.75) 45%,
            rgba(220, 237, 240, 0) 65%
        ),
        #dcebed;
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
}

.detail-loading__media {
    border-radius: var(--radius-lg);
}

.detail-loading__content {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.detail-loading__content span {
    display: block;
    height: 25px;
    border-radius: 999px;
}

.detail-loading__content span:nth-child(1) {
    width: 30%;
}

.detail-loading__content span:nth-child(2) {
    width: 95%;
    height: 75px;
}

.detail-loading__content span:nth-child(3) {
    width: 84%;
}

.detail-loading__content span:nth-child(4) {
    width: 65%;
    height: 60px;
}

.detail-loading__content span:nth-child(5) {
    width: 100%;
    height: 56px;
}

.product-detail:not(:has(.detail-loading)) {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    align-items: start;
    gap: clamp(45px, 7vw, 90px);
}

.product-media-panel {
    min-width: 0;
}

.product-media-panel__top {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--turquoise-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-media-panel__top small {
    color: #7a8f95;
}

.product-main-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    padding: clamp(16px, 3vw, 30px);
    object-fit: contain;
}

.product-main-image__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 9px 14px;
    color: var(--white);
    background: rgba(6, 59, 70, 0.9);
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.product-thumbnail-row {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-thumbnail {
    flex: 0 0 auto;
    width: 82px;
    height: 70px;
    padding: 4px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.product-thumbnail.active {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 2px rgba(0, 166, 166, 0.12);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.product-thumbnail-note {
    display: flex;
    flex-direction: column;
}

.product-thumbnail-note span {
    color: var(--deep);
    font-size: 0.7rem;
    font-weight: 800;
}

.product-thumbnail-note small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.62rem;
}

.product-summary {
    padding-top: 24px;
}

.product-summary__category {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--turquoise-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-summary__category span {
    width: 30px;
    height: 2px;
    background: var(--turquoise);
}

.product-summary h1 {
    margin-top: 17px;
    color: var(--deep);
    font-size: clamp(2.4rem, 4.6vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.product-summary__intro {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.product-availability {
    margin-top: 27px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.availability-indicator {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(24, 164, 107, 0.12);
}

.product-availability > div {
    display: flex;
    flex-direction: column;
}

.product-availability strong {
    color: var(--deep);
    font-size: 0.75rem;
}

.product-availability small {
    color: var(--muted);
    font-size: 0.61rem;
}

.product-price-block {
    margin-top: 27px;
    display: flex;
    flex-direction: column;
}

.product-price-block small {
    color: var(--muted);
    font-size: 0.67rem;
}

.product-price-block strong {
    margin-top: 2px;
    color: var(--turquoise-dark);
    font-size: 2.65rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.product-price-block span {
    margin-top: 6px;
    color: #85989d;
    font-size: 0.58rem;
}

.product-actions {
    margin-top: 27px;
    display: grid;
    gap: 10px;
}

.product-service-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.product-service-list > div {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.product-service-list svg {
    flex: 0 0 auto;
    width: 20px;
    fill: none;
    stroke: var(--turquoise-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-service-list span {
    color: var(--muted);
    font-size: 0.58rem;
}

.product-service-list strong {
    display: block;
    color: var(--deep);
    font-size: 0.67rem;
}

.product-not-found {
    min-height: 560px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
}

.product-not-found > span {
    color: var(--cyan);
    font-size: 4rem;
    font-weight: 800;
}

.product-not-found h1 {
    margin-top: 10px;
    color: var(--deep);
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.product-not-found p {
    max-width: 520px;
    margin: 12px 0 25px;
    font-size: 0.86rem;
}

.product-information {
    background: var(--white);
}

.information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.7fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
}

.information-copy h2 {
    max-width: 650px;
    font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.information-copy > p {
    max-width: 700px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.85;
}

.feature-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
}

.feature-item {
    padding: 13px 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border-bottom: 1px solid var(--line);
}

.feature-item span {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--turquoise);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 900;
}

.feature-item p {
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
}

.specification-card {
    padding: 32px;
    background: var(--ice);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.specification-card__header {
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.specification-card__header span {
    color: var(--deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.specification-card__header small {
    color: var(--turquoise-dark);
    font-size: 0.63rem;
    font-weight: 800;
}

.specification-card dl > div {
    padding: 15px 0;
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.specification-card dt {
    color: #778c92;
    font-size: 0.67rem;
}

.specification-card dd {
    color: var(--deep);
    font-size: 0.7rem;
    font-weight: 700;
}

.specification-download {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--deep);
    font-size: 0.73rem;
    font-weight: 800;
}

.specification-download > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--turquoise-dark);
    border-radius: 50%;
}

.specification-download svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.related-section {
    background: var(--ice);
}

.product-card--related .product-card__media {
    aspect-ratio: 1.42 / 1;
}

.product-card--related .product-card__body > p {
    display: none;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 110%;
    }
}

@keyframes skeleton {
    to {
        background-position-x: -200%;
    }
}

@media (max-width: 1120px) {
    .navbar {
        gap: 20px;
    }

    .site-nav {
        gap: 20px;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    }

    .hero h1 {
        font-size: clamp(3.2rem, 6vw, 5rem);
    }

    .product-grid,
    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-grid {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
        gap: 35px;
    }

    .product-detail:not(:has(.detail-loading)),
    .detail-loading {
        gap: 45px;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 85px 0;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .site-nav {
        position: fixed;
        z-index: 999;
        top: 118px;
        right: 0;
        bottom: 0;
        left: 0;
        height: calc(100dvh - 118px);
        max-height: calc(100dvh - 118px);
        padding: 40px 24px 80px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
        background: var(--white);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }

    .menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 20px 0;
        color: var(--deep);
        border-bottom: 1px solid var(--line);
        font-size: 1.15rem;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero {
        min-height: 820px;
    }

    .hero__grid {
        min-height: 820px;
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 720px;
    }

    .architectural-scene {
        position: absolute;
        right: -190px;
        bottom: -35px;
        width: 690px;
        height: 560px;
        opacity: 0.45;
    }

    .hero__content {
        padding-bottom: 110px;
    }

    .scene-label {
        display: none;
    }

    .category-strip__grid {
        grid-template-columns: repeat(8, minmax(170px, 1fr));
    }

    .section-heading {
        align-items: flex-start;
    }

    .catalog-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-search {
        max-width: 420px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .value-intro {
        position: static;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-visual {
        min-height: 520px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-card__actions {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .product-detail:not(:has(.detail-loading)),
    .detail-loading {
        grid-template-columns: 1fr;
    }

    .detail-loading__media {
        min-height: 550px;
    }

    .product-summary {
        padding-top: 10px;
    }

    .information-grid {
        grid-template-columns: 1fr;
    }

    .specification-card {
        max-width: 650px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .announcement__content {
        justify-content: center;
    }

    .announcement__content > p {
        display: none;
    }

    .announcement__links {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }

    .navbar {
        min-height: 74px;
    }

    .brand__symbol {
        width: 34px;
        height: 34px;
    }

    .brand__logo {
        height: 45px;
        width: 45px;
    }

    .brand__text strong {
        font-size: 1.17rem;
    }

    .brand__text small {
        font-size: 0.52rem;
    }

    .nav-search {
        display: none;
    }

    .site-nav {
        top: 108px;
        height: calc(100dvh - 108px);
        max-height: calc(100dvh - 108px);
    }

    .hero {
        min-height: 780px;
    }

    .hero__grid {
        min-height: 780px;
        padding-top: 55px;
        padding-bottom: 70px;
    }

    .hero__content {
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.15rem);
    }

    .hero__description {
        font-size: 0.92rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero-search {
        min-height: 64px;
        padding-left: 17px;
    }

    .search-submit {
        display: none;
    }

    .hero__metrics {
        gap: 19px;
    }

    .hero__metrics > div {
        flex: 1;
    }

    .hero__metrics span {
        font-size: 0.58rem;
    }

    .architectural-scene {
        right: -280px;
        bottom: -25px;
        opacity: 0.32;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .section-heading h2,
    .value-intro h2,
    .project-content h2,
    .information-copy h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .catalog-count {
        padding: 0;
        display: inline-flex;
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
        border: 0;
    }

    .catalog-count strong {
        font-size: 1.6rem;
    }

    .catalog-search {
        min-width: 0;
        width: 100%;
        max-width: none;
    }

    .filter-list {
        flex-wrap: nowrap;
        padding-bottom: 5px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .filter-list::-webkit-scrollbar {
        display: none;
    }

    .filter-button {
        flex: 0 0 auto;
    }

    .product-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .product-card__media {
        aspect-ratio: 1.32 / 1;
    }

    .value-cards {
        grid-template-columns: 1fr;
    }

    .value-card:first-child {
        grid-column: auto;
    }

    .value-card {
        min-height: 280px;
    }

    .project-card {
        width: min(calc(100% - 20px), var(--container));
    }

    .project-visual {
        min-height: 400px;
    }

    .project-content {
        padding: 42px 28px 48px;
    }

    .cta-section {
        padding: 45px 0;
    }

    .cta-card {
        min-height: 0;
        padding: 38px 25px;
        border-radius: 20px;
    }

    .cta-card__actions,
    .cta-card__actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 54px;
        height: 54px;
    }

    .detail-hero {
        padding-top: 22px;
        padding-bottom: 65px;
    }

    .breadcrumbs strong {
        max-width: 180px;
    }

    .detail-loading {
        min-height: 580px;
    }

    .detail-loading__media {
        min-height: 380px;
    }

    .product-main-image {
        aspect-ratio: 1 / 1;
        border-radius: 18px;
    }

    .product-summary h1 {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .product-service-list {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .specification-card {
        padding: 25px 20px;
    }

    .specification-card dl > div {
        grid-template-columns: 0.75fr 1.25fr;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.72rem;
    }

    .hero__metrics {
        flex-wrap: wrap;
    }

    .hero__metrics > div {
        min-width: 85px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ==========================================================================
   ESTILOS PREMIUM DE LA PROMOCIÓN SEMANAL
   ========================================================================== */

.promo-section {
    padding: 0 0 70px 0; /* Empuja el footer hacia abajo */
    background: var(--white);
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 35px;
    background: linear-gradient(145deg, var(--white), var(--ice));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* La línea turquesa elegante al costado */
.promo-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--turquoise-dark);
}

.promo-media {
    flex: 0 0 190px;
    height: 190px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(8, 47, 57, 0.08);
}

.promo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card:hover .promo-media img {
    transform: scale(1.05);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-badge {
    background: var(--turquoise-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.promo-content h3 {
    color: var(--deep);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.promo-content p {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 22px;
    max-width: 650px;
    line-height: 1.6;
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    flex-wrap: wrap;
}

.promo-price strong {
    color: var(--turquoise-dark);
    font-size: 2.3rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* Responsividad para móviles de la tarjeta de promo */
@media (max-width: 800px) {
    .promo-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
        gap: 25px;
    }
    .promo-media {
        width: 100%;
        height: 220px;
        flex: auto;
    }
    .promo-price {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ==========================================================================
   GALERÍA DE PROYECTOS DESTACADOS
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--ice);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 59, 70, 0.92) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-card:hover .gallery-card__overlay {
    opacity: 1;
}

.gallery-card__overlay h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gallery-card__overlay span {
    color: var(--cyan-light);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card__overlay {
        opacity: 1; /* En móviles siempre visible para no depender del hover */
        background: linear-gradient(to top, rgba(6, 59, 70, 0.95) 0%, transparent 75%);
    }
}
/* ==========================================================================
   CARRUSEL DE PROYECTOS (CSS SCROLL SNAP)
   ========================================================================== */
.carousel-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--deep);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: all var(--transition);
}

.carousel-btn svg { width: 20px; height: 20px; }

.carousel-btn:hover {
    color: var(--white);
    background: var(--turquoise-dark);
    border-color: var(--turquoise-dark);
    box-shadow: 0 8px 20px rgba(8, 121, 134, 0.2);
}

.carousel-container {
    width: 100%;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    
    /* Ocultar barra de scroll nativa para un diseño limpio */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--ice);
    box-shadow: var(--shadow-sm);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 59, 70, 0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.carousel-slide:hover .carousel-slide__overlay { opacity: 1; }

.carousel-slide__overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsividad Estricta */
@media (max-width: 900px) {
    .carousel-slide { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
    .carousel-header { flex-direction: column; align-items: flex-start; }
    .carousel-slide { flex: 0 0 100%; }
    .carousel-slide__overlay { opacity: 1; background: linear-gradient(to top, rgba(6, 59, 70, 0.9) 0%, transparent 60%); }
}
/* ==========================================================================
   HERO SECTION - IMAGEN REAL (OPTIMIZACIÓN)
   ========================================================================== */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px; /* Asegura un alto mínimo en móviles */
    overflow: hidden;
    /* Ajusta los bordes redondeados solo del lado izquierdo según tu diseño */
    border-radius: var(--radius-lg, 16px) 0 0 var(--radius-lg, 16px);
}

.hero-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fundamental: Recorta la imagen sin deformarla */
    object-position: center 30%; /* Enfoca la parte superior/media de la puerta */
    display: block;
}

/* Overlay sutil para que la imagen real no desentone con la tarjeta oscura */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.05), rgba(6, 59, 70, 0.35));
    pointer-events: none;
}

/* Estilos para la etiqueta flotante (ajusta según tus variables CSS actuales) */
.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white, #ffffff);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.hero-badge__label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--cyan-dark, #054f5d);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge__text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep, #1a1a1a);
}

/* Responsividad */
@media (max-width: 768px) {
    .hero-image-wrapper {
        border-radius: var(--radius-lg, 16px) var(--radius-lg, 16px) 0 0;
        min-height: 300px;
    }
}
/* ==========================================================================
   TARJETAS DE SOLUCIONES CON FONDOS FOTOGRÁFICOS REALES
   ========================================================================== */
.value-card.value-card--img {
    position: relative;
    overflow: hidden;
    background-color: var(--ice);
    border: none;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
}

.value-card.value-card--img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 1;
}

.value-card.value-card--img:hover img {
    transform: scale(1.06);
}

.value-card__overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(to top, rgba(6, 59, 70, 0.95) 0%, rgba(6, 59, 70, 0.45) 65%, transparent 100%);
}

.value-card.value-card--img .value-card__number {
    align-self: flex-end;
    color: var(--cyan-light);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.value-card.value-card--img h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card.value-card--img p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}
