* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    color: var(--ink);
    background: #f8fafc;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: none;
}

img {
    max-width: 100%;
}

a {
    transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

button {
    font: inherit;
}

.container-shell {
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-soft {
    background: var(--bg-soft);
}

.section-plain {
    background: #fff;
}

.section-warm {
    background: var(--bg-warm);
}

.title-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid color-mix(in srgb, var(--primary-color) 26%, white 74%);
    border-radius: 999px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .70rem;
    background: rgba(255, 255, 255, .72);
}

.section-title {
    font-size: clamp(2.4rem, 4vw, 4.4rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--secondary-color);
}

.section-heading {
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--secondary-color);
}

.section-lead {
    max-width: 780px;
    margin: 0 auto;
    color: #687385;
    line-height: 1.9;
    font-size: 1.08rem;
}

.premium-card {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
    border-color: rgba(191, 157, 103, .30);
}

.premium-button {
    transition: transform .2s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.topbar {
    background: linear-gradient(90deg, color-mix(in srgb, var(--primary-color) 96%, #fff 4%), #ea6a00 80%);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.topbar-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    font-size: .915rem;
    font-weight: 600;
    letter-spacing: .005em;
    text-align: center;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    opacity: .99;
    white-space: nowrap;
}

.topbar-item .icon {
    width: 15px;
    height: 15px;
    display: inline-flex;
    opacity: .95;
    flex-shrink: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 24, 39, .06);
}

.site-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(180px, 280px) 1fr auto;
    align-items: center;
    gap: 26px;
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
    max-width: 280px;
    text-decoration: none;
}

.brand-wrap img {
    height: auto;
    max-height: 58px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-width: 0;
}

.main-nav a {
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -.012em;
    position: relative;
    padding: 10px 0;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--primary-color) 82%, white 18%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.header-btn {
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
}

.btn-soft {
    background: #fff;
    color: #475569;
    border: 1px solid #d7dde6;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid transparent;
}

.mobile-menu-btn {
    display: none;
    background: #fff;
    border: 1px solid #dde4ee;
    border-radius: 18px;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    color: #334155;
}

.mobile-menu-btn svg {
    width: 22px;
    height: 22px;
}

#mobileMenu {
    display: none;
    border-top: 1px solid rgba(17, 24, 39, .06);
    background: #fff;
}

#mobileMenu.open {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 18px 0 22px;
}

.mobile-menu-links a {
    padding: 12px 0;
    color: #334155;
    font-weight: 700;
    text-decoration: none;
}

.footer {
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary-color) 42%, #4a2c12 58%) 0%, color-mix(in srgb, var(--primary-color) 55%, #603613 45%) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .09;
    background-image:
        linear-gradient(rgba(255, 255, 255, .28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .28) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 100%);
}

.footer-top {
    background: color-mix(in srgb, var(--primary-color) 28%, #2c1608 72%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: none !important;
    display: none !important;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.footer-top-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.footer-top-text {
    max-width: 760px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .84);
    margin-top: 12px;
}

.footer-top-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-top-btn {
    min-width: 180px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .24);
    transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.footer-top-btn>span:first-child {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    line-height: 0;
    color: inherit;
}

.footer-top-btn>span:first-child svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    fill: none;
}

.footer-top-btn.primary {
    background: #fff;
    color: #111827;
    border-color: transparent;
}

.footer-top-btn.secondary {
    background: transparent;
    color: #fff;
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.1fr) max-content max-content max-content;
    gap: 34px;
    justify-content: space-between;
    align-items: start;
}

.footer-grid>div:nth-child(2),
.footer-grid>div:nth-child(3),
.footer-grid>div:nth-child(4) {
    min-width: 220px;
}

.footer-brand-logo img {
    height: 72px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-label {
    margin-top: 30px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .95rem;
}

.footer h3 {
    font-size: 1.08rem;
    margin: 0 0 22px;
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: rgba(255, 255, 255, .28);
    border-radius: 999px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
}

.footer-list a:hover {
    opacity: 1;
    color: #fff;
    transform: translateX(3px);
}

.footer-list a::before {
    content: "›";
    color: rgba(255, 255, 255, .45);
    margin-right: 10px;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}

.footer-list a:hover::before {
    color: #fff;
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.footer-contact-item .iconbox {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item .iconbox svg {
    width: 22px;
    height: 22px;
}

.footer-contact-item small {
    display: block;
    color: rgba(255, 255, 255, .62);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .78rem;
    margin-bottom: 4px;
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 700;
}

.footer-hours {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-hours strong {
    white-space: nowrap;
    font-size: .98rem;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .76);
    font-size: .98rem;
}

.footer-bottom-links {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .62);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
}

.footer-bottom-links span {
    padding: 0 12px;
    color: rgba(255, 255, 255, .38);
}

.floating-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 154px;
    height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: #55d567;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.02rem;
    letter-spacing: -.01em;
    box-shadow: 0 12px 26px rgba(85, 213, 103, .24);
    border: none;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(85, 213, 103, .30);
}

.floating-whatsapp .wa-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex: 0 0 22px;
}

.floating-whatsapp .wa-icon img {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px;
    min-height: 22px;
    display: block;
    object-fit: contain;
}

.floating-whatsapp .wa-label {
    display: inline-block;
    line-height: 1;
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .2s ease, height .2s ease, background .2s ease, border-color .2s ease, transform .08s ease;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0a813;
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.4px solid rgba(224, 168, 19, .7);
    background: transparent;
}

.cursor-ring.cursor-hover {
    width: 52px;
    height: 52px;
    border-color: rgba(201, 140, 43, .58);
    background: rgba(201, 140, 43, .05);
}

.cursor-dot.cursor-hover {
    width: 12px;
    height: 12px;
    background: #1f2937;
}

.magnetic-target {
    display: inline-flex;
}

body.no-custom-cursor {
    cursor: auto;
}

body.no-custom-cursor .cursor-dot,
body.no-custom-cursor .cursor-ring {
    display: none;
}

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

@media (max-width:1180px) {
    .site-header-inner {
        grid-template-columns: minmax(170px, 240px) 1fr auto;
        gap: 18px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: .96rem;
    }

    .header-btn {
        min-height: 46px;
        padding: 0 18px;
    }
}

@media (max-width:1100px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 76px;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

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

@media (max-width:900px) {
    .footer-top-inner {
        grid-template-columns: 1fr;
    }

    .footer-top-actions {
        justify-content: flex-start;
    }
}

@media (max-width:640px) {
    .container-shell {
        padding-left: 18px;
        padding-right: 18px;
    }

    .topbar-items {
        gap: 14px;
        font-size: .82rem;
        justify-content: flex-start;
    }

    .topbar-inner {
        justify-content: flex-start;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .brand-wrap {
        max-width: 100%;
    }

    .brand-wrap img {
        max-width: 180px;
        max-height: 52px;
    }

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

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

    .footer-top-btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        min-width: 146px;
        height: 52px;
        padding: 0 20px;
    }
}


@media (max-width: 768px) {
    .topbar {
        display: none !important;
    }

    .hero-wrapper,
    .hero-shell,
    .hero-section,
    .home-hero {
        display: none !important;
    }

    .site-header {
        top: 0 !important;
    }
}