/* ============================================================



   site.css — CSS dedicado ao site público da Tobacco Way



   Design: Premium comercial B2B · Totalmente responsivo



   ============================================================ */







/* --- Google Font Import --- */



@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');







/* --- Design Tokens --- */



:root {



    --tw-dark: #0d0a07;



    --tw-dark-2: #1a1108;



    --tw-dark-3: #231709;



    --tw-brown: #3d1f0a;



    --tw-brown-2: #5c2e0f;



    --tw-gold: #c9963a;



    --tw-gold-light: #e8b864;



    --tw-gold-dim: #a07a2e;



    --tw-cream: #f5efe6;



    --tw-cream-2: #ede4d8;



    --tw-cream-3: #d9cfc4;



    --tw-white: #ffffff;



    --tw-gray: #7a7168;



    --tw-gray-2: #a09890;



    --tw-text-dark: #1a1108;



    --tw-text-light: #f5efe6;







    --font-sans: 'Inter', system-ui, sans-serif;



    --font-serif: 'Playfair Display', Georgia, serif;







    --radius-sm: 6px;



    --radius-md: 12px;



    --radius-lg: 20px;



    --radius-xl: 32px;







    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);



    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.22);



    --shadow-gold: 0 4px 20px rgba(201, 150, 58, 0.3);







    --nav-height: 74px;



    --section-px: clamp(1.5rem, 5vw, 6rem);



}







/* --- Base Reset --- */



*,
*::before,
*::after {



    box-sizing: border-box;



    margin: 0;



    padding: 0;



}







html {



    scroll-behavior: smooth;



    font-size: 16px;



}







body {



    font-family: var(--font-sans);



    background-color: var(--tw-cream);



    color: var(--tw-text-dark);



    line-height: 1.6;



    overflow-x: hidden;



    -webkit-font-smoothing: antialiased;



}







img {



    max-width: 100%;



    display: block;



}







a {



    color: inherit;



    text-decoration: none;



}







ul {



    list-style: none;



}







/* ============================================================



   NAVBAR



   ============================================================ */



.tw-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 var(--section-px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}







.tw-navbar.scrolled {
    background: rgba(13, 10, 7, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 150, 58, 0.15);
}







.tw-nav-inner {



    display: flex;



    align-items: center;



    justify-content: space-between;



    width: 100%;



    max-width: 1280px;



    margin: 0 auto;



}







/* Logo */



.tw-nav-logo {



    display: flex;



    align-items: center;



    gap: 0.75rem;



    flex-shrink: 0;



}







.tw-nav-logo img {



    height: 38px;



    width: auto;



    filter: brightness(0) invert(1);



}







.tw-nav-logo-text {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tw-white);
    line-height: 1.1;
}

@media (min-width: 768px) {
    .tw-nav-logo-text {
        font-size: 1rem;
        letter-spacing: 0.12em;
        line-height: 1.2;
    }
}







.tw-nav-logo-text span {



    display: block;



    font-weight: 300;



    font-size: 0.65rem;



    letter-spacing: 0.2em;



    color: var(--tw-gold);



}







/* Nav Links */



.tw-nav-links {



    display: flex;



    align-items: center;



    gap: 2.25rem;



}







.tw-nav-links a {



    font-size: 0.875rem;



    font-weight: 500;



    color: rgba(245, 239, 230, 0.75);



    letter-spacing: 0.04em;



    transition: color 0.2s ease;



    position: relative;



}







.tw-nav-links a::after {



    content: '';



    position: absolute;



    bottom: -4px;



    left: 0;



    width: 0;



    height: 1.5px;



    background: var(--tw-gold);



    transition: width 0.25s ease;



}







.tw-nav-links a:hover {



    color: var(--tw-white);



}







.tw-nav-links a:hover::after {



    width: 100%;



}







/* CTA Button */



.tw-btn-cta {



    display: inline-flex;



    align-items: center;



    gap: 0.5rem;



    background: var(--tw-gold);



    color: var(--tw-dark) !important;



    font-size: 0.875rem;



    font-weight: 700;



    letter-spacing: 0.05em;



    padding: 0.6rem 1.5rem;



    border-radius: 50px;



    border: none;



    cursor: pointer;



    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;



    white-space: nowrap;



}







.tw-btn-cta::after {



    display: none !important;



}







.tw-btn-cta:hover {



    background: var(--tw-gold-light);



    transform: translateY(-1px);



    box-shadow: var(--shadow-gold);



}







/* Hamburger */



.tw-hamburger {



    display: none;



    flex-direction: column;



    justify-content: center;



    align-items: center;



    width: 40px;



    height: 40px;



    background: transparent;



    border: 1px solid rgba(201, 150, 58, 0.3);



    border-radius: var(--radius-sm);



    cursor: pointer;



    gap: 5px;



    transition: border-color 0.2s ease;



}







.tw-hamburger:hover {



    border-color: var(--tw-gold);



}







.tw-hamburger span {



    display: block;



    width: 20px;



    height: 1.5px;



    background: var(--tw-cream);



    border-radius: 2px;



    transition: transform 0.3s ease, opacity 0.3s ease;



}







.tw-hamburger.active span:nth-child(1) {



    transform: translateY(6.5px) rotate(45deg);



}



.tw-hamburger.active span:nth-child(2) {



    opacity: 0;



    transform: scaleX(0);



}



.tw-hamburger.active span:nth-child(3) {



    transform: translateY(-6.5px) rotate(-45deg);



}







/* Mobile Menu — usa visibility+opacity em vez de display para permitir transição CSS */



.tw-mobile-menu {



    position: fixed;



    top: var(--nav-height);



    left: 0;



    right: 0;



    background: rgba(13, 10, 7, 0.98);



    backdrop-filter: blur(16px);



    -webkit-backdrop-filter: blur(16px);



    border-bottom: 1px solid rgba(201, 150, 58, 0.15);



    padding: 1rem 1.5rem 2rem;



    z-index: 999;



    display: flex;



    flex-direction: column;



    gap: 0;



    /* Estado inicial: invisível */



    visibility: hidden;



    opacity: 0;



    transform: translateY(-8px);



    pointer-events: none;



    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;



}







.tw-mobile-menu.open {



    visibility: visible;



    opacity: 1;



    transform: translateY(0);



    pointer-events: auto;



}

/* ============================================================
   LANGUAGE SELECTOR
   ============================================================ */

/* Hide Google Translate toolbar */
body > .skiptranslate,
.goog-te-banner-frame.skiptranslate,
.goog-te-ftab-float,
#goog-gt-tt { display: none !important; }
body { top: 0 !important; }

.tw-lang-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tw-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 5px 9px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.tw-lang-btn:hover,
.tw-lang-btn[aria-expanded="true"] {
    background: rgba(201, 150, 58, 0.13);
    border-color: rgba(201, 150, 58, 0.35);
    color: #fff;
}

.tw-lang-flag-img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.tw-lang-code { font-size: 10px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; }

.tw-lang-arrow {
    font-size: 8px;
    opacity: 0.55;
    transition: transform 0.2s ease;
    margin-left: 1px;
}
.tw-lang-btn[aria-expanded="true"] .tw-lang-arrow { transform: rotate(180deg); }

/* Dropdown */
.tw-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1c1408;
    border: 1px solid rgba(201, 150, 58, 0.22);
    border-radius: 12px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    min-width: 186px;
    z-index: 9999;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 150, 58, 0.08);
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.tw-lang-dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.tw-lang-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 7px 9px;
    border: none;
    background: transparent;
    border-radius: 7px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
    font-family: inherit;
}
.tw-lang-option:hover  { background: rgba(201, 150, 58, 0.12); color: #fff; }
.tw-lang-option.active { background: rgba(201, 150, 58, 0.2); color: var(--tw-gold, #c9963a); }
.tw-lang-option span   { font-size: 10px; font-weight: 800; }
.tw-lang-option img    { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.35); }

/* Navbar desktop: item wrapper */
li.tw-lang-nav-item {
    display: flex;
    align-items: center;
}

/* Mobile menu: lang row */
.tw-mobile-lang-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 20px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 8px;
}
.tw-mobile-lang-row .tw-lang-selector { width: 100%; }
.tw-mobile-lang-row .tw-lang-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 10px;
}
.tw-mobile-lang-row .tw-lang-dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: 1px solid rgba(201,150,58,0.15);
    margin-top: 8px;
    width: 100%;
    min-width: unset;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
}
.tw-mobile-lang-row .tw-lang-dropdown.open { display: grid; }
.tw-mobile-lang-row .tw-lang-option { padding: 9px 10px; font-size: 11px; }







.tw-mobile-menu a {



    font-size: 1.05rem;



    font-weight: 500;



    color: rgba(245, 239, 230, 0.8);



    padding: 0.9rem 0;



    border-bottom: 1px solid rgba(255, 255, 255, 0.06);



    display: block;



    transition: color 0.2s ease;



}







.tw-mobile-menu a:last-child {



    border-bottom: none;



}







.tw-mobile-menu a:hover {



    color: var(--tw-gold);



}







.tw-mobile-menu .tw-btn-cta {



    margin-top: 1.25rem;



    width: 100%;



    justify-content: center;



    padding: 0.85rem 1.5rem;



    font-size: 1rem;



}







/* ============================================================



   HERO



   ============================================================ */



.tw-hero {



    position: relative;



    min-height: 100vh;



    display: flex;



    align-items: center;



    overflow: hidden;



    background-color: var(--tw-dark);



}







.tw-hero-bg {



    position: absolute;



    inset: 0;



    background-image: url('/images/hero_premium_tobacco.png');



    background-size: cover;



    background-position: center 40%;



    background-repeat: no-repeat;



    transform: scale(1.05);



    transition: transform 8s ease;



}







.tw-hero-bg::after {



    content: '';



    position: absolute;



    inset: 0;



    background: linear-gradient(135deg,



            rgba(13, 10, 7, 0.88) 0%,



            rgba(26, 17, 8, 0.72) 50%,



            rgba(61, 31, 10, 0.55) 100%);



}







.tw-hero:hover .tw-hero-bg {



    transform: scale(1.0);



}







.tw-hero-content {



    position: relative;



    z-index: 2;



    max-width: 1280px;



    margin: 0 auto;



    width: 100%;



    padding: calc(var(--nav-height) + 4rem) var(--section-px) 5rem;



}







.tw-hero-badge {



    display: inline-flex;



    align-items: center;



    gap: 0.5rem;



    background: rgba(201, 150, 58, 0.15);



    border: 1px solid rgba(201, 150, 58, 0.35);



    color: var(--tw-gold-light);



    font-size: 0.78rem;



    font-weight: 600;



    letter-spacing: 0.12em;



    text-transform: uppercase;



    padding: 0.4rem 1rem;



    border-radius: 50px;



    margin-bottom: 1.5rem;



}







.tw-hero-badge::before {



    content: '';



    width: 6px;



    height: 6px;



    background: var(--tw-gold);



    border-radius: 50%;



    animation: pulse-dot 2s infinite;



}







@keyframes pulse-dot {



    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }



    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }



}







.tw-hero-headline {



    font-family: var(--font-serif);



    font-size: clamp(2.6rem, 6vw, 5rem);



    font-weight: 800;



    color: var(--tw-white);



    line-height: 1.1;



    letter-spacing: -0.02em;



    max-width: 680px;



    margin-bottom: 1.25rem;



}







.tw-hero-headline em {



    font-style: italic;



    color: var(--tw-gold-light);



}







.tw-hero-subline {



    font-size: clamp(1rem, 2vw, 1.2rem);



    color: rgba(245, 239, 230, 0.7);



    max-width: 520px;



    line-height: 1.7;



    margin-bottom: 2.5rem;



    font-weight: 300;



}







.tw-hero-actions {



    display: flex;



    align-items: center;



    gap: 1rem;



    flex-wrap: wrap;



}







.tw-btn-primary {



    display: inline-flex;



    align-items: center;



    gap: 0.5rem;



    background: var(--tw-gold);



    color: var(--tw-dark);



    font-size: 0.95rem;



    font-weight: 700;



    letter-spacing: 0.04em;



    padding: 0.85rem 2rem;



    border-radius: 50px;



    border: none;



    cursor: pointer;



    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;



}







.tw-btn-primary:hover {



    background: var(--tw-gold-light);



    transform: translateY(-2px);



    box-shadow: 0 8px 30px rgba(201, 150, 58, 0.45);



}







.tw-btn-outline {



    display: inline-flex;



    align-items: center;



    gap: 0.5rem;



    background: transparent;



    color: var(--tw-cream);



    font-size: 0.95rem;



    font-weight: 600;



    letter-spacing: 0.04em;



    padding: 0.85rem 2rem;



    border-radius: 50px;



    border: 1.5px solid rgba(245, 239, 230, 0.3);



    cursor: pointer;



    transition: border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;



}







.tw-btn-outline:hover {



    border-color: var(--tw-gold);



    color: var(--tw-gold);



    transform: translateY(-2px);



}







.tw-hero-stats {



    display: flex;



    gap: 2.5rem;



    margin-top: 4rem;



    padding-top: 2.5rem;



    border-top: 1px solid rgba(255, 255, 255, 0.1);



    flex-wrap: wrap;



}







.tw-hero-stat {



    display: flex;



    flex-direction: column;



    gap: 0.25rem;



}







.tw-hero-stat-num {



    font-family: var(--font-serif);



    font-size: 2rem;



    font-weight: 700;



    color: var(--tw-gold-light);



    line-height: 1;



}







.tw-hero-stat-label {



    font-size: 0.78rem;



    color: rgba(245, 239, 230, 0.55);



    letter-spacing: 0.08em;



    text-transform: uppercase;



    font-weight: 500;



}







/* Scroll indicator */



.tw-hero-scroll {



    position: absolute;



    bottom: 2rem;



    left: 50%;



    transform: translateX(-50%);



    z-index: 2;



    display: flex;



    flex-direction: column;



    align-items: center;



    gap: 0.5rem;



    color: rgba(245, 239, 230, 0.4);



    font-size: 0.7rem;



    letter-spacing: 0.1em;



    text-transform: uppercase;



}







.tw-scroll-line {



    width: 1px;



    height: 40px;



    background: linear-gradient(to bottom, rgba(201, 150, 58, 0.7), transparent);



    animation: scroll-line 2s ease infinite;



}







@keyframes scroll-line {



    0% {
        transform: scaleY(0);
        transform-origin: top;
    }



    50% {
        transform: scaleY(1);
        transform-origin: top;
    }



    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }



    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }



}







/* ============================================================



   SECTION COMMONS



   ============================================================ */



.tw-section {



    padding: clamp(4rem, 8vw, 7rem) var(--section-px);



}







.tw-container {



    max-width: 1280px;



    margin: 0 auto;



    width: 100%;



}







.tw-label {



    display: inline-block;



    font-size: 0.72rem;



    font-weight: 700;



    letter-spacing: 0.15em;



    text-transform: uppercase;



    color: var(--tw-gold);



    margin-bottom: 0.75rem;



}







.tw-section-title {



    font-family: var(--font-serif);



    font-size: clamp(2rem, 4vw, 3rem);



    font-weight: 800;



    line-height: 1.15;



    letter-spacing: -0.02em;



    color: var(--tw-text-dark);



}







.tw-section-title.light {



    color: var(--tw-white);



}







.tw-section-sub {



    font-size: 1.05rem;



    color: var(--tw-gray);



    line-height: 1.7;



    max-width: 520px;



    margin-top: 0.75rem;



}







.tw-section-sub.light {



    color: rgba(245, 239, 230, 0.65);



}







/* ============================================================



   SECTION: INSTITUCIONAL (O que é a Tobacco Way?)



   ============================================================ */



.tw-about {



    background: var(--tw-cream);



}







.tw-about-inner {



    display: grid;



    grid-template-columns: 1fr 1fr;



    gap: 5rem;



    align-items: center;



}







.tw-about-left .tw-btn-secondary {



    display: inline-flex;



    align-items: center;



    gap: 0.5rem;



    margin-top: 1.75rem;



    font-size: 0.9rem;



    font-weight: 600;



    color: var(--tw-gold-dim);



    border-bottom: 1.5px solid var(--tw-gold-dim);



    padding-bottom: 3px;



    transition: color 0.2s ease, border-color 0.2s ease;



}







.tw-about-left .tw-btn-secondary:hover {



    color: var(--tw-gold);



    border-color: var(--tw-gold);



}







.tw-about-right {



    font-size: 1.1rem;



    color: var(--tw-gray);



    line-height: 1.75;



    position: relative;



    padding-left: 2rem;



}







.tw-about-right::before {



    content: '';



    position: absolute;



    left: 0;



    top: 0;



    bottom: 0;



    width: 3px;



    background: linear-gradient(to bottom, var(--tw-gold), transparent);



    border-radius: 2px;



}







/* ============================================================



   SECTION: PILARES DE VALOR



   ============================================================ */



.tw-pillars {



    background: var(--tw-cream-2);



}







.tw-pillars-header {



    display: grid;



    grid-template-columns: 1fr 1fr;



    gap: 3rem;



    align-items: end;



    margin-bottom: 3.5rem;



}







.tw-pillars-grid {



    display: grid;



    grid-template-columns: repeat(3, 1fr);



    gap: 1.5rem;



}







.tw-pillar-card {



    background: var(--tw-white);



    border-radius: var(--radius-lg);



    padding: 2.25rem 2rem;



    box-shadow: var(--shadow-card);



    border: 1px solid transparent;



    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;



    position: relative;



    overflow: hidden;



}







.tw-pillar-card::before {



    content: '';



    position: absolute;



    top: 0;



    left: 0;



    right: 0;



    height: 3px;



    background: linear-gradient(90deg, var(--tw-gold), var(--tw-gold-light));



    transform: scaleX(0);



    transition: transform 0.3s ease;



    transform-origin: left;



}







.tw-pillar-card:hover {



    transform: translateY(-6px);



    box-shadow: var(--shadow-card-hover);



    border-color: rgba(201, 150, 58, 0.15);



}







.tw-pillar-card:hover::before {



    transform: scaleX(1);



}







.tw-pillar-card.dark {



    background: var(--tw-dark-2);



    border: 1px solid rgba(201, 150, 58, 0.2);



}







.tw-pillar-card.dark .tw-pillar-title {



    color: var(--tw-white);



}







.tw-pillar-card.dark .tw-pillar-text {



    color: rgba(245, 239, 230, 0.55);



}







.tw-pillar-icon {



    width: 52px;



    height: 52px;



    background: linear-gradient(135deg, rgba(201, 150, 58, 0.15), rgba(201, 150, 58, 0.05));



    border: 1px solid rgba(201, 150, 58, 0.3);



    border-radius: var(--radius-md);



    display: flex;



    align-items: center;



    justify-content: center;



    margin-bottom: 1.5rem;



    font-size: 1.3rem;



}







.tw-pillar-title {



    font-family: var(--font-sans);



    font-size: 1.15rem;



    font-weight: 700;



    color: var(--tw-text-dark);



    margin-bottom: 0.75rem;



    line-height: 1.3;



}







.tw-pillar-text {



    font-size: 0.9rem;



    color: var(--tw-gray);



    line-height: 1.65;



}







/* ============================================================



   SECTION: MARCAS PARCEIRAS



   ============================================================ */



.tw-brands {



    background: var(--tw-dark-3);



    position: relative;



    overflow: hidden;



}







.tw-brands::before {



    content: '';



    position: absolute;



    top: -200px;



    right: -200px;



    width: 500px;



    height: 500px;



    background: radial-gradient(circle, rgba(201, 150, 58, 0.08) 0%, transparent 70%);



    pointer-events: none;



}







.tw-brands-header {



    display: flex;



    align-items: flex-end;



    justify-content: space-between;



    margin-bottom: 3rem;



    gap: 2rem;



}







.tw-brands-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.tw-brands-track {
    display: flex;
    width: max-content;
    gap: 2.5rem;
    animation: scroll-brands 40s linear infinite;
}

.tw-brands-carousel-wrapper:hover .tw-brands-track {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1.25rem)); }
}

.tw-brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 220px;
    width: 280px;
    text-align: center;
    flex-shrink: 0;
}

.tw-brand-card:hover {
    background: rgba(201, 150, 58, 0.1);
    border-color: rgba(201, 150, 58, 0.4);
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 150, 58, 0.15);
}

.tw-brand-card img {
    max-height: 90px;
    max-width: 200px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.5s ease;
}

.tw-brand-card:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.tw-brand-card-name {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.3);
    transition: all 0.4s ease;
}

.tw-brand-card:hover .tw-brand-card-name {
    color: var(--tw-gold-light);
    letter-spacing: 0.22em;
}

/* Placeholder brand card (icone sem logo) */
.tw-brand-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(201, 150, 58, 0.15);
    border: 1.5px solid rgba(201, 150, 58, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--tw-gold);
}








/* Empty state */



.tw-brands-empty {



    grid-column: 1 / -1;



    text-align: center;



    padding: 3rem;



    color: rgba(245, 239, 230, 0.35);



    font-size: 0.9rem;



}







/* ============================================================



   SECTION: PRODUTOS EM DESTAQUE



   ============================================================ */



.tw-products {



    background: var(--tw-cream);



}







.tw-products-header {



    display: flex;



    align-items: flex-end;



    justify-content: space-between;



    margin-bottom: 3rem;



    gap: 2rem;



}







.tw-products-link {



    font-size: 0.875rem;



    font-weight: 600;



    color: var(--tw-gold-dim);



    display: inline-flex;



    align-items: center;



    gap: 0.4rem;



    border-bottom: 1px solid var(--tw-gold-dim);



    padding-bottom: 2px;



    transition: color 0.2s ease, border-color 0.2s ease;



    white-space: nowrap;



}







.tw-products-link:hover {



    color: var(--tw-gold);



    border-color: var(--tw-gold);



}







.tw-products-grid {



    display: grid;



    grid-template-columns: repeat(4, 1fr);



    gap: 1.5rem;



}







.tw-product-card {



    background: var(--tw-white);



    border-radius: var(--radius-lg);



    overflow: hidden;



    box-shadow: var(--shadow-card);



    border: 1px solid transparent;



    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;



    display: flex;



    flex-direction: column;



}







.tw-product-card:hover {



    transform: translateY(-8px);



    box-shadow: var(--shadow-card-hover);



    border-color: rgba(201, 150, 58, 0.2);



}







.tw-product-img-wrap {



    aspect-ratio: 4/3;



    overflow: visible;



    background: transparent;



    position: relative;



    display: flex;



    align-items: center;



    justify-content: center;



    padding: 12px;



}







.tw-product-img-wrap img {



    width: auto;



    height: auto;



    max-width: 100%;



    max-height: 100%;



    object-fit: contain;



    transition: transform 0.4s ease, filter 0.4s ease;



    mix-blend-mode: multiply;



    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.4)) drop-shadow(0 4px 8px rgba(0,0,0,0.25));



}







.tw-product-card:hover .tw-product-img-wrap img {



    transform: scale(1.06);

    filter: drop-shadow(0 16px 28px rgba(0,0,0,0.5)) drop-shadow(0 6px 12px rgba(0,0,0,0.3));



}







.tw-product-img-placeholder {



    width: 100%;



    height: 100%;



    display: flex;



    align-items: center;



    justify-content: center;



    font-size: 2.5rem;



    color: var(--tw-cream-3);



}







.tw-product-badge {



    position: absolute;



    top: 0.75rem;



    left: 0.75rem;



    background: var(--tw-gold);



    color: var(--tw-dark);



    font-size: 0.65rem;



    font-weight: 700;



    letter-spacing: 0.1em;



    text-transform: uppercase;



    padding: 0.25rem 0.65rem;



    border-radius: 50px;



}







.tw-product-body {



    padding: 1.25rem 1.25rem 1.5rem;



    flex: 1;



    display: flex;



    flex-direction: column;



}







.tw-product-brand {



    font-size: 0.7rem;



    font-weight: 600;



    letter-spacing: 0.1em;



    text-transform: uppercase;



    color: var(--tw-gold-dim);



    margin-bottom: 0.35rem;



}







.tw-product-name {



    font-family: var(--font-sans);



    font-size: 0.95rem;



    font-weight: 700;



    color: var(--tw-text-dark);



    line-height: 1.3;



    margin-bottom: 0.5rem;



}







.tw-product-desc {



    font-size: 0.82rem;



    color: var(--tw-gray);



    line-height: 1.5;



    flex: 1;



    display: -webkit-box;



    -webkit-line-clamp: 2;



    line-clamp: 2;



    -webkit-box-orient: vertical;



    overflow: hidden;



}







.tw-product-footer {



    display: flex;



    align-items: center;



    justify-content: space-between;



    margin-top: 1rem;



    padding-top: 0.75rem;



    border-top: 1px solid var(--tw-cream-2);



}







.tw-product-cat {



    font-size: 0.72rem;



    background: var(--tw-cream-2);



    color: var(--tw-gray);



    padding: 0.25rem 0.65rem;



    border-radius: 50px;



    font-weight: 500;



}







.tw-product-arrow {



    width: 32px;



    height: 32px;



    background: var(--tw-dark);



    color: var(--tw-white);



    border-radius: 50%;



    display: flex;



    align-items: center;



    justify-content: center;



    font-size: 0.8rem;



    transition: background 0.2s ease, transform 0.2s ease;



}







.tw-product-card:hover .tw-product-arrow {



    background: var(--tw-gold);



    transform: rotate(45deg);



}







/* Empty products state */



.tw-products-empty {



    grid-column: 1 / -1;



    text-align: center;



    padding: 4rem 2rem;



    color: var(--tw-gray);



}







.tw-products-empty p {



    font-size: 1rem;



    margin-top: 0.5rem;



}







/* ============================================================



   SECTION: CTA & CONTATO



   ============================================================ */



.tw-cta {



    background: var(--tw-dark);



    position: relative;



    overflow: hidden;



}







.tw-cta::before {



    content: '';



    position: absolute;



    top: 0;



    left: 0;



    right: 0;



    height: 1px;



    background: linear-gradient(90deg, transparent, var(--tw-gold), transparent);



}







.tw-cta::after {



    content: '';



    position: absolute;



    bottom: -100px;



    left: 50%;



    transform: translateX(-50%);



    width: 600px;



    height: 300px;



    background: radial-gradient(ellipse, rgba(201, 150, 58, 0.06) 0%, transparent 70%);



    pointer-events: none;



}







.tw-cta-inner {



    display: grid;



    grid-template-columns: 1fr 1fr;



    gap: 5rem;



    align-items: start;



    position: relative;



    z-index: 1;



}







/* CTA Left */



.tw-cta-left .tw-btn-whatsapp {



    display: inline-flex;



    align-items: center;



    gap: 0.65rem;



    margin-top: 2rem;



    background: #25D366;



    color: var(--tw-white);



    font-size: 0.95rem;



    font-weight: 700;



    padding: 0.85rem 2rem;



    border-radius: 50px;



    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;



}







.tw-cta-left .tw-btn-whatsapp:hover {



    background: #1ebc59;



    transform: translateY(-2px);



    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);



}







.tw-cta-contact-info {



    margin-top: 2rem;



    display: flex;



    flex-direction: column;



    gap: 0.75rem;



}







.tw-cta-contact-item {



    display: flex;



    align-items: center;



    gap: 0.75rem;



    font-size: 0.875rem;



    color: rgba(245, 239, 230, 0.55);



}







.tw-cta-contact-item i {



    width: 20px;



    color: var(--tw-gold);



    flex-shrink: 0;



}







/* CTA Right — Form */



.tw-contact-form {



    background: rgba(255, 255, 255, 0.04);



    border: 1px solid rgba(255, 255, 255, 0.08);



    border-radius: var(--radius-xl);



    padding: 2.5rem 2.25rem;



}







.tw-contact-form-title {



    font-size: 1.15rem;



    font-weight: 700;



    color: var(--tw-white);



    margin-bottom: 1.75rem;



}







.tw-form-group {



    margin-bottom: 1.25rem;



}







.tw-form-group label {



    display: block;



    font-size: 0.78rem;



    font-weight: 600;



    letter-spacing: 0.05em;



    color: rgba(245, 239, 230, 0.55);



    text-transform: uppercase;



    margin-bottom: 0.5rem;



}







.tw-form-group input,



.tw-form-group textarea,



.tw-form-group select {



    width: 100%;



    background: rgba(255, 255, 255, 0.06);



    border: 1px solid rgba(255, 255, 255, 0.1);



    border-radius: var(--radius-sm);



    padding: 0.8rem 1rem;



    font-size: 0.9rem;



    font-family: var(--font-sans);



    color: var(--tw-white);



    outline: none;



    transition: border-color 0.2s ease, background 0.2s ease;



}







.tw-form-group input::placeholder,



.tw-form-group textarea::placeholder {



    color: rgba(245, 239, 230, 0.25);



}







.tw-form-group input:focus,



.tw-form-group textarea:focus,



.tw-form-group select:focus {



    border-color: var(--tw-gold);



    background: rgba(201, 150, 58, 0.05);



}







.tw-form-group select option {



    background: var(--tw-dark-2);



    color: var(--tw-cream);



}







.tw-form-group textarea {



    resize: vertical;



    min-height: 110px;



}







.tw-form-row {



    display: grid;



    grid-template-columns: 1fr 1fr;



    gap: 1rem;



}







.tw-btn-submit {



    width: 100%;



    background: var(--tw-gold);



    color: var(--tw-dark);



    font-size: 0.95rem;



    font-weight: 700;



    padding: 0.9rem 2rem;



    border: none;



    border-radius: 50px;



    cursor: pointer;



    letter-spacing: 0.04em;



    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;



    margin-top: 0.5rem;



}







.tw-btn-submit:hover {



    background: var(--tw-gold-light);



    transform: translateY(-2px);



    box-shadow: var(--shadow-gold);



}







/* ============================================================



   FOOTER



   ============================================================ */



.tw-footer {



    background: var(--tw-dark-2);



    border-top: 1px solid rgba(201, 150, 58, 0.12);



    padding: 4rem var(--section-px) 2rem;



}







.tw-footer-inner {



    max-width: 1280px;



    margin: 0 auto;



}







.tw-footer-top {



    display: grid;



    grid-template-columns: 2fr 1fr 1fr 1fr;



    gap: 3rem;



    padding-bottom: 3rem;



    border-bottom: 1px solid rgba(255, 255, 255, 0.06);



}







.tw-footer-brand img {



    height: 42px;



    filter: brightness(0) invert(1) opacity(0.8);



    margin-bottom: 1rem;



}







.tw-footer-brand p {



    font-size: 0.875rem;



    color: rgba(245, 239, 230, 0.45);



    line-height: 1.65;



    max-width: 280px;



    margin-bottom: 1.5rem;



}







.tw-footer-social {



    display: flex;



    gap: 0.75rem;



}







.tw-footer-social a {



    width: 36px;



    height: 36px;



    background: rgba(255, 255, 255, 0.06);



    border: 1px solid rgba(255, 255, 255, 0.1);



    border-radius: var(--radius-sm);



    display: flex;



    align-items: center;



    justify-content: center;



    font-size: 0.85rem;



    color: rgba(245, 239, 230, 0.5);



    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;



}







.tw-footer-social a:hover {



    background: rgba(201, 150, 58, 0.15);



    border-color: rgba(201, 150, 58, 0.3);



    color: var(--tw-gold);



}







.tw-footer-col-title {



    font-size: 0.78rem;



    font-weight: 700;



    letter-spacing: 0.12em;



    text-transform: uppercase;



    color: var(--tw-gold);



    margin-bottom: 1.25rem;



}







.tw-footer-col ul {



    display: flex;



    flex-direction: column;



    gap: 0.65rem;



}







.tw-footer-col ul li a {



    font-size: 0.875rem;



    color: rgba(245, 239, 230, 0.45);



    transition: color 0.2s ease;



}







.tw-footer-col ul li a:hover {



    color: var(--tw-cream);



}







.tw-footer-bottom {



    display: flex;



    align-items: center;



    justify-content: space-between;



    padding-top: 2rem;



    gap: 1rem;



    flex-wrap: wrap;



}







.tw-footer-copy {



    font-size: 0.8rem;



    color: rgba(245, 239, 230, 0.3);



}







.tw-footer-copy a {



    color: rgba(201, 150, 58, 0.6);



    transition: color 0.2s ease;



}







.tw-footer-copy a:hover {



    color: var(--tw-gold);



}







.tw-footer-links {



    display: flex;



    gap: 1.5rem;



}







.tw-footer-links a {



    font-size: 0.8rem;



    color: rgba(245, 239, 230, 0.3);



    transition: color 0.2s ease;



}







.tw-footer-links a:hover {



    color: var(--tw-cream);



}







/* ============================================================



   TOAST FEEDBACK



   ============================================================ */



.tw-toast {



    position: fixed;



    bottom: 2rem;



    right: 2rem;



    background: var(--tw-dark-2);



    border: 1px solid var(--tw-gold);



    color: var(--tw-cream);



    font-size: 0.9rem;



    font-weight: 500;



    padding: 1rem 1.5rem;



    border-radius: var(--radius-md);



    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);



    z-index: 9999;



    display: flex;



    align-items: center;



    gap: 0.75rem;



    transform: translateY(20px);



    opacity: 0;
    pointer-events: none;



    transition: transform 0.35s ease, opacity 0.35s ease;



}







.tw-toast.show {



    transform: translateY(0);



    opacity: 1;
    pointer-events: auto;



}







.tw-toast-icon {



    color: #25D366;



    font-size: 1.1rem;



}







/* ============================================================



   DIVIDER



   ============================================================ */



.tw-divider {



    width: 48px;



    height: 3px;



    background: linear-gradient(90deg, var(--tw-gold), var(--tw-gold-light));



    border-radius: 2px;



    margin: 1rem 0;



}







/* ============================================================



   RESPONSIVE — TABLET LARGO (max 1200px)



   ============================================================ */



@media (max-width: 1200px) {



    .tw-nav-links {



        gap: 1.5rem;



    }







    .tw-products-grid {



        grid-template-columns: repeat(3, 1fr);



    }



}







/* ============================================================



   RESPONSIVE — TABLET (max 1024px)



   ============================================================ */



@media (max-width: 1024px) {



    :root {



        --section-px: clamp(1.25rem, 4vw, 3rem);



    }







    .tw-about-inner {



        grid-template-columns: 1fr;



        gap: 2.5rem;



    }







    .tw-about-right {



        padding-left: 1.5rem;



    }







    .tw-pillars-header {



        grid-template-columns: 1fr;



        gap: 1rem;



    }







    .tw-pillars-grid {



        grid-template-columns: repeat(2, 1fr);



    }







    .tw-products-grid {



        grid-template-columns: repeat(2, 1fr);



    }







    .tw-cta-inner {



        grid-template-columns: 1fr;



        gap: 3rem;



    }







    .tw-footer-top {



        grid-template-columns: 1fr 1fr;



        gap: 2rem;



    }







    .tw-brands-header {



        flex-direction: column;



        align-items: flex-start;



        gap: 1rem;



    }







    /* Brands Carousel responsive adjustments */
    .tw-brand-card {
        width: 250px;
        min-height: 190px;
    }







    /* Ocultar links do nav, mostrar hamburger */



    .tw-nav-links {
        display: none;
    }



    .tw-hamburger {
        display: flex;
    }



}







/* ============================================================



   RESPONSIVE — MOBILE (max 768px)



   ============================================================ */



@media (max-width: 768px) {



    :root {



        --nav-height: 60px;



        --section-px: 1.25rem;



    }







    /* Navbar */



    .tw-nav-logo img {
        height: 28px;
    }



    .tw-nav-logo-text {
        font-size: 0.825rem;
    }



    .tw-nav-logo {
        gap: 0.5rem;
    }







    /* Hero — padding menor para caber conteúdo */



    .tw-hero-content {



        padding-top: calc(var(--nav-height) + 2.5rem);



        padding-bottom: 3.5rem;



    }







    .tw-hero-headline {



        font-size: clamp(2.1rem, 8vw, 3rem);



        max-width: 100%;



    }







    .tw-hero-subline {



        font-size: 0.95rem;



        max-width: 100%;



        margin-bottom: 2rem;



    }







    .tw-hero-actions {



        flex-direction: column;



        align-items: stretch;



        gap: 0.75rem;



    }







    .tw-hero-actions a,



    .tw-hero-actions button {



        width: 100%;



        text-align: center;



        justify-content: center;



    }







    .tw-hero-stats {



        gap: 1.25rem 2rem;



        margin-top: 2rem;



        padding-top: 1.75rem;



        flex-wrap: wrap;



    }







    .tw-hero-stat {



        min-width: 80px;



        flex: 1 1 auto;



    }







    .tw-hero-stat-num {



        font-size: 1.4rem;



    }







    .tw-hero-stat-label {



        font-size: 0.68rem;



    }







    /* Sections */



    .tw-section {



        padding: clamp(3rem, 7vw, 5rem) var(--section-px);



    }







    .tw-section-title {



        font-size: clamp(1.75rem, 6vw, 2.5rem);



    }







    /* About */



    .tw-about-inner {



        grid-template-columns: 1fr;



        gap: 2rem;



    }







    .tw-about-right {



        font-size: 1rem;



        padding-left: 1.25rem;



    }







    /* Pillars */



    .tw-pillars-header {



        grid-template-columns: 1fr;



        gap: 0.75rem;



        margin-bottom: 2rem;



    }







    .tw-pillars-grid {



        grid-template-columns: 1fr;



        gap: 1rem;



    }







    .tw-pillar-card {



        padding: 1.75rem 1.5rem;



    }







    /* Brands */



    .tw-brands-header {



        margin-bottom: 2rem;



    }







    .tw-brands-carousel-wrapper {
        padding: 1.5rem 0;
        mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .tw-brand-card {
        width: 230px;
        min-height: 170px;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .tw-brand-card img {
        max-height: 70px;
        max-width: 160px;
    }

    .tw-brand-card-name {
        font-size: 0.75rem;
    }







    /* Products */



    .tw-products-header {



        flex-direction: column;



        align-items: flex-start;



        gap: 0.75rem;



        margin-bottom: 1.75rem;



    }







    .tw-products-grid {



        grid-template-columns: repeat(2, 1fr);



        gap: 1rem;



    }







    /* CTA */



    .tw-cta-inner {



        grid-template-columns: 1fr;



        gap: 2.5rem;



    }







    .tw-form-row {



        grid-template-columns: 1fr;



    }







    .tw-contact-form {



        padding: 1.75rem 1.25rem;



    }







    /* Footer */



    .tw-footer {



        padding: 3rem var(--section-px) 1.5rem;



    }







    .tw-footer-top {



        grid-template-columns: 1fr;



        gap: 2rem;



    }







    .tw-footer-brand p {



        max-width: 100%;



    }







    .tw-footer-bottom {



        flex-direction: column;



        align-items: flex-start;



        gap: 0.75rem;



    }







    .tw-footer-links {



        flex-wrap: wrap;



        gap: 1rem;



    }







    /* Toast */



    .tw-toast {



        left: 1rem;



        right: 1rem;



        bottom: 1rem;



    }



}







/* ============================================================



   RESPONSIVE — SMALL MOBILE (max 480px)



   ============================================================ */



@media (max-width: 480px) {



    :root {



        --section-px: 1rem;



    }







    .tw-hero-badge {



        font-size: 0.68rem;



        padding: 0.35rem 0.75rem;



    }







    .tw-products-grid {



        grid-template-columns: 1fr;



    }







    .tw-brand-card {
        width: 200px;
        min-height: 150px;
        padding: 1.5rem 1rem;
    }

    .tw-brand-card img {
        max-height: 60px;
        max-width: 140px;
    }







    .tw-hero-scroll {



        display: none;



    }







    .tw-pillar-card {



        padding: 1.5rem 1.25rem;



    }







    .tw-footer-top {



        grid-template-columns: 1fr;



    }



}







/* ============================================================



   ANIMATIONS & MICRO-INTERACTIONS



   ============================================================ */



@keyframes fadeInUp {



    from {



        opacity: 0;



        transform: translateY(28px);



    }



    to {



        opacity: 1;



        transform: translateY(0);



    }



}







.tw-animate {



    opacity: 0;



    animation: fadeInUp 0.65s ease forwards;



}







.tw-animate-delay-1 {
    animation-delay: 0.1s;
}



.tw-animate-delay-2 {
    animation-delay: 0.2s;
}



.tw-animate-delay-3 {
    animation-delay: 0.3s;
}



.tw-animate-delay-4 {
    animation-delay: 0.4s;
}



.tw-animate-delay-5 {
    animation-delay: 0.5s;
}







/* Scroll-triggered reveal (JS adds .revealed) */



.tw-reveal {



    opacity: 0;



    transform: translateY(32px);



    transition: opacity 0.65s ease, transform 0.65s ease;



}







.tw-reveal.revealed {



    opacity: 1;



    transform: translateY(0);



}







.tw-reveal-delay-1 {
    transition-delay: 0.1s;
}



.tw-reveal-delay-2 {
    transition-delay: 0.2s;
}



.tw-reveal-delay-3 {
    transition-delay: 0.3s;
}







/* Garante que elementos .tw-reveal dentro do hero sempre apareçam */



@media (prefers-reduced-motion: reduce) {



    .tw-reveal,



    .tw-animate {



        opacity: 1 !important;



        transform: none !important;



        animation: none !important;



        transition: none !important;



    }



}







/* ==========================================================



   CATALOGO EXPANDIDO (Marcas Full-Screen Layout)



   ========================================================== */







.catalogo-page .tw-navbar {



    background: transparent !important;



    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;



    backdrop-filter: blur(8px);



    -webkit-backdrop-filter: blur(8px);



    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);



}







.catalogo-page .tw-navbar.scrolled {



    background: rgba(13, 10, 7, 0.95) !important;



    border-bottom-color: var(--tw-gold-dim) !important;



}







/* Navbar Dynamic Theme Colors when active section is clicked */



.catalogo-page .tw-navbar[data-active-theme="brand-theme-0"] {
    background: rgba(75, 210, 125, 0.2) !important;
    border-bottom-color: #4bd27d !important;
}



.catalogo-page .tw-navbar[data-active-theme="brand-theme-1"] {
    background: rgba(248, 50, 129, 0.2) !important;
    border-bottom-color: #f83281 !important;
}



.catalogo-page .tw-navbar[data-active-theme="brand-theme-2"] {
    background: rgba(255, 179, 94, 0.2) !important;
    border-bottom-color: #ffb35e !important;
}



.catalogo-page .tw-navbar[data-active-theme="brand-theme-3"] {
    background: rgba(157, 58, 214, 0.2) !important;
    border-bottom-color: #9d3ad6 !important;
}







.catalogo-wrapper {



    width: 100%;



    margin: 0;



    padding-top: var(--nav-height);



    display: flex;



    flex-direction: column;



    min-height: 100vh;



    background: var(--tw-dark);



    overflow-x: hidden;



    overflow-y: auto;
    /* Permite scroll caso o conteúdo exceda a tela em telas menores */



}







.brand-expand-section {



    position: relative;



    width: 94%;



    margin: 1.5rem auto 0;
    /* Centralização e espaçamento superior */



    flex: 0 0 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    box-sizing: border-box;
    border-radius: 20px;
    margin-top: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}















.brand-expand-section.is-expanded {



    flex: 1;



    min-height: 60vh;
    /* Garante que a marca aberta sempre tenha espaço suficiente para o carrossel */



    height: auto;



    cursor: default;



    z-index: 50;



    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2);



}







/* Background Gradients with Texture */



/* Vibrant & Premium Palettes - Editorial Style */



.brand-theme-0 {
    /*background: linear-gradient(135deg, #0d5f4f 0%, #1a9e52 100%);*/
    background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}

/* Green Organic */



.brand-theme-1 {
    background: linear-gradient(90deg, rgba(51, 153, 14, 1) 0%, rgba(249, 253, 29, 1) 46%, rgba(57, 40, 184, 1) 100%);
    /* background: linear-gradient(135deg, #881140 0%, #c41953 100%); */
}

/* Red Berry */



.brand-theme-2 {
    background: radial-gradient(circle, rgba(251, 63, 232, 1) 0%, rgba(70, 252, 228, 1) 100%);
    /* background: linear-gradient(135deg, #ffffff 0%, #272420 100%); */
    /* Orange Zest */
}



.brand-theme-3 {
    background: linear-gradient(135deg, #4d255e 0%, #6e3586 100%);
    /* Purple Pure */
}







.brand-huge-bg-text {



    position: absolute;



    top: 50%;



    left: 50%;



    transform: translate(-50%, -50%) scale(1);



    font-family: var(--font-sans);



    font-size: clamp(4rem, 20vw, 320px);
    /* Leve redução */



    font-weight: 900;



    color: rgba(255, 255, 255, 0.06);
    /* Redução da opacidade */



    white-space: nowrap;



    line-height: 1;



    z-index: 0;



    letter-spacing: -0.03em;



    pointer-events: none;



    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);



    text-transform: uppercase;



}







.brand-expand-section.is-expanded .brand-huge-bg-text {



    transform: translate(-50%, -50%) scale(1.3);



    color: rgba(255, 255, 255, 0.08);
    /* Mais sutil nos fundos */



    filter: blur(4px);
    /* Mais desfoque para separar do primeiro plano */



}







.brand-expand-content {



    position: relative;



    z-index: 10;



    width: 100%;



    max-width: 1700px;
    /* Mais largo para permitir mais espaço entre colunas */



    margin: 0 auto;



    padding: 0 8%;



    display: grid;



    grid-template-columns: 1fr 1.1fr 1fr;



    align-items: center;



    gap: 8rem;
    /* Espaçamento generoso entre as 3 colunas */



    height: 100%;



    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);



}







.brand-expand-section.is-expanded .brand-expand-content {



    padding-top: 100px;



}







.brand-expand-left {



    display: flex;



    flex-direction: column;



    gap: 0.5rem;



    transition: transform 0.8s ease;



}







/* Desktop colapsado: layout de 3 colunas — logo | bg text | atributos */
.brand-expand-section:not(.is-expanded) .brand-expand-content {
    grid-template-columns: 1fr 1.5fr 1fr;
    justify-items: center;
    align-items: center;
    padding: 0 2rem;
}

.brand-expand-section:not(.is-expanded) .brand-expand-left {
    transform: translateY(0);
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Logo visível mesmo com seção fechada — MAIOR */
.brand-expand-section:not(.is-expanded) .brand-feature-title {
    width: 340px;
    height: 150px;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 900;
}

.brand-expand-section:not(.is-expanded) .brand-logo-img {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5)) brightness(1.1);
    transform: scale(1);
}

/* Esconde apenas descrição, count e carrossel quando fechado */
.brand-expand-section:not(.is-expanded) .brand-feature-desc,
.brand-expand-section:not(.is-expanded) .brand-prod-count,
.brand-expand-section:not(.is-expanded) .brand-carousel-placeholder {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Painel direito visível — mas compacto */
.brand-expand-section:not(.is-expanded) .brand-expand-right {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* Label do atributo escondido no colapsado, só bolinhas */
.brand-expand-section:not(.is-expanded) .brand-attr-label {
    display: none;
}

/* Centro (bg text) visível como absoluto para cobrir tudo atrás */
.brand-expand-section:not(.is-expanded) .brand-expand-center {
    position: absolute;
    inset: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}







.brand-expand-section.is-expanded .brand-expand-left {



    gap: 3.5rem;
    /* Aumentado significativamente para separar o nome da descrição */



}







.brand-feature-title {
    font-family: var(--font-sans);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    width: 300px;
    /* Fixed width for uniformity */
    height: 100px;
    /* Fixed height matchings logo max-height */
    flex-shrink: 0;
    transition: all 0.8s ease;
}







.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}







.brand-expand-section.is-expanded .brand-logo-img {



    max-height: 240px;



    filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.45));



    transform: scale(1.05);



}







.brand-expand-section.is-expanded .brand-feature-title {
    width: 100%;
    /* Go full width when expanded to allow larger logo */
    height: auto;
    font-size: clamp(2rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0;
}







.brand-feature-desc {



    font-size: 1.05rem;



    color: rgba(255, 255, 255, 0.8);



    line-height: 1.8;
    /* Aumentado para melhor legibilidade */



    max-width: 420px;



    opacity: 0;



    transform: translateY(20px);



    transition: all 0.7s 0.2s cubic-bezier(0.23, 1, 0.32, 1);



}







.brand-expand-section.is-expanded .brand-feature-desc {



    opacity: 1;



    transform: translateY(0);



}







.brand-expand-center {



    display: flex;



    align-items: center;



    justify-content: center;



    height: 100%;



    pointer-events: none;



}







.brand-carousel-placeholder {



    width: 100%;



    height: 100%;



    display: flex;



    justify-content: center;



    align-items: center;



    opacity: 0;



    transform: scale(0.8) translateY(30px);



    transition: all 0.8s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);



}







.brand-expand-section.is-expanded .brand-carousel-placeholder {



    opacity: 1;



    transform: scale(1) translateY(0);



    pointer-events: auto;



}







.carousel-coming-soon {



    background: rgba(45, 25, 10, 0.45);
    /* Tobacco Gold/Brown Glassmorphism */



    backdrop-filter: blur(40px);



    -webkit-backdrop-filter: blur(40px);



    padding: 4rem 6rem;



    border-radius: 60px;



    border: 1px solid rgba(255, 255, 255, 0.1);



    display: flex;



    flex-direction: column;



    align-items: center;



    gap: 2rem;



    color: #fff;



    box-shadow:



        0 40px 100px -20px rgba(0, 0, 0, 0.5),



        inset 0 0 30px rgba(255, 255, 255, 0.05);



    transition: all 0.5s ease;



}







.carousel-coming-soon:hover {



    background: rgba(60, 35, 15, 0.55);



    transform: translateY(-5px);



}







.carousel-coming-soon i {



    font-size: 3.5rem;



    color: var(--tw-gold-light);



    text-shadow: 0 0 30px rgba(201, 150, 58, 0.5);



}







.carousel-coming-soon span {



    font-size: 1.2rem;



    font-weight: 600;



    letter-spacing: 0.05em;



    text-transform: uppercase;



}







.brand-expand-right {



    display: flex;



    flex-direction: column;



    align-items: center;
    /* Centralizado melhor à direita */



    gap: 3rem;
    /* Aumentado gap entre label e bolhas */



    transition: transform 0.8s ease;



}







.brand-expand-section:not(.is-expanded) .brand-expand-right {



    transform: translateY(15px);



}







.brand-attr-label {



    font-size: 0.75rem;



    font-weight: 700;



    text-transform: uppercase;



    letter-spacing: 0.2rem;



    color: rgba(255, 255, 255, 0.7);



    opacity: 0;



    transition: opacity 0.5s 0.4s ease;



}







.brand-expand-section.is-expanded .brand-attr-label {



    opacity: 1;



}







.brand-attr-bubbles {



    display: flex;



    gap: 1rem;



}







.brand-bubble {



    width: 45px;



    height: 45px;



    background: rgba(255, 255, 255, 0.15);



    border: 1px solid rgba(255, 255, 255, 0.3);



    border-radius: 12px;



    display: flex;



    align-items: center;



    justify-content: center;



    font-size: 0.75rem;



    font-weight: 800;



    color: #fff;



    backdrop-filter: blur(10px);



    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);



}







.brand-expand-section.is-expanded .brand-bubble {



    width: 65px;



    height: 65px;



    border-radius: 50%;



    background: rgba(255, 255, 255, 0.25);



    font-size: 0.9rem;



    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);



}







.brand-bubble:hover {



    transform: scale(1.1) rotate(5deg);



    background: rgba(255, 255, 255, 0.4);



}







/* Scroll Indication for Active section */



.brand-expand-section.is-expanded::after {



    content: 'Role para explorar';



    position: absolute;



    bottom: 2rem;



    left: 50%;



    transform: translateX(-50%);



    font-size: 0.7rem;



    text-transform: uppercase;



    letter-spacing: 3px;



    opacity: 0.6;



    animation: bounce 2s infinite;



}







@keyframes bounce {



    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }



    40% {
        transform: translateX(-50%) translateY(-10px);
    }



    60% {
        transform: translateX(-50%) translateY(-5px);
    }



}







/* Responsiveness */



@media (max-width: 1024px) {
    .brand-expand-section {
        min-height: 150px;
        /* Increased from 120px */
        border-radius: 24px 24px 0 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .brand-expand-section.is-expanded {
        min-height: 100vh;
        height: auto;
        padding-top: 60px;
    }

    .brand-expand-content {
        grid-template-columns: 1fr;
        padding: 1.2rem 1.5rem;
        /* Reduced from 2rem */
        gap: 2rem;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .brand-expand-section.is-expanded .brand-expand-content {
        height: auto;
        /* Allow growth if content is long */
        grid-template-rows: auto auto auto;
        padding: 4rem 1.5rem 80px;
        /* More top padding for expanded state */
        gap: 3.5rem;
    }

    .brand-expand-section:not(.is-expanded) .brand-expand-center,
    .brand-expand-section:not(.is-expanded) .brand-expand-right,
    .brand-expand-section:not(.is-expanded) .brand-feature-desc {
        display: none;
    }

    /* Na tablet, logo colapsada menor */
    .brand-expand-section:not(.is-expanded) .brand-feature-title {
        width: 220px;
        height: 100px;
    }

    .brand-expand-section:not(.is-expanded) .brand-logo-img {
        max-height: 90px;
    }

    .brand-expand-left {
        align-items: center;
        text-align: center;
    }

    .brand-feature-title {
        width: 100%;
        /* On mobile, use full width centered */
        height: 80px;
    }

    .brand-logo-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .brand-expand-section.is-expanded .brand-logo-img {
        max-height: 180px;
    }

    .brand-feature-desc {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 1rem;
    }

    .brand-expand-right {
        align-items: center;
        width: 100%;
    }

    .brand-huge-bg-text {
        font-size: 35vw;
        opacity: 0.03;
    }
}

@media (max-width: 480px) {
    .tw-nav-logo-text {
        display: none;
        /* Hide text on very small screens to favor logo image and hamburger */
    }

    .tw-nav-logo img {
        height: 32px;
    }

    .brand-expand-section.is-expanded .brand-logo-img {
        max-height: 140px;
    }

    .brand-expand-section:not(.is-expanded) .brand-feature-title {
        width: 170px;
        height: 80px;
    }

    .brand-expand-section:not(.is-expanded) .brand-logo-img {
        max-height: 70px;
    }

    .brand-feature-desc {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .carousel-coming-soon {
        padding: 3rem 2rem;
        border-radius: 40px;
    }
}







/* ============================================================



 FOOTER



 ============================================================ */



.tw-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-sans);
}



.tw-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}



.tw-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 80px;
}



.tw-footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}



.tw-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 300px;
}



.tw-footer-social {
    display: flex;
    gap: 1.5rem;
}



.tw-footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}



.tw-footer-social a:hover {
    color: var(--tw-gold);
    transform: translateY(-3px);
}



.tw-footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #fff;
}



.tw-footer-col ul {
    list-style: none;
    padding: 0;
}



.tw-footer-col ul li {
    margin-bottom: 1rem;
}



.tw-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}



.tw-footer-col ul li a:hover {
    color: #fff;
}



.tw-footer-col ul li i {
    margin-right: 10px;
    color: var(--tw-gold);
}



.tw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}



.tw-footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}



.tw-footer-links a:hover {
    color: #fff;
}



@media (max-width: 1024px) {
    .tw-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}



@media (max-width: 768px) {
    .tw-footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .tw-footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .tw-footer-social {
        justify-content: center;
    }

    .tw-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}
/* ============================================================
   PRODUTOS EM DESTAQUE — Auto-scroll carousel (igual ao de marcas)
   ============================================================ */
.tw-products-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tw-products-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scroll-products 50s linear infinite;
}

.tw-products-carousel-wrapper:hover .tw-products-track {
    animation-play-state: paused;
}

@keyframes scroll-products {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.tw-products-carousel-wrapper .tw-product-card {
    flex: 0 0 280px;
    width: 280px;
    user-select: none;
}

@media (max-width: 768px) {
    .tw-products-track {
        animation-duration: 35s;
    }
    .tw-products-carousel-wrapper .tw-product-card {
        flex: 0 0 240px;
        width: 240px;
    }
}

