:root {
    --topbar-bg: rgba(43, 53, 69, 0.7);
    --topbar-border: rgba(255, 255, 255, 0.12);
    --panel-bg: rgba(7, 13, 22, 0.83);
    --panel-border: rgba(255, 255, 255, 0.1);
    --text-main: #f4f7fb;
    --text-soft: #d8e0e8;
    --accent-red: #d30e0e;
    --accent-red-dark: #980707;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Barlow Condensed", sans-serif;
    background: #030508;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-image: url("assets/hero.webp");
    background-size: cover;
    background-position: center 32%;
}

.hero::before {
    content: none;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 88px;
    padding: 0 clamp(72px, 7vw, 160px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    background: linear-gradient(180deg,
            rgba(18, 26, 38, 0.46) 0%,
            rgba(22, 32, 46, 0.42) 55%,
            rgba(16, 24, 36, 0.52) 100%);
    border-bottom: 1px solid rgba(210, 220, 235, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 1px 0 rgba(255, 255, 255, 0.10),
        0 2px 24px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px) saturate(140%) brightness(0.88);
    -webkit-backdrop-filter: blur(14px) saturate(140%) brightness(0.88);
    z-index: 50;
}

.topbar-menu-panel {
    display: contents;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(229, 236, 245, 0.35);
    border-radius: 10px;
    background: rgba(13, 22, 34, 0.5);
    color: rgba(246, 248, 251, 0.98);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-toggle[aria-expanded="true"] {
    background: rgba(13, 22, 34, 0.74);
    border-color: rgba(229, 236, 245, 0.55);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(2, 6, 12, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 34;
}

body.menu-open {
    overflow: hidden;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: clamp(140px, 11.5vw, 210px);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(52px, 4.8vw, 76px);
}

.menu-panel-head {
    display: none;
}

.menu-language {
    display: none;
}

.menu-panel-brand {
    display: inline-flex;
    align-items: center;
    width: 132px;
}

.menu-panel-logo {
    display: block;
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 3.8vw, 72px);
    transform: translateX(clamp(56px, 4.8vw, 110px));
}

.main-nav a,
.topbar-right a,
.topbar-right .language-toggle {
    color: rgba(246, 248, 251, 0.96);
    font-family: "Barlow Condensed", sans-serif;
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-size: clamp(1.25rem, 1.48vw, 1.72rem);
    line-height: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.18s ease, text-shadow 0.18s ease;
}

.main-nav a:hover,
.topbar-right a:hover,
.topbar-right .language-toggle:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.35), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: clamp(8px, 0.75vw, 12px);
}

.topbar-right-desktop {
    display: flex;
}

.topbar-right-mobile {
    display: none;
}

.menu-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-switch-desktop {
    margin-left: clamp(8px, 0.8vw, 14px);
    margin-right: clamp(12px, 1.2vw, 20px);
}

.language-switch-desktop .language-toggle {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.language-switch-desktop .language-toggle:hover {
    border: 0;
    background: transparent;
}

.language-switch-desktop .language-toggle svg {
    width: 23px;
    height: 23px;
}

.language-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(224, 232, 244, 0.34);
    border-radius: 10px;
    padding: 0;
    background: rgba(10, 18, 28, 0.48);
    color: rgba(246, 248, 251, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}

.language-toggle svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.language-toggle:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(10, 18, 28, 0.75);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid rgba(224, 232, 244, 0.36);
    background: rgba(12, 20, 31, 0.94);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 31;
}

.language-menu.align-left {
    left: 0 !important;
    right: auto !important;
}

.language-menu.align-right {
    right: 0 !important;
    left: auto !important;
}

.language-menu[hidden] {
    display: none;
}

.language-option {
    width: 100%;
    border: 0;
    background: transparent;
    color: rgba(243, 247, 252, 0.95);
    text-align: left;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.1;
    padding: 9px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-option:hover,
.language-option.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.language-option-label {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.language-option-code {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.language-option-name {
    opacity: 0.92;
}

.flag {
    position: relative;
    width: 20px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid rgba(12, 18, 28, 0.45);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.flag-us {
    background: repeating-linear-gradient(180deg, #b22234 0 2px, #ffffff 2px 4px);
}

.flag-us::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 42%;
    height: 56%;
    background: #3c3b6e;
}

.flag-es {
    background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(246, 248, 251, 0.95);
    transition: color 0.18s ease, transform 0.18s ease;
}

.icon-link:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.icon-link svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.phone {
    margin-left: clamp(24px, 2.2vw, 38px);
    white-space: nowrap;
    letter-spacing: 0.025em;
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: min(94%, 860px);
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-content h1 {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.9rem, 6.35vw, 6.7rem);
    line-height: 0.92;
    letter-spacing: 0.026em;
    text-transform: uppercase;
    color: #f7f8fa;
    text-shadow:
        0 4px 0 rgba(0, 0, 0, 0.36),
        0 10px 28px rgba(0, 0, 0, 0.52);
}

.hero-content p {
    margin: 4px 0 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    letter-spacing: 0.04em;
    color: var(--text-main);
    text-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.cta {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    min-height: 54px;
    padding: 8px 24px;
    border-radius: 10px;
    font-size: clamp(1.45rem, 1.45vw, 1.82rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-transform: none;
    background: linear-gradient(180deg, #f61f1f 0%, var(--accent-red) 60%, var(--accent-red-dark) 100%);
    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sales-types {
    background: #f3f5f7;
    color: #101826;
    padding: clamp(52px, 6.5vw, 88px) clamp(18px, 4.6vw, 68px) clamp(56px, 7vw, 98px);
}

.sales-types-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.sales-types h2 {
    margin: 0;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 3.7vw, 3.7rem);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.sales-divider {
    margin: 18px auto 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #1b2d3f;
}

.sales-divider span {
    width: clamp(70px, 8vw, 120px);
    height: 1px;
    background: rgba(27, 45, 63, 0.35);
}

.sales-divider i {
    font-size: 1.15rem;
}

.reviews-section {
    background: #eef2f7;
    color: #101826;
    padding: clamp(22px, 3.2vw, 38px) clamp(14px, 3.8vw, 46px) clamp(46px, 6vw, 70px);
}

.reviews-inner {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.reviews-title {
    margin: 0 0 clamp(14px, 2vw, 22px);
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 3.7vw, 3.7rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #1b2d3f;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.7vw, 18px);
}

.review-card {
    border: 1px solid #d7e1ec;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(9, 24, 41, 0.09);
    display: flex;
    flex-direction: column;
    width: min(100%, 440px);
    justify-self: center;
}

.review-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    display: block;
}

.review-content {
    padding: 13px 13px 15px;
    display: grid;
    gap: 7px;
}

.review-name {
    margin: 0;
    font-size: clamp(1.12rem, 1.2vw, 1.3rem);
    font-weight: 700;
    color: #15293f;
}

.review-stars {
    margin: 0;
    color: #f5b000;
    font-size: clamp(0.96rem, 1.04vw, 1.12rem);
    letter-spacing: 0.12em;
}

.review-text {
    margin: 0;
    color: #223247;
    font-size: clamp(1.03rem, 1.11vw, 1.2rem);
    line-height: 1.23;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 42px);
}

.sales-card {
    text-align: center;
}

.sales-icon {
    width: clamp(90px, 8vw, 128px);
    height: clamp(90px, 8vw, 128px);
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #193640;
    color: #ecf2f6;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(8, 22, 31, 0.16);
}

.sales-icon i {
    font-size: clamp(2rem, 2.2vw, 2.5rem);
}

.sales-card h3 {
    margin: 0 0 18px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.35rem, 1.6vw, 1.9rem);
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-transform: uppercase;
}

.sales-card p {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(1.25rem, 1.33vw, 1.65rem);
    line-height: 1.24;
    color: #222f3e;
    text-align: left;
}

.site-footer-wrap {
    position: relative;
    padding: 0;
    background: #000000;
    font-family: "Barlow Condensed", sans-serif;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: clamp(30px, 3.4vw, 46px) clamp(20px, 4.2vw, 64px);
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.35fr;
    gap: clamp(18px, 2.3vw, 36px);
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #000000;
}

.site-footer-brand {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 0;
}

.site-footer-brand img {
    display: block;
    width: clamp(210px, 19vw, 320px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.34));
}

.site-footer-column {
    display: grid;
    align-content: start;
    gap: 12px;
}

.site-footer-column h3 {
    margin: 0;
    font-size: clamp(1.44rem, 1.58vw, 1.95rem);
    font-weight: 600;
    letter-spacing: 0.015em;
    color: rgba(245, 249, 252, 0.96);
}

.site-footer-column ul {
    margin: 0;
    list-style: disc;
    list-style-position: outside;
    padding-left: 16px;
    display: grid;
    gap: 12px;
}

.site-footer-column li,
.site-footer-contact p {
    margin: 0;
    color: rgba(225, 234, 243, 0.92);
    font-size: clamp(1.14rem, 1.18vw, 1.42rem);
    line-height: 1.35;
}

.site-footer-column a {
    color: rgba(236, 243, 249, 0.94);
}

.site-footer-column a:hover {
    color: #ffffff;
}

.site-footer-contact {
    gap: 14px;
}

.site-footer-social {
    margin: 4px 0 0;
    padding-left: 16px;
    list-style: disc;
    display: grid;
    gap: 8px;
}

.site-footer-social a {
    color: rgba(236, 243, 249, 0.94);
    font-size: clamp(1.06rem, 1.04vw, 1.26rem);
    line-height: 1.3;
}

.site-footer-social a:hover {
    color: #ffffff;
}

.site-footer-contact strong {
    color: #ffffff;
    font-weight: 700;
}

.info-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
    min-height: 132px;
    padding: 14px clamp(18px, 3vw, 54px) 12px;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: clamp(20px, 3.3vw, 54px);
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.62), var(--panel-bg) 28%);
    border-top: 1px solid var(--panel-border);
    backdrop-filter: blur(4px);
}

.info-column {
    display: grid;
    align-content: start;
    gap: 2px;
}

.info-column h2 {
    margin: 0 0 2px;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-size: clamp(2.05rem, 2.25vw, 2.8rem);
}

.info-column a,
.info-column p {
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(1.62rem, 1.52vw, 2.05rem);
    line-height: 1.16;
}

.info-column a:hover {
    color: #ffffff;
}

.map-card {
    position: relative;
    width: min(100%, 495px);
    min-height: 84px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background-image:
        linear-gradient(to bottom, rgba(226, 232, 238, 0.13), rgba(226, 232, 238, 0.13)),
        url("https://staticmap.openstreetmap.de/staticmap.php?center=32.6628,-97.2203&zoom=14&size=640x180&markers=32.6628,-97.2203,red-pushpin");
    background-size: cover;
    background-position: center;
}

.address-pill {
    position: absolute;
    left: 12px;
    top: 10px;
    max-width: calc(100% - 54px);
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(242, 246, 250, 0.95);
    color: #1a2734;
    font-size: clamp(1rem, 1.03vw, 1.3rem);
    font-weight: 600;
    line-height: 1.2;
}

.map-zoom {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: #1e2a36;
    font-size: 1.05rem;
    font-weight: 700;
}

.right-column {
    justify-items: start;
}

.social-row {
    margin-top: 6px;
    display: flex;
    gap: 12px;
}

.social-row .icon-link {
    width: 27px;
    height: 27px;
}

.whatsapp {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(180deg, #1fc65d, #109741);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.38);
}

.whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 1280px) {
    .hero-content {
        transform: translate(-50%, -50%);
    }

    .hero-content h1 {
        font-size: clamp(3.5rem, 7.3vw, 5.9rem);
    }

    .hero-content p {
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    }

    .cta {
        min-width: 188px;
        min-height: 50px;
        font-size: clamp(1.35rem, 1.6vw, 1.65rem);
    }

    .info-column h2 {
        font-size: clamp(1.65rem, 2vw, 2.3rem);
    }

    .info-column a,
    .info-column p {
        font-size: clamp(1.35rem, 1.44vw, 1.8rem);
    }
}

@media (max-width: 1080px) {
    .topbar {
        grid-template-columns: 1fr;
        height: auto;
        justify-items: center;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-left: clamp(20px, 4vw, 34px);
        padding-right: clamp(20px, 4vw, 34px);
        gap: 10px;
    }

    .main-nav {
        transform: none;
    }

    .topbar-right {
        gap: 10px;
        justify-self: center;
    }

    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .language-switch {
        margin-left: 0;
        margin-right: 6px;
    }

    .phone {
        margin-left: 0;
    }

    .main-nav a,
    .topbar-right a,
    .topbar-right .language-toggle {
        font-size: clamp(1.14rem, 1.8vw, 1.45rem);
    }

    .hero-content {
        top: 46%;
    }

    .info-strip {
        grid-template-columns: 1fr;
        position: relative;
        gap: 16px;
        padding-top: 18px;
        padding-bottom: 84px;
    }

    .map-card {
        width: 100%;
    }

    .whatsapp {
        right: 18px;
        bottom: 18px;
    }

    .sales-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sales-card {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .topbar {
        grid-template-columns: 1fr auto 1fr;
        height: 76px;
        padding: 0 14px;
        gap: 0;
        align-items: center;
        justify-items: stretch;
    }

    .brand {
        grid-column: 2;
        justify-self: center;
        width: auto;
    }

    .brand-logo {
        height: 46px;
    }

    .menu-toggle {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
        z-index: 44;
    }

    .topbar-right-desktop {
        display: none;
    }

    .topbar-menu-panel {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: fixed;
        top: 0;
        right: 0;
        width: min(84vw, 340px);
        height: 100dvh;
        padding: 16px 20px 32px;
        border-left: 1px solid rgba(224, 232, 244, 0.22);
        background: rgba(8, 15, 24, 0.98);
        box-shadow: -16px 0 34px rgba(0, 0, 0, 0.34);
        transform: translateX(104%);
        transition: transform 0.22s ease;
        z-index: 42;
        overflow-y: auto;
    }

    .topbar-menu-panel.is-open {
        transform: translateX(0);
    }

    .menu-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .menu-panel-brand {
        width: 124px;
    }

    .language-switch-panel {
        margin: 0;
    }

    .menu-language {
        display: flex;
        margin-top: -10px;
    }

    .mobile-menu-backdrop {
        display: block;
    }

    .mobile-menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav {
        transform: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 24px;
    }

    .topbar-menu-panel .main-nav a {
        width: 100%;
        display: block;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(224, 232, 244, 0.2);
        letter-spacing: 0.03em;
    }

    .topbar-menu-panel .main-nav a:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .main-nav a,
    .topbar-right a,
    .topbar-right .language-toggle {
        font-size: 1.36rem;
    }

    .topbar-right-mobile {
        display: flex;
        justify-self: auto;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 14px;
        flex-direction: column;
        margin-top: auto;
        padding-top: 22px;
        border-top: 1px solid rgba(224, 232, 244, 0.18);
    }

    .language-menu {
        left: 0;
        right: auto;
        min-width: 178px;
    }

    .menu-language .language-menu {
        left: auto;
        right: 0;
    }

    .icon-link {
        width: 24px;
        height: 24px;
    }

    .phone {
        margin-left: 0;
        width: auto;
        letter-spacing: 0.02em;
    }

    .menu-social {
        order: 3;
        margin-top: 12px;
        gap: 28px;
    }

    .hero {
        min-height: clamp(510px, 92vh, 650px);
        background-position: center 34%;
    }

    .hero-content {
        position: absolute;
        left: 50%;
        top: 56%;
        transform: translate(-50%, -50%);
        width: min(94%, 620px);
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: clamp(3.15rem, 15vw, 4.65rem);
    }

    .hero-content p {
        margin-top: 2px;
        font-size: clamp(1.7rem, 8vw, 2.35rem);
    }

    .cta {
        margin-top: 12px;
        min-width: 186px;
        min-height: 52px;
        font-size: 1.72rem;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 18px;
    }

    .site-footer-brand {
        justify-items: center;
    }

    .whatsapp {
        width: 54px;
        height: 54px;
    }

    .whatsapp svg {
        width: 30px;
        height: 30px;
    }

    .sales-types {
        padding-left: 14px;
        padding-right: 14px;
    }

    .sales-card p {
        text-align: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .review-text {
        text-align: center;
    }
}