/* BrakePro — Shared Stylesheet */

:root {
    --primary: #F5B731;
    --dark: #1A1A1A;
    --gray-bg: #F7F7F7;
    --gray-text: #666;
    --gray-light: #888;
    --gray-border: #E5E5E5;
    --white: #ffffff;
    --color-black: #000;
    --color-white: #fff;
    --radius-lg: 24px;
    --radius-md: 16px;
    --spacing: .25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --radius-full: 9999px;
    --shadow-card: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 30px 60px rgba(0,0,0,0.15);
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-transition-duration: .15s;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: 1.5;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: 1.2;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --text-9xl: 8rem;
    --text-9xl--line-height: 1;
    --radius: .5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --tracking-widest: .1em;


    --color-red-50: oklch(97.1% .013 17.38);
    --color-red-300: oklch(80.8% .114 19.571);
    --color-red-400: oklch(70.4% .191 22.216);
    --color-red-500: oklch(63.7% .237 25.331);
    --color-red-600: oklch(57.7% .245 27.325);
    --color-green-100: oklch(96.2% .044 156.743);
    --color-green-600: oklch(62.7% .194 149.214);
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-900: oklch(21% .034 264.665);

    --tracking-tight: -.025em;
    --tracking-wide: .025em;
    --drop-shadow-lg: 0 4px 4px #00000026;
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --animate-bounce: bounce 1s infinite;
    --blur-sm: 8px;
    --aspect-video: 16 / 9;
}


*, *::before, *::after { box-sizing: border-box;border: 0 solid; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: Barlow Condensed, sans-serif;
    line-height: 1.1;
}

button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Layout ─── */
.container {
    width: 100%;
    margin: 0 auto;

    @media (min-width: 40rem) {
        &{
            max-width: 40rem;
        }
    }

    @media (min-width: 48rem) {
        &{
            max-width: 48rem;
        }
    }

    @media (min-width: 64rem) {
        &{
            max-width: 64rem;
        }
    }

    @media (min-width: 80rem) {
        &{
            max-width: 80rem;
        }
    }

    @media (min-width: 96rem) {
        &{
            max-width: 96rem;
        }
    }

}



/* ─── Navigation ─── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    height: 96px;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img { height: 36px; object-fit: contain; }

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.2s;
    position: relative;
}
nav a:hover,
nav a.active { color: var(--primary); }
.button-menu{
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding-block: calc(var(--spacing) * 2.5);
    padding-inline: calc(var(--spacing) * 5);
    border-radius: 3.40282e38px;

    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));

    &:hover{
        scale: 105% 105%;
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 96px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 49;
    flex-direction: column;
    gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-border);
    color: var(--dark);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active,
.mobile-nav a:hover { color: var(--primary); }

/* ─── Page wrapper ─── */
.page-wrapper {
    padding-top: 96px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: var(--gray-light);
    padding: 1.5rem 0;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { font-size: 10px; }
.breadcrumb .current { color: var(--dark); }

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.2s, opacity 0.2s;
    letter-spacing: 0.03em;
}
.btn-primary:hover { transform: scale(1.04); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    background: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

/* ─── Section overline ─── */
.overline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin-bottom: calc(var(--spacing) * 6);
}

/* ─── Italic accent ─── */
section h2{
    text-transform: uppercase;
    letter-spacing: .01em;
    font-weight: 800;
    font-size: var(--text-5xl);
    line-height: 1.25;

    em{
        font-style: italic;
        font-weight: 400;
    }
}

em.accent {
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

/* ─── Section spacing ─── */
.section { padding: 6rem 1.5rem; }
.section-sm { padding: 4rem 1.5rem; }
.section-lg { padding: 8rem 1.5rem; }

.bg-gray { background: var(--gray-bg); }
.bg-dark { background: var(--dark); color: var(--white); }

/* ─── Cards ─── */
.card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.card-hover {
    transition: background 0.5s, color 0.5s, box-shadow 0.3s;
}
.card-hover:hover {
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow-card);
}
.card-hover:hover h3 { color: var(--primary); }
.card-hover:hover p { color: #CCC; }

/* ─── Grid helpers ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ─── Stat block ─── */
.stat-val {
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
    color: var(--primary);
    margin-bottom: calc(var(--spacing) * 4);

    @media (min-width: 48rem) {
        &{
            font-size: var(--text-6xl);
            line-height: var(--tw-leading, var(--text-6xl--line-height));
        }
    }

}
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
}

/* ─── Image aspect ratios ─── */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* ─── Footer ─── */
footer {
    background: var(--dark);
    color: var(--gray-light);
    padding-top: 6rem;
    padding-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-cta {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}
.footer-cta h2 {
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    font-size: 14px;
    line-height: var(--tw-leading, var(--text-sm--line-height));
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a:hover { color: var(--white); transition: color 0.2s; }

.footer-logo-desc p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}
.footer-logo-desc .brand-name {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #CCC;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: calc(var(--spacing) * 8);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 12px;
}
.footer-bottom a:hover { color: var(--white); }

/* ─── Form inputs ─── */
.form-field {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid var(--gray-border);
    padding: 0.5rem 0 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
}
.form-field::placeholder { color: #AAA; }
.form-field:focus { border-bottom-color: var(--primary); }

.form-group { display: flex; flex-direction: column; gap: 0.25rem; }
.form-error { font-size: 12px; color: #e53e3e; }

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-left {text-align: left;}
.mt-auto { margin-top: auto; }
.grid { display: grid; }
.flex { display: flex; }
.flex-1 {flex: 1;}
.flex-col { flex-direction: column; }
.inline-flex {display: inline-flex;}
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between {justify-content: space-between;}
.grid-cols-1 {grid-template-columns: repeat(1, minmax(0, 1fr));}
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.hidden {display: none;}
.overflow-hidden {overflow: hidden;}
.mx-auto {margin-inline: auto;}
.text-center {text-align: center;}


.font-bold{
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
}
.font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
}
.font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
}
.font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
}

.font-playfair {
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
}
.text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
}
.text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
}
.text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading,var(--text-2xl--line-height))
}

.text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading,var(--text-3xl--line-height))
}

.text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading,var(--text-4xl--line-height))
}

.text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading,var(--text-5xl--line-height))
}

.text-9xl {
    font-size: var(--text-9xl);
    line-height: var(--tw-leading,var(--text-9xl--line-height))
}
.font-inter {
    font-family: Inter, sans-serif;
}
.max-w-5xl {max-width: var(--container-5xl);}
.max-w-4xl {max-width: var(--container-4xl);}
.max-w-3xl {max-width: var(--container-3xl);}
.max-w-xl {max-width: var(--container-xl);}
.text-\[\#666\] {color: #666;}
.text-\[\#1A1A1A\] {color: #1a1a1a;}
.text-\[\#888\] {color: #888;}
.text-\[\#AAA\] {color: #aaa;}
.text-\[\#F5F5F5\] {color: #f5f5f5;}
.text-\[\#CCCCCC\], .text-\[\#CCC\] {color: #ccc;}
.text-primary {color: var(--primary);}
.tracking-\[0\.1em\] {
    --tw-tracking: .1em;
    letter-spacing: .1em;
}
.tracking-widest{
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
}
.text-\[12px\] {
    font-size: 12px;
}
.text-\[200px\] {
    font-size: 200px;
}
.text-xs{
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
}
.text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
}
.text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
}
.block {
    display: block;
}
.w-full{width: 100%;}
.h-full{height: 100%;}

.w-0 {width: calc(var(--spacing) * 0)}
.w-1 {width: calc(var(--spacing) * 1)}
.w-2 {width: calc(var(--spacing) * 2)}
.w-2\.5 {width: calc(var(--spacing) * 2.5)}
.w-3 {width: calc(var(--spacing) * 3)}
.w-3\.5 {width: calc(var(--spacing) * 3.5)}
.w-3\/4 {width: 75%}
.w-4 {width: calc(var(--spacing) * 4)}
.w-5 {width: calc(var(--spacing) * 5)}
.w-6 {width: calc(var(--spacing) * 6)}
.w-7 {width: calc(var(--spacing) * 7)}
.w-8 {width: calc(var(--spacing) * 8)}
.w-9 {width: calc(var(--spacing) * 9)}
.w-10 {width: calc(var(--spacing) * 10)}
.w-11 {width: calc(var(--spacing) * 11)}
.w-12 {width: calc(var(--spacing) * 12)}
.w-14 {width: calc(var(--spacing) * 14)}
.w-16 {width: calc(var(--spacing) * 16)}
.w-20 {width: calc(var(--spacing) * 20)}
.w-24 {width: calc(var(--spacing) * 24)}
.w-32 {width: calc(var(--spacing) * 32)}
.w-64 {width: calc(var(--spacing) * 64)}
.w-72 {width: calc(var(--spacing) * 72)}
.w-96 {width: calc(var(--spacing) * 96)}

.h-1\.5 {height: calc(var(--spacing) * 1.5)}
.h-2 {height: calc(var(--spacing) * 2)}
.h-2\.5 {height: calc(var(--spacing) * 2.5)}
.h-3 {height: calc(var(--spacing) * 3)}
.h-3\.5 {height: calc(var(--spacing) * 3.5)}
.h-4 {height: calc(var(--spacing) * 4)}
.h-5 {height: calc(var(--spacing) * 5)}
.h-6 {height: calc(var(--spacing) * 6)}
.h-7 {height: calc(var(--spacing) * 7)}
.h-8 {height: calc(var(--spacing) * 8)}
.h-9 {height: calc(var(--spacing) * 9)}
.h-10 {height: calc(var(--spacing) * 10)}
.h-11 {height: calc(var(--spacing) * 11)}
.h-12 {height: calc(var(--spacing) * 12)}
.h-14 {height: calc(var(--spacing) * 14)}
.h-16 {height: calc(var(--spacing) * 16)}
.h-20 {height: calc(var(--spacing) * 20)}
.h-24 {height: calc(var(--spacing) * 24)}
.h-96 {height: calc(var(--spacing) * 96)}

.pt-2 {padding-top: calc(var(--spacing) * 2);}
.pt-4 {padding-top: calc(var(--spacing) * 4);}
.pt-8 {padding-top: calc(var(--spacing) * 8);}
.pt-24 {padding-top: calc(var(--spacing) * 24);}
.mb-1{margin-bottom: calc(var(--spacing) * 1);}
.mb-2{margin-bottom: calc(var(--spacing) * 2);}
.mb-4 {margin-bottom: calc(var(--spacing) * 4);}
.mb-6 {margin-bottom: calc(var(--spacing) * 6);}
.mb-8 {margin-bottom: calc(var(--spacing) * 8);}
.mb-12 {margin-bottom: calc(var(--spacing) * 12);}
.mb-16 {margin-bottom: calc(var(--spacing) * 16);}
.mb-24 {margin-bottom: calc(var(--spacing) * 24);}
.mt-12 {margin-top: calc(var(--spacing) * 12);}
.mt-16 {margin-top: calc(var(--spacing) * 16);}
.pl-8 {padding-left: calc(var(--spacing) * 8);}
.p-10 {padding: calc(var(--spacing) * 10);}
.pb-3 {padding-bottom: calc(var(--spacing) * 3);}
.pb-6 {padding-bottom: calc(var(--spacing) * 6);}
.pb-24 {padding-bottom: calc(var(--spacing) * 24);}
.pb-32 {padding-bottom: calc(var(--spacing) * 32);}
.mt-4 {margin-top: calc(var(--spacing) * 4);}
.opacity-90 {opacity: .9;}
.opacity-80 {opacity: .8;}
.opacity-50 {opacity: .5;}
.opacity-40 {opacity: .4;}
.relative {position: relative;}
.absolute {position: absolute;}
.object-contain{object-fit: contain;}
.border-white\/10 {border-color: #ffffff1a;}
.border-t, .border-t-\[1px\] {
    border-top-style: solid;
    border-top-width: 1px;
}
.px-6 {padding-inline: calc(var(--spacing) * 6);}
.px-8 {padding-inline: calc(var(--spacing) * 8);}

.py-2 {padding-block: calc(var(--spacing) * 2);}
.py-4 {padding-block: calc(var(--spacing) * 4);}
.py-5 {padding-block: calc(var(--spacing) * 5);}
.py-6 {padding-block: calc(var(--spacing) * 6);}
.py-8 {padding-block: calc(var(--spacing) * 8);}
.py-12 {padding-block: calc(var(--spacing) * 12);}
.py-20 {padding-block: calc(var(--spacing) * 20);}
.py-24 {padding-block: calc(var(--spacing) * 24);}
.py-32 {padding-block: calc(var(--spacing) * 32);}
.px-10 {padding-inline: calc(var(--spacing) * 10);}
.ml-2 {margin-left: calc(var(--spacing) * 2);}
.rounded-\[20px\] {border-radius: 20px;}
.rounded-\[24px\] {border-radius: 24px;}
.object-cover {object-fit: cover;}
.md\:translate-y-12 {
    --tw-translate-y: calc(var(--spacing) * 12);
    translate: 0 var(--tw-translate-y);
}
.aspect-\[4\/3\] {aspect-ratio: 4 / 3;}
.shadow-\[0_30px_60px_rgba\(0\,0\,0\,0\.15\)\] {
    --tw-shadow: 0 30px 60px #00000026;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, var(--tw-shadow);
}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, var(--tw-shadow);
}
.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color,#00000040);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, var(--tw-shadow);
}
:where(.space-y-3>:not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
}
:where(.space-y-8>:not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
}
.leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
}
.leading-\[1\.1\] {
    --tw-leading: 1.1;
    line-height: 1.1;
}

.bg-primary, .bg-primary\/10 {background-color: var(--primary);}
.bg-\[\#F7F7F7\] {background-color: #f7f7f7;}
.bg-\[\#1A1A1A\] {background-color: #1a1a1a;}
.bg-\[\#EEEEEE\] {background-color: #eee;}
.bg-\[\#F9F9F9\] {background-color: #f9f9f9;}
.bg-\[\#25D366\] {background-color: #25d366;}
.bg-white {background-color: var(--color-white);}
.bg-white\/5 {background-color: #ffffff0d;}
.border-\[\#F0F0F0\] {border-color: #f0f0f0;}
.border-\[\#E5E5E5\] {border-color: #e5e5e5;}
.border-b-\[1\.5px\] {border-bottom-width: 1.5px;}
.border-white\/20 {border-color: color-mix(in oklab, var(--color-white) 20%, transparent);}

.min-h-\[70vh\] {min-height: 70vh;}
.border {
    border-style: solid;
    border-width: 1px;
}
.border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
    border-style: solid;
}
.border-white\/20 {
    border-color: color-mix(in oklab, var(--color-white) 20%, transparent);
}
.border-l {
    border-left-style: solid;
    border-left-width: 1px;
}
.rounded-full {border-radius: 3.40282e38px;}
.-translate-x-1\/2 {
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    --tw-translate-x: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
}
.duration-500 {
    --tw-duration: .5s;
    transition-duration: .5s;
}
.h-24 {height: calc(var(--spacing) * 24);}
.z-20 {z-index: 20;}
.text-white {color: var(--color-white);}
.w-\[1px\] {width: 1px;}
.left-1\/2 {left: 50%;}
.top-1\/2 {top: 50%;}
.h-12 {height: calc(var(--spacing) * 12);}
.gap-16 {gap: calc(var(--spacing) * 16);}
.gap-y-8 {row-gap: calc(var(--spacing) * 8);}
.gap-x-12 {column-gap: calc(var(--spacing) * 12);}
.uppercase {text-transform: uppercase; }
.italic-accent{
    color: var(--primary);
    font-style: italic;
}
.italic {
    font-style: italic;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
}
.z-0 {
    z-index: 0;
}
.z-10 {
    z-index: 10;
}
.outline-none {
    --tw-outline-style: none;
    outline-style: none;
}
.text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
}

.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}
.filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.alert h4 {
    margin-top: 0;
    color: inherit;
}
.alert .alert-link {
    font-weight: bold;
}
.alert > p,
.alert > ul {
    margin-bottom: 0;
}
.alert > p + p {
    margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-success hr {
    border-top-color: #c9e2b3;
}
.alert-success .alert-link {
    color: #2b542c;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-info hr {
    border-top-color: #a6e1ec;
}
.alert-info .alert-link {
    color: #245269;
}
.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-warning hr {
    border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
    color: #66512c;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}
.alert-danger hr {
    border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
    color: #843534;
}

@supports (color: color-mix(in lab,red,red)) {
    .border-white\/10 {
        border-color:color-mix(in oklab,var(--color-white) 10%,transparent)
    }
}

/* ─── Responsive ─── */
@media(min-width: 48rem) {
    .md\:block {
        display: block;
    }
    .md\:py-32 {
        padding-block: calc(var(--spacing) * 32);
    }
    .md\:text-5xl {
        font-size: var(--text-5xl);
        line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
    .md\:p-12 {
        padding: calc(var(--spacing) * 12);
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:flex-row-reverse {
        flex-direction: row-reverse;
    }
    .md\:text-\[300px\] {
        font-size: 300px;
    }
    .md\:w-\[60\%\] {
        width: 60%;
    }
    .md\:h-\[500px\] {
        height: 500px;
    }
    .md\:aspect-auto {
        aspect-ratio: auto;
    }
    .md\:w-\[35\%\] {
        width: 35%;
    }
    .md\:h-\[350px\] {
        height: 350px;
    }
    .md\:gap-x-16 {
        column-gap: calc(var(--spacing) * 16);
    }
    .md\:gap-16 {
        gap: calc(var(--spacing) * 16);
    }
    .md\:text-6xl {
        font-size: var(--text-6xl);
        line-height: var(--tw-leading, var(--text-6xl--line-height));
    }
    .md\:w-1\/2 {
        width: 50%;
    }
    .md\:py-24 {
        padding-block: calc(var(--spacing) * 24);
    }
    .md\:text-7xl {
        font-size: var(--text-7xl);
        line-height: var(--tw-leading, var(--text-7xl--line-height));
    }
    .md\:py-20 {
        padding-block: calc(var(--spacing) * 20);
    }
    .md\:gap-24 {
        gap: calc(var(--spacing) * 24);
    }
    .md\:w-\[50\%\] {
        width: 50%;
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}
@media(min-width: 64rem) {
    .lg\:gap-32 {
        gap: calc(var(--spacing) * 32);
    }
    .lg\:flex-row {
        flex-direction: row;
    }
    .lg\:w-\[55\%\] {
        width: 55%;
    }
    .lg\:w-\[45\%\] {
        width: 45%;
    }
}
@media (min-width: 80rem) {
    .xl\:gap-24 {
        gap: calc(var(--spacing) * 24);
    }
}

@media (max-width: 768px) {
    nav { display: none; }
    .menu-toggle { display: flex; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 4rem 1.5rem; }
}

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

@media(hover: hover) {
    .hover\:scale-105:hover {
        --tw-scale-x:105%;
        --tw-scale-y: 105%;
        --tw-scale-z: 105%;
        scale: var(--tw-scale-x) var(--tw-scale-y)
    }

    .hover\:scale-110:hover {
        --tw-scale-x: 110%;
        --tw-scale-y: 110%;
        --tw-scale-z: 110%;
        scale: var(--tw-scale-x) var(--tw-scale-y)
    }

    .hover\:rotate-0:hover {
        rotate: none
    }

    .hover\:border-\[\#1A1A1A\]:hover {
        border-color: #1a1a1a
    }

    .hover\:border-primary:hover {
        border-color: var(--primary)
    }

    .hover\:bg-\[\#1A1A1A\]:hover {
        background-color: #1a1a1a
    }

    .hover\:bg-\[\#E5AA2D\]:hover {
        background-color: #e5aa2d
    }

    .hover\:bg-\[\#E5E5E5\]:hover {
        background-color: #e5e5e5
    }

    .hover\:bg-accent:hover {
        background-color: hsl(var(--accent))
    }

    .hover\:bg-black:hover {
        background-color: var(--color-black)
    }

    .hover\:bg-gray-50:hover {
        background-color: var(--color-gray-50)
    }

    .hover\:bg-muted:hover,.hover\:bg-muted\/50:hover {
        background-color: hsl(var(--muted))
    }

    @supports (color: color-mix(in lab,red,red)) {
        .hover\:bg-muted\/50:hover {
            background-color:color-mix(in oklab,hsl(var(--muted)) 50%,transparent)
        }
    }

    .hover\:bg-secondary:hover {
        background-color: hsl(var(--secondary))
    }

    .hover\:bg-sidebar-accent:hover {
        background-color: hsl(var(--sidebar-accent))
    }

    .hover\:bg-white\/10:hover {
        background-color: #ffffff1a
    }

    @supports (color: color-mix(in lab,red,red)) {
        .hover\:bg-white\/10:hover {
            background-color:color-mix(in oklab,var(--color-white) 10%,transparent)
        }
    }

    .hover\:bg-white\/70:hover {
        background-color: #ffffffb3
    }

    @supports (color: color-mix(in lab,red,red)) {
        .hover\:bg-white\/70:hover {
            background-color:color-mix(in oklab,var(--color-white) 70%,transparent)
        }
    }

    .hover\:text-\[\#1A1A1A\]:hover {
        color: #1a1a1a
    }

    .hover\:text-accent-foreground:hover {
        color: hsl(var(--accent-foreground))
    }

    .hover\:text-foreground:hover {
        color: hsl(var(--foreground))
    }

    .hover\:text-muted-foreground:hover {
        color: hsl(var(--muted-foreground))
    }

    .hover\:text-primary:hover {
        color: var(--primary)
    }

    .hover\:text-sidebar-accent-foreground:hover {
        color: hsl(var(--sidebar-accent-foreground))
    }

    .hover\:text-white:hover {
        color: var(--color-white)
    }

    .hover\:no-underline:hover {
        text-decoration-line: none
    }

    .hover\:underline:hover {
        text-decoration-line: underline
    }

    .hover\:opacity-70:hover {
        opacity: .7
    }

    .hover\:opacity-90:hover {
        opacity: .9
    }

    .hover\:opacity-100:hover {
        opacity: 1
    }

    .group-hover\:scale-105:is(:where(.group):hover *) {
        --tw-scale-x:105%;
        --tw-scale-y: 105%;
        --tw-scale-z: 105%;
        scale: var(--tw-scale-x) var(--tw-scale-y)
    }

    .group-hover\:bg-\[\#333\]:is(:where(.group):hover *) {
        background-color: #333
    }

    .group-hover\:text-\[\#CCC\]:is(:where(.group):hover *) {
        color: #ccc
    }

    .group-hover\:text-primary:is(:where(.group):hover *) {
        color: var(--primary)
    }

    .group-hover\:text-white\/5:is(:where(.group):hover *) {
        color: #ffffff0d
    }

    @supports (color: color-mix(in lab,red,red)) {
        .group-hover\:text-white\/5:is(:where(.group):hover *) {
            color:color-mix(in oklab,var(--color-white) 5%,transparent)
        }
    }

    .group-hover\:opacity-100:is(:where(.group):hover *),.group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) {
        opacity: 1
    }

}

.focus\:border-primary:focus {
    border-color:var(--primary)
}

.focus\:bg-accent:focus {
    background-color:var(--accent)
}

.focus\:text-accent-foreground:focus {
    color:var(--accent-foreground)
}

.focus\: opacity-100:focus {
    opacity:1
}

/* ─── Hero ─── */

.hero {
    position: relative;
    height: calc(100vh - 96px);
    min-height: 560px;
    overflow: hidden;
    background: var(--dark);
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.6), rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.75));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-eyebrow span.line { width: 40px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-eyebrow span.text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', sans-serif;
}
.hero h1 {
    font-size: clamp(38px, 5.5vw, 80px);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 56rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: .01em;
    font-weight: 800;
}
.hero h1 em { color: var(--primary); font-style: italic; }
.hero p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    max-width: 32rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-dot {
    border-radius: 9999px;
    background: rgba(255,255,255,0.4);
    width: 8px; height: 8px;
    transition: all 0.3s;
    border: none;
}
.hero-dot.active { width: 28px; background: var(--primary); }

/* Why section */
section.porque_brakepro h2{
    em{
        font-style: italic;
        font-weight: 400;
        color: var(--primary);
    }
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}
.why-item { display: flex; flex-direction: column; }
.why-icon {
    width: 2rem; height: 2rem;
    color: var(--primary);
    margin-bottom: 1.7rem;
}
.why-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.0rem;
}
.why-item p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin-bottom: 1.6rem; }
.why-item hr { border: none; border-top: 1px solid var(--gray-border); margin-top: auto; }

/* Process grid */

section.process h2{
    em{
        font-style: italic;
        font-weight: 400;
        color: var(--primary);
    }
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2rem;
}
.process-item { position: relative; }
.process-num {
    position: absolute;
    top: -0.75rem; left: -0.5rem;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: rgba(245,183,49,0.2);
    line-height: 1;
    z-index: 0;
}
.process-img {
    aspect-ratio: 4/3;
    border-radius: calc(var(--radius) + 4px);
    overflow: hidden;
    background: var(--gray-bg);
    position: relative;
    z-index: 1;
    margin-bottom: 1.3rem;
}
.process-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-multiply; opacity: 0.9; }
.process-item h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 0.25rem; }
.process-item p { font-size: 12px; color: var(--gray-light); }

/* Hero intro row */
.intro-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}
@media (min-width: 1024px) {
    .intro-row { flex-direction: row; gap: 6rem; }
    .intro-row .left { width: 60%; }
    .intro-row .right { width: 40%; display: flex; align-items: center; }
}

/* CTA Banner */
.cta-banner { padding: 6rem 1.5rem; background: var(--white); text-align: center; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-text); margin-bottom: 2rem; max-width: 32rem; margin-inline: auto; }

/* Partners */
.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem 0;
}
.partners-row img { height: 32px; object-fit: contain; filter: grayscale(1); opacity: 0.5; transition: all 0.3s; }
.partners-row img:hover { filter: none; opacity: 1; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* Hero section */
.page-hero { padding: 3rem 1.5rem 0; }
.page-hero-img {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin-top: 3rem;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

/* Historia two-col */
.two-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .two-col { flex-direction: row; gap: 4rem; }
    .two-col .col-60 { width: 60%; }
    .two-col .col-40 { width: 40%; }
}

.historia-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform 0.7s;
}
.historia-img:hover { transform: rotate(0deg); }
.historia-img img { width: 100%; height: auto; display: block; }

/* MVV cards */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.mvv-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: background 0.5s;
    cursor: default;
}
.mvv-card:hover { background: var(--dark); }
.mvv-card .bg-num {
    position: absolute;
    right: -1rem; bottom: -1rem;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
    color: #EEEEEE;
    user-select: none;
    transition: color 0.5s;
    font-size: var(--text-9xl);
    line-height: var(--tw-leading, var(--text-9xl--line-height));
}
.mvv-card:hover .bg-num { color: rgba(255,255,255,0.05); }
.mvv-card h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-family: Barlow Condensed, sans-serif;
    font-weight: 800;
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
}
.mvv-card:hover h3 { color: var(--primary); }
.mvv-card p {
    color: var(--gray-text);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
}
.mvv-card:hover p { color: #CCC; }

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .mvv-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .page-hero-img { aspect-ratio: 4/3; }
}

.produtos{
    /* Search bar */
    .search-wrap {
        max-width: var(--container-2xl);
        margin: 3rem auto 0;
        display: flex;
        align-items: center;
        border: 1.5px solid var(--gray-border);
        border-radius: var(--radius-full);
        padding: 0.875rem 1.5rem;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: border-color 0.2s;
    }
    .search-wrap:focus-within { border-color: var(--primary); }
    .search-wrap svg { width: 20px; height: 20px; color: var(--gray-light); flex-shrink: 0; margin-right: 0.75rem; }
    .search-wrap input {
        width: 100%;
        border: none;
        outline: none;
        font-family: 'Inter', sans-serif;
        color: var(--dark);
        background: transparent;
    }
    .search-wrap input::placeholder { color: #AAA; }

    /* Filters */
    .filter-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 0.625rem 1.5rem;
        border-radius: var(--radius-full);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        border: none;
        background: var(--gray-bg);
        color: var(--gray-text);
        transition: all 0.2s;
    }
    .filter-btn:hover { background: #E5E5E5; }
    .filter-btn.active { background: var(--dark); color: var(--white); }

    .brand-filter-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #F0F0F0;
        margin-bottom: 3rem;
    }
    .brand-btn {
        padding: 0.375rem 1rem;
        border-radius: var(--radius-full);
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 500;
        border: 1px solid var(--gray-border);
        color: var(--gray-light);
        background: var(--white);
        transition: all 0.2s;
    }
    .brand-btn:hover { border-color: var(--dark); }
    .brand-btn.active { border-color: var(--primary); background: rgba(245,183,49,0.1); color: var(--dark); font-weight: 600; }

    /* Product grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    .product-card {
        border: 1px solid #F0F0F0;
        border-radius: var(--radius-lg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: var(--white);
        transition: box-shadow 0.3s;
        height: 100%;
    }
    .product-card:hover { box-shadow: var(--shadow-card); }
    .product-card-img {
        /* aspect-ratio: 2/3; */
        background: var(--gray-bg);
        padding: calc(var(--spacing) * 8);
        padding: 0 0 80%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .product-card-img .ref-badge {
        position: absolute;
        top: 1rem; left: 1rem;
        background: var(--white);
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-full);
        font-size: 18px;
        font-weight: 700;
        color: var(--primary);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        z-index: 2;
    }
    .product-card-img img {
        /*max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.5s;
        mix-blend-mode: multiply;
        transition-duration: .5s;*/
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
        mix-blend-mode: multiply;
        transition-duration: .5s;
        position: absolute;
        top: 0;
        left: 0;
    }
    .product-card:hover .product-card-img img { transform: scale(1.05); }
    .product-card-body {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .product-brand {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gray-light);
        margin-bottom: 0.5rem;
    }
    .product-card-body h3 { font-size: 1.375rem; color: var(--dark); margin-bottom: 1rem; }
    .product-meta { font-size: 13px; color: var(--gray-text); margin-bottom: 2rem; flex-grow: 1; }
    .product-meta p { margin-bottom: 0.5rem; }
    .product-meta strong { color: #333; }
    .product-meta .clamp { /*white-space: nowrap;*/ overflow: hidden; text-overflow: ellipsis; }
    .btn-info {
        width: 100%;
        padding: 0.75rem;
        border-radius: var(--radius-full);
        border: 1.5px solid var(--dark);
        color: var(--dark);
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.2s;
    }
    .btn-info:hover { background: var(--dark); color: var(--white); }

    /* No results */
    .no-results { text-align: center; padding: 5rem 0; color: var(--gray-text); font-size: 1rem; }

    /* Notice */
    .catalog-notice {
        margin-top: 5rem;
        text-align: center;
        padding: 2rem;
        background: var(--gray-bg);
        border-radius: var(--radius-lg);
    }
    .catalog-notice p { color: var(--gray-text); margin-bottom: 1rem; }
    .catalog-notice a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

    /* Modal */
    .modal-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 100;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
    }
    .modal-backdrop.open { display: flex; }
    .modal-box {
        background: var(--white);
        border-radius: var(--radius-lg);
        max-width: 500px;
        width: 100%;
        overflow: hidden;
    }
    .modal-header {
        background: var(--dark);
        color: var(--white);
        padding: 2rem;
        position: relative;
    }
    .modal-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .modal-header p { color: #AAA; font-size: 14px; }
    .modal-header p strong { color: var(--primary); }
    .modal-close {
        position: absolute;
        top: 1.25rem; right: 1.25rem;
        color: #888;
        background: none;
        border: none;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
    }
    .modal-close:hover { color: var(--white); }
    .modal-body { padding: 2rem; }
    .modal-form { display: flex; flex-direction: column; gap: 1.5rem; }
    .success-msg { text-align: center; padding: 2rem 0; }
    .success-icon {
        width: 4rem; height: 4rem;
        background: #dcfce7;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
    }
    .success-msg h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .success-msg p { color: var(--gray-text); }

    @media (max-width: 768px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
        .products-grid { grid-template-columns: 1fr; }
    }
}

.alert{
    font-size: 14px;
}

/**/

.backdrop-blur-sm {
    --tw-backdrop-blur: blur(var(--blur-sm));
    -webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
    backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)
}

.transition {
    transition-property: color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-\[color\,box-shadow\] {
    transition-property: color,box-shadow;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-\[left\,right\,width\] {
    transition-property: left,right,width;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-\[margin\,opacity\] {
    transition-property: margin,opacity;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-\[width\,height\,padding\] {
    transition-property: width,height,padding;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-\[width\] {
    transition-property: width;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-colors {
    transition-property: color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.transition-transform {
    transition-property: transform,translate,scale,rotate;
    transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
    transition-duration: var(--tw-duration,var(--default-transition-duration))
}

.duration-100 {
    --tw-duration: .1s;
    transition-duration: .1s
}

.duration-200 {
    --tw-duration: .2s;
    transition-duration: .2s
}

.duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s
}

.duration-500 {
    --tw-duration: .5s;
    transition-duration: .5s
}

.duration-700 {
    --tw-duration: .7s;
    transition-duration: .7s
}

.duration-1000 {
    --tw-duration: 1s;
    transition-duration: 1s
}

.ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out)
}

.ease-linear {
    --tw-ease: linear;
    transition-timing-function: linear
}

.fade-in-0 {
    --tw-enter-opacity: 0
}

.fill-mode-both {
    --tw-animation-fill-mode: both;
    animation-fill-mode: both
}

.outline-none {
    --tw-outline-style: none;
    outline-style: none
}

.select-none {
    -webkit-user-select: none;
    user-select: none
}

.zoom-in-95 {
    --tw-enter-scale: .95
}

.fade-in {
    --tw-enter-opacity: 0
}

.slide-in-from-bottom-4 {
    --tw-enter-translate-y: calc(4*var(--spacing))
}

.slide-in-from-bottom-full {
    --tw-enter-translate-y: 100%
}

.group-focus-within\/menu-item\: opacity-100:is(:where(.group\/menu-item):focus-within *) {
    opacity:1
}