* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E31E24;
    --dark-red: #C41220;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --promo-orange: #ff6b35;
    --promo-yellow: #ffd700;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

section {
    scroll-margin-top: 110px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    justify-content: center;
    padding: 5px 0;
}

.logo-name-main {
    font-family: 'Racing Sans One', cursive;
    font-size: 42px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
    line-height: 1;
    display: block;
    font-style: normal;
    font-weight: 400;
}

.logo-e {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.6);
    margin: 0 2px;
}

.logo-name-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 4px;
    line-height: 1;
    display: block;
    padding-left: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.whatsapp-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 13px;
    border: 2px solid var(--primary-red);
    white-space: nowrap;
}

.whatsapp-btn:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 2px solid var(--primary-red);
    border-top: 3px solid var(--primary-red);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    padding-left: 25px;
}

.dropdown-menu li a i {
    color: var(--primary-red);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-menu li a:hover i {
    transform: scale(1.2);
    transition: transform 0.3s;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* ============================
   SUBMENU HEADER (MULTINÍVEL)
============================ */
.dropdown-menu {
    overflow: visible !important;
}

.dropdown-submenu {
    position: relative;
    display: block;
}

.dropdown-submenu > a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: .2s;
}

.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.dropdown-submenu > .dropdown-menu li {
    width: 100%;
}

.dropdown-submenu > .dropdown-menu a {
    white-space: nowrap;
}

/* ============================
   SUBMENU FILTRO (MULTINÍVEL)
============================ */
.filtro-dropdown-menu {
    overflow: visible !important;
}

.filtro-dropdown-menu .dropdown-submenu {
    position: relative;
}

.filtro-dropdown-menu .dropdown-submenu > button {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-right: 35px !important;
}

.filtro-dropdown-menu .dropdown-submenu > button::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary-red);
}

/* Submenu do filtro - ESCONDIDO por padrão */
.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu {
    position: absolute;
    top: 0;
    left: calc(100% + 2px);
    min-width: 260px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transform: translateX(8px);
    transition: all 0.2s ease;
    display: block !important;
    z-index: 101;
}

/* MOSTRAR submenu apenas no hover */
.filtro-dropdown-menu .dropdown-submenu:hover > .filtro-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateX(0);
}

/* Itens do submenu do filtro */
.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu li {
    width: 100%;
}

.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu li button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
}

.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu li button:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    padding-left: 23px;
}

.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu li button i {
    color: var(--primary-red);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Scrollbar do submenu do filtro */
.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

.filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* Hero Section */
.hero {
    margin-top: 120px;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(26,26,26,0.8) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(227,30,36,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(227, 30, 36, 0.5);
}

.hero-text h1 span {
    color: var(--primary-red);
    display: block;
}

.hero-text p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 13px 26px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 13px 26px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.section-title p {
    color: #999;
    font-size: 14px;
    margin-top: 15px;
}

/* Carrossel Base */
.carousel-section {
    padding: 40px 0;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) var(--dark-gray);
}

.carousel-scroll::-webkit-scrollbar {
    height: 6px;
}

.carousel-scroll::-webkit-scrollbar-track {
    background: var(--dark-gray);
    border-radius: 10px;
}

.carousel-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.4);
}

.carousel-nav:hover {
    background: var(--dark-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 5px;
}

.carousel-nav.next {
    right: 5px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 24px;
    border-radius: 4px;
}

/* Promoções */
.promocoes {
    background: linear-gradient(135deg, #1a0a0a 0%, #2a0a0a 50%, #1a0a0a 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.promocoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(227, 30, 36, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.promocoes .section-title h2 {
    background: linear-gradient(90deg, var(--promo-orange), var(--promo-yellow), var(--promo-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.promocoes .section-title h2::after {
    background: linear-gradient(90deg, var(--promo-orange), var(--promo-yellow));
    width: 80px;
}

.promocoes .carousel-nav {
    background: var(--promo-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.promocoes .carousel-nav:hover {
    background: #e55a2b;
}

.promocoes .carousel-dot.active {
    background: var(--promo-orange);
}

.promocoes .carousel-scroll::-webkit-scrollbar-thumb {
    background: var(--promo-orange);
}

.promocoes .carousel-wrapper {
    padding: 0 55px;
}

.promo-card {
    flex: 0 0 500px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    border: 3px solid var(--promo-orange);
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--promo-orange), var(--promo-yellow), var(--promo-orange));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--promo-orange), var(--primary-red));
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-badge i {
    animation: fireAnim 1s ease-in-out infinite alternate;
}

@keyframes fireAnim {
    from { transform: rotate(-5deg) scale(1); }
    to { transform: rotate(5deg) scale(1.1); }
}

.promo-image {
    width: 100%;
    height: 280px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.promo-card:hover .promo-image img {
    transform: scale(1.08);
}

.promo-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-info h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promo-info p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--promo-orange), var(--primary-red));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

/* Categorias */
.categorias {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.categoria-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
    border-radius: 12px;
    padding: 35px 22px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227,30,36,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.categoria-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.categoria-card:hover::before {
    opacity: 1;
}

.categoria-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 38px;
    color: var(--white);
    transition: all 0.3s;
}

.categoria-card:hover .categoria-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.5);
}

.categoria-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.categoria-card p {
    color: #999;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

/* Serviços */
.features {
    background: var(--dark-gray);
}

.feature-card {
    flex: 0 0 280px;
    background: var(--light-gray);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--white);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-card p {
    color: #999;
    line-height: 1.5;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 63px;
}

/* Produtos */
.products {
    background: var(--black);
}

/* Filtro Dropdown */
.filtro-dropdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.filtro-dropdown {
    position: relative;
}

.filtro-dropdown-toggle {
    background: var(--dark-gray);
    color: var(--white);
    border: 2px solid var(--light-gray);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filtro-dropdown-toggle:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
}

.filtro-dropdown.active .filtro-dropdown-toggle {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.filtro-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.filtro-dropdown:hover .filtro-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
}

.filtro-dropdown-menu li {
    width: 100%;
}

.filtro-dropdown-menu li button,
.filtro-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
}

.filtro-dropdown-menu li button:hover,
.filtro-dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-red);
    padding-left: 23px;
}

.filtro-dropdown-menu li button i,
.filtro-dropdown-menu li a i {
    color: var(--primary-red);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Botão Ver Todos */
.btn-ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-ver-todos:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.btn-ver-todos i {
    font-size: 14px;
}

.product-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid var(--light-gray);
    position: relative;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    min-height: 280px;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info p {
    color: #999;
    margin-bottom: 12px;
    font-size: 13px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 39px;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    width: fit-content;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.product-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.product-btn i {
    font-size: 14px;
}

/* Nossa História */
.historia {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.historia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(227, 30, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(227, 30, 36, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.historia-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.historia-header {
    text-align: center;
    margin-bottom: 50px;
}

.historia-header h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.historia-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.historia-header .subtitle {
    color: #999;
    font-size: 16px;
    margin-top: 25px;
    font-style: italic;
}

.historia-texto {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.historia-texto p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.historia-texto p:last-child {
    margin-bottom: 0;
}

.historia-texto strong {
    color: var(--primary-red);
    font-weight: 700;
}

.historia-destaque {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.historia-destaque i {
    margin-right: 10px;
}

.historia-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.timeline-item {
    background: var(--dark-gray);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border-top: 3px solid var(--primary-red);
    transition: all 0.3s;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.timeline-ano {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.timeline-evento {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(227, 30, 36, 0.4);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--dark-red);
    transform: rotate(90deg);
}

.modal-categoria-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--light-gray);
}

.modal-categoria-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 50px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
}

.modal-categoria-header h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-categoria-body {
    padding: 30px;
}

.modal-categoria-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-red);
    text-transform: uppercase;
}

.modal-categoria-body p {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.modal-servico-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 2px solid var(--light-gray);
}

.modal-servico-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 45px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
}

.modal-servico-header h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-servico-body {
    padding: 30px;
}

.modal-servico-body p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
}

.modal-produto-imagem {
    width: 100%;
    height: 350px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 2px solid var(--light-gray);
}

.modal-produto-imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-produto-body {
    padding: 30px;
}

.modal-produto-body .badge {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 15px;
}

.modal-produto-body h2 {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.modal-produto-body .descricao {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.modal-produto-body .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.modal-produto-body .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.modal-promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--promo-orange), var(--primary-red));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-promo-imagem {
    width: 100%;
    height: 400px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-bottom: 3px solid var(--promo-orange);
}

.modal-promo-imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-promo-body {
    padding: 30px;
}

.modal-promo-body h2 {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--promo-orange), var(--promo-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.modal-promo-body .descricao {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

.modal-promo-body .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--promo-orange), var(--primary-red));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.modal-promo-body .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

/* Footer */
footer {
    background: var(--dark-gray);
    padding: 40px 0 20px;
    border-top: 3px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-red);
}

.footer-section p,
.footer-section a {
    color: #999;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a[href*="tiktok"]:hover {
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    box-shadow: 0 5px 20px rgba(255, 0, 80, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    color: #666;
    font-size: 12px;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.hero-img-desktop {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(227, 30, 36, 0.3));
    animation: floatMoto 6s ease-in-out infinite;
}

@keyframes floatMoto {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hide-mobile {
    display: block;
}

@media (max-width: 968px) {
    /* Garante que não haja overflow horizontal */
    html, body {
        overflow-x: hidden !important;
        width: 100%;
    }

    /* Botão do menu mobile sempre visível */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1002;
    }

    /* Esconde dropdowns do header no mobile (usa menu lateral) */
    .nav-links .dropdown-menu {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        border-left: 3px solid var(--primary-red);
        padding: 20px;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 15px;
    }

    .nav-links .whatsapp-btn {
        margin-top: 20px;
        justify-content: center;
        width: 100%;
    }

.nav-links.active > li.dropdown > .dropdown-menu {
    display: block !important;
    position: static !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: all 0.3s ease !important;
}

/* Dropdown principal VISÍVEL quando a categoria pai tem .expanded */
.nav-links.active > li.dropdown.expanded > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 1000px !important;
    padding: 5px 0 5px 20px !important;
}

/* Subgrupos OCULTOS por padrão */
.nav-links.active .dropdown-submenu > .dropdown-menu {
    display: block !important;
    position: static !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0 !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
}

/* Subgrupos VISÍVEIS quando tem .expanded */
.nav-links.active .dropdown-submenu.expanded > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 500px !important;
    padding: 5px 0 5px 15px !important;
    pointer-events: auto !important;
}

/* ===== REMOVER SETAS DO MENU MOBILE ===== */
.nav-links.active .dropdown-submenu > a::after,
.nav-links.active .dropdown-submenu > a::before,
.nav-links.active li > a::after,
.nav-links.active li > a::before,
.nav-links.active > li.dropdown > a::after,
.nav-links.active > li.dropdown > a::before {
    display: none !important;
    content: none !important;
}

.nav-links.active .dropdown-submenu.expanded > a::after {
    transform: rotate(90deg) !important;
}

    /* ===== FILTRO DROPDOWN NO MOBILE (CORRIGIDO) ===== */
    .filtro-dropdown {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .filtro-dropdown-toggle {
        width: 100%;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
    }

    .filtro-dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        min-width: 100% !important;
        max-width: 100vw !important;
        width: 100% !important;
        z-index: 999 !important;
    }

    /* Subgrupos OCULTOS por padrão no mobile */
    .filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        top: auto !important;
        min-width: 100% !important;
        pointer-events: none !important;
        transition: all 0.3s ease !important;
    }

    /* Subgrupos VISÍVEIS apenas quando categoria pai tem classe .expanded */
    .filtro-dropdown-menu .dropdown-submenu.expanded > .filtro-dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        padding: 5px 0 5px 15px !important;
        pointer-events: auto !important;
    }

    /* Seta indicativa no mobile (muda quando expandido) */
    .filtro-dropdown-menu .dropdown-submenu > button::after {
        content: "\f105" !important;
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 12px !important;
        color: var(--primary-red) !important;
        transition: transform 0.3s ease !important;
    }

    .filtro-dropdown-menu .dropdown-submenu.expanded > button::after {
        transform: translateY(-50%) rotate(90deg) !important;
    }
    
    /* DESATIVA hover no mobile - só funciona via JavaScript */
    .filtro-dropdown-menu .dropdown-submenu:hover > .filtro-dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        pointer-events: none !important;
    }

    /* Subgrupos OCULTOS por padrão no mobile */
    .filtro-dropdown-menu .dropdown-submenu > .filtro-dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        top: auto !important;
        min-width: 100% !important;
        pointer-events: none !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }

    /* Subgrupos VISÍVEIS apenas quando categoria pai tem classe .expanded */
    .filtro-dropdown-menu .dropdown-submenu.expanded > .filtro-dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        padding: 5px 0 5px 15px !important;
        pointer-events: auto !important;
    }

    /* Resto dos ajustes mobile */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 60px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .logo-img {
        height: 50px;
    }

    .logo-link {
        gap: 10px;
    }

    .logo-name-main {
        font-size: 24px;
        letter-spacing: 0.5px;
        font-family: 'Racing Sans One', cursive;
    }

    .logo-name-sub {
        font-size: 12px;
        letter-spacing: 5px;
        font-family: 'Barlow Condensed', sans-serif;
    }

    .carousel-wrapper {
        padding: 0 45px;
    }

    .categoria-card,
    .feature-card,
    .product-card {
        flex: 0 0 250px;
        min-height: 260px;
    }

    .promo-card {
        flex: 0 0 420px;
    }

    .promo-image {
        height: 240px;
    }

    .promo-info h3 {
        font-size: 20px;
    }

    .categoria-card {
        padding: 30px 18px;
    }

    .categoria-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .categoria-card h3 {
        font-size: 17px;
    }

    .categoria-card p {
        font-size: 13px;
    }

    .feature-card {
        padding: 28px 18px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .product-image {
        height: 180px;
    }

    .historia-header h2 {
        font-size: 32px;
    }

    .historia-texto {
        padding: 30px 20px;
    }

    .historia-texto p {
        font-size: 15px;
    }

    .historia-destaque {
        font-size: 16px;
        padding: 20px;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-categoria-icon {
        width: 100px;
        height: 100px;
        font-size: 42px;
    }

    .modal-categoria-header h2 {
        font-size: 26px;
    }

    .modal-produto-imagem {
        height: 280px;
    }

    .modal-produto-body h2 {
        font-size: 24px;
    }

    .modal-promo-imagem {
        height: 300px;
    }

    .modal-promo-body h2 {
        font-size: 24px;
    }

    html, section {
        scroll-padding-top: 95px;
        scroll-margin-top: 95px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 46px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-section {
        padding: 30px 0;
    }

    .carousel-wrapper {
        padding: 0 40px;
    }

    .logo-img {
        height: 45px;
    }

    .logo-name-main {
        font-size: 20px;
        font-family: 'Racing Sans One', cursive;
    }

    .logo-name-sub {
        font-size: 10px;
        letter-spacing: 4px;
        font-family: 'Barlow Condensed', sans-serif;
    }

    .logo-link {
        gap: 8px;
    }

    .categoria-card,
    .feature-card,
    .product-card {
        flex: 0 0 230px;
        min-height: 240px;
    }

    .promo-card {
        flex: 0 0 320px;
    }

    .promo-image {
        height: 220px;
    }

    .promo-info {
        padding: 20px;
    }

    .promo-info h3 {
        font-size: 18px;
    }

    .promo-info p {
        font-size: 13px;
    }

    .promo-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .categoria-card {
        padding: 25px 15px;
    }

    .categoria-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .categoria-card h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .categoria-card p {
        font-size: 12px;
        min-height: 36px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .carousel-nav.prev {
        left: 3px;
    }

    .carousel-nav.next {
        right: 3px;
    }

    .feature-card {
        padding: 25px 18px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 13px;
    }

    .product-image {
        height: 170px;
        padding: 10px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 15px;
    }

    .product-info p {
        font-size: 12px;
    }

    .product-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title {
        margin-bottom: 25px;
    }

    .historia {
        padding: 50px 0;
    }

    .historia-header h2 {
        font-size: 26px;
    }

    .historia-texto {
        padding: 25px 15px;
    }

    .historia-texto p {
        font-size: 14px;
        text-align: left;
    }

    .historia-destaque {
        font-size: 14px;
        padding: 18px 15px;
    }

    .historia-timeline {
        grid-template-columns: 1fr;
    }

    .modal-categoria-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }

    .modal-categoria-header h2 {
        font-size: 22px;
    }

    .modal-servico-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .modal-servico-header h2 {
        font-size: 22px;
    }

    .modal-produto-imagem {
        height: 240px;
        padding: 20px;
    }

    .modal-produto-body h2 {
        font-size: 22px;
    }

    .modal-produto-body .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .modal-promo-imagem {
        height: 250px;
        padding: 20px;
    }

    .modal-promo-body h2 {
        font-size: 22px;
    }

    .modal-promo-body .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .modal-promo-badge {
        font-size: 11px;
        padding: 8px 14px;
        top: 15px;
        left: 15px;
    }

    html, section {
        scroll-padding-top: 85px;
        scroll-margin-top: 85px;
    }
}

@media (max-width: 400px) {
    .logo-img {
        height: 40px;
    }

    .logo-link {
        gap: 6px;
    }

    .logo-name-main {
        font-size: 16px;
        letter-spacing: 0;
        font-family: 'Racing Sans One', cursive;
    }

    .logo-name-sub {
        font-size: 9px;
        letter-spacing: 3px;
        font-family: 'Barlow Condensed', sans-serif;
    }

    .categoria-card,
    .feature-card,
    .product-card {
        flex: 0 0 210px;
        min-height: 220px;
    }

    .promo-card {
        flex: 0 0 280px;
    }

    .promo-image {
        height: 200px;
    }

    .categoria-card {
        padding: 22px 12px;
    }

    .categoria-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .categoria-card h3 {
        font-size: 14px;
    }

    .product-image {
        height: 160px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .historia-header h2 {
        font-size: 22px;
    }

    .filtro-dropdown-toggle {
        padding: 8px 14px;
        font-size: 11px;
    }
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}