/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== Accessibility - Skip Links ==================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ff6600;
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== Top Announcement Bar ==================== */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: 200% 100%;
    color: #ffffff;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: topBarShimmer 4s ease-in-out infinite;
}

@keyframes topBarShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.25), transparent);
    animation: topBarGlow 3s ease-in-out infinite;
}

@keyframes topBarGlow {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.top-bar-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: topBarPulse 2s ease-in-out infinite;
}

@keyframes topBarPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.top-bar-content strong {
    font-weight: 700;
}

.highlight-orange {
    color: #ff6600;
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ==================== RESPONSIVO - Top Bar ==================== */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 10px;
        font-size: 11px;
    }

    .top-bar-content {
        padding: 0 10px;
    }

    .top-bar-content span {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 3px;
        line-height: 1.4;
    }

    .highlight-orange {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 6px 8px;
        font-size: 10px;
    }

    .highlight-orange {
        font-size: 12px;
    }
}

/* ==================== Navigation Menu ==================== */
.nav-menu {
    background-color: #2d2d2d;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0;
}

.nav-items li a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-items li a:hover {
    background-color: #3d3d3d;
    color: #ff6600;
}

/* ==================== Sticky Header Wrapper ==================== */
.sticky-header-wrapper {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

/* Estado: Header fixo ao fazer scroll */
.sticky-header-wrapper.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Espaçador quando header está fixo */
.header-spacer {
    display: none;
}

.header-spacer.active {
    display: block;
}

/* ==================== Main Header ==================== */
.main-header {
    background: linear-gradient(180deg, #ff7700 0%, #ff6600 100%);
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Diagonal Stripes */
.diagonal-stripes {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    pointer-events: none;
    z-index: 1;
}

.diagonal-stripes.left {
    left: 0;
    transform: skewX(-20deg);
    transform-origin: left top;
}

.diagonal-stripes.right {
    right: 0;
    transform: skewX(20deg);
    transform-origin: right top;
}

.diagonal-stripes .stripe {
    background-color: #000000;
    height: 18px;
    width: 100%;
    opacity: 0.9;
}

/* Header Container */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 90px;
    width: auto;
    display: block;
}

/* Search Container */
.search-container {
    flex: 1;
    max-width: 360px;
    display: flex;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.search-input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #333;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-button {
    background-color: #ff6600;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.search-button:hover {
    background-color: #ff7700;
}

.search-button svg {
    width: 18px;
    height: 18px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.header-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.header-action svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.action-label {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.95;
}

.action-value {
    font-size: 11px;
    font-weight: 700;
}

.header-action.cart {
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-action.cart:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.header-action.cart svg {
    width: 24px;
    height: 24px;
}

/* ==================== RESPONSIVO - Header ==================== */

/* Laptop */
@media (max-width: 1200px) {
    .header-container {
        gap: 25px;
        /* Aumentado de 20px */
    }

    .logo img {
        height: 85px;
        /* Aumentado de 75px para 85px - transição mais suave */
    }

    .header-actions {
        gap: 15px;
    }

    .action-text {
        font-size: 12px;
        /* Aumentado de 11px */
    }
}

/* Tablet */
@media (max-width: 992px) {
    .main-header {
        padding: 15px 0;
    }

    .diagonal-stripes {
        width: 100px;
        opacity: 0.8;
    }

    .logo img {
        height: 70px;
        /* Aumentado de 65px para 70px */
    }

    .search-container {
        max-width: 320px;
        /* Reduzido para manter consistência */
    }

    .header-actions {
        gap: 10px;
    }

    .action-text {
        font-size: 10px;
        /* Reduzido para manter consistência */
    }

    .header-action {
        padding: 5px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .diagonal-stripes {
        display: none;
        /* Remove stripes decorativas */
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
    }

    .logo {
        order: 1;
        flex-basis: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 55px;
    }

    .header-actions {
        order: 2;
        position: absolute;
        right: 15px;
        top: 12px;
        gap: 8px;
    }

    .header-action {
        padding: 6px;
    }

    .header-action svg {
        width: 22px;
        height: 22px;
    }

    .search-container {
        order: 3;
        width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .search-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .search-button {
        padding: 0 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 10px;
        gap: 10px;
    }

    .logo img {
        height: 50px;
    }

    .header-actions {
        right: 10px;
        top: 10px;
        gap: 6px;
    }

    .header-action {
        padding: 5px;
    }

    .header-action svg {
        width: 20px;
        height: 20px;
    }

    .search-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .search-button {
        padding: 0 12px;
    }

    .search-button svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== Categories Bar ==================== */
.categories-bar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 50;
    /* Ensure this stays above banner if needed */
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Categories Dropdown */
.categories-dropdown {
    position: relative;
}

.categories-button {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 4px;
}

.categories-button:hover {
    background-color: #e8e8e8;
    color: #ff6600;
}

.categories-button svg {
    color: #333;
}

.categories-button:hover svg {
    color: #ff6600;
}

.categories-button .chevron {
    transition: transform 0.2s ease;
}

.categories-button.active .chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
    flex-direction: column;
}

.categories-menu.active,
.categories-menu.show {
    display: flex;
}

/* Category Menu Items */
.categories-menu a,
.category-menu-item {
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.categories-menu a:last-child {
    border-bottom: none;
}

.categories-menu a:hover,
.category-menu-item:hover {
    background-color: #f8f8f8;
    color: #ff6600;
    padding-left: 20px;
}

/* Category menu item with icon */
.category-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.category-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.category-name {
    flex: 1;
}

.category-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 4px 0;
}

.category-menu-all {
    background-color: #f8f9fa;
    font-weight: 600;
}

.category-menu-all:hover {
    background-color: #ff6600 !important;
    color: white !important;
}

/* Category loading state */
.category-loading {
    padding: 16px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Link icons in category bar */
.category-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-link .link-icon {
    font-size: 14px;
}

/* Category Links */
.category-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.category-links a {
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.category-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6600;
    transition: width 0.3s ease;
}

.category-links a:hover {
    color: #ff6600;
}

.category-links a:hover::after {
    width: 100%;
}

/* ==================== RESPONSIVO - Categories Bar ==================== */

/* Tablet */
@media (max-width: 992px) {
    .categories-container {
        gap: 20px;
        padding: 0 15px;
    }

    .category-links {
        gap: 15px;
    }

    .category-links a {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Hide categories bar on mobile - all content is in the mobile drawer */
    .categories-bar {
        display: none;
    }
}

/* Small Mobile - Categories bar is hidden, no rules needed */

/* ==================== Banner Carousel ==================== */
.banner-carousel {
    width: 100%;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    max-height: 400px;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 500ms ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: all;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient Overlay */
.banner-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, #fafafa 0%, rgba(250, 250, 250, 0.95) 15%, rgba(250, 250, 250, 0.7) 35%, rgba(250, 250, 250, 0.3) 60%, transparent 100%);
    pointer-events: none;
}

/* Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover {
    background-color: #ff6600;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

.carousel-button.prev {
    left: 30px;
}

.carousel-button.next {
    right: 30px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background-color: #ff6600;
    border-color: #ff6600;
    width: 32px;
    border-radius: 6px;
}

/* ==================== RESPONSIVO - Banner Carousel ==================== */

/* Tablet */
@media (max-width: 992px) {
    .carousel-container {
        height: 300px;
    }

    .carousel-button {
        width: 45px;
        height: 45px;
    }

    .carousel-button.prev {
        left: 20px;
    }

    .carousel-button.next {
        right: 20px;
    }

    .banner-gradient {
        height: 150px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
    }

    .carousel-button.prev {
        left: 15px;
    }

    .carousel-button.next {
        right: 15px;
    }

    .carousel-button svg {
        width: 20px;
        height: 20px;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .banner-gradient {
        height: 120px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .carousel-container {
        height: 200px;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
    }

    .carousel-button.prev {
        left: 10px;
    }

    .carousel-button.next {
        right: 10px;
    }

    .carousel-button svg {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        bottom: 12px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }
}

/* ==================== Responsive Stripes ==================== */
/* Diagonal Stripes - Sempre visíveis, apenas ajustes sutis */
@media (max-width: 1700px) {
    .diagonal-stripes {
        width: 150px;
        /* Mantém visível, apenas reduz largura */
    }
}

@media (max-width: 1450px) {
    .diagonal-stripes {
        width: 120px;
        /* Reduz mais, mas continua visível */
    }
}

@media (max-width: 1200px) {
    .diagonal-stripes {
        width: 100px;
        opacity: 0.8;
        /* Mais sutil em telas menores */
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
    .header-container {
        gap: 20px;
    }

    .search-container {
        max-width: 340px;
    }

    .header-actions {
        gap: 13px;
    }
}

@media (max-width: 992px) {
    .nav-items li a {
        padding: 12px 15px;
        font-size: 12px;
    }

    .logo img {
        height: 75px;
        /* Aumentado para manter maior */
    }

    /* .action-text - REMOVIDO display:none - Textos sempre visíveis */

    .header-actions {
        gap: 12px;
    }
}


/* Vehicle Filter CSS */
.vehicle-filter-wrapper {
    position: relative;
    margin-top: -60px;
    padding: 0 20px 40px;
    z-index: 100;
}

.vehicle-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);

    /* Specific Border Request */
    border-top: 1px solid #ff6600;
    border-left: 1px solid #ff6600;
    border-right: 1px solid #ff6600;
    border-bottom: none;
    /* Only top and sides as requested */
}

.filter-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 25px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vehicle-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.tab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tab-button svg {
    flex-shrink: 0;
}

.tab-button:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
}

.tab-button.active {
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-form {
    width: 100%;
}

.filter-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.filter-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.filter-select:hover {
    border-color: rgba(255, 102, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
}

.filter-select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.filter-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.filter-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.filter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.filter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-submit:active {
    transform: translateY(0);
}

.filter-submit svg {
    flex-shrink: 0;
}

/* ==================== RESPONSIVO - Vehicle Filter ==================== */

/* Tablet */
@media (max-width: 992px) {
    .vehicle-filter-wrapper {
        margin-top: -50px;
        padding: 0 15px 30px;
    }

    .vehicle-filter-container {
        padding: 20px 24px;
    }

    .filter-inputs {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-submit {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .vehicle-filter-wrapper {
        margin-top: -40px;
        padding: 0 15px 25px;
    }

    .vehicle-filter-container {
        padding: 20px;
        border-radius: 10px;
    }

    .filter-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .vehicle-tabs {
        margin-bottom: 20px;
    }

    .tab-button {
        padding: 12px 16px;
        font-size: 14px;
        gap: 6px;
    }

    .tab-button svg {
        width: 20px;
        height: 20px;
    }

    .filter-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-select {
        padding: 12px 14px;
        padding-right: 40px;
        font-size: 13px;
    }

    .filter-submit {
        padding: 14px 24px;
        font-size: 14px;
        margin-top: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .vehicle-filter-wrapper {
        margin-top: -30px;
        padding: 0 10px 20px;
    }

    .vehicle-filter-container {
        padding: 16px;
    }

    .filter-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .tab-button {
        padding: 10px 12px;
        font-size: 13px;
        gap: 4px;
    }

    .tab-button svg {
        width: 18px;
        height: 18px;
    }

    .tab-button span {
        display: none;
        /* Esconde texto, mostra só ícone */
    }

    .filter-select {
        padding: 11px 12px;
        padding-right: 36px;
        font-size: 12px;
    }

    .filter-submit {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ==================== Most Searched Section (Mais Procurados) ==================== */
.most-searched {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.most-searched-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.most-searched-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}

.most-searched-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
}

.most-searched-carousel {
    position: relative;
}

.most-searched-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 20px;
    padding: 0 60px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 520px;
}

.most-searched-grid::-webkit-scrollbar {
    display: none;
}

.most-searched-grid .product-card {
    flex: 0 0 250px;
    min-width: 250px;
}

.most-searched-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.most-searched-nav-button:hover {
    background: #ff6600;
    color: #ffffff;
    border-color: #ff6600;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.most-searched-nav-button.prev {
    left: 0;
}

.most-searched-nav-button.next {
    right: 0;
}

/* Most Searched - Action Button */
.most-searched-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff8800 0%, #ff7700 100%);
}

.btn-view-more:active {
    transform: translateY(-1px);
}

.btn-view-more svg {
    transition: transform 0.3s ease;
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}

/* Offers - Action Button */
.offers-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ==================== Main Offers Section ==================== */
.main-offers {
    background-color: #fafafa;
    padding: 60px 0;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.offers-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
}

.offers-carousel {
    position: relative;
}

.offers-grid {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.offers-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.offers-grid .product-card {
    flex: 0 0 250px;
    min-width: 250px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 460px;
    /* Altura mínima uniforme */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Product Card Link - torna todo o card clicável */
.product-card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.product-badge.promo {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.product-badge.hot {
    background: linear-gradient(135deg, #dc3545 0%, #ff4757 100%);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Product Shipping Top (moved to top of card) */
.product-shipping-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
    color: #555;
}

.product-shipping-top svg {
    color: #10b981;
    flex-shrink: 0;
}

.product-shipping-top strong {
    color: #10b981;
    font-weight: 700;
}

/* Product Info */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 16px;
    min-height: 42px;
    height: 42px;
    /* Altura fixa para 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 12px;
    min-height: 115px;
    /* Altura fixa para uniformizar cards com/sem preço promocional */
}

/* Preço antigo riscado (quando tem promoção) */
.product-price-old {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.product-price {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 6px;
}

.product-installment {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.product-installment-detail {
    display: block;
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    min-height: 30px;
    /* Altura mínima para 2 linhas de detalhes */
}

/* Product Shipping */
/* Product Button Space - area where button appears on hover */
.product-button-space {
    padding: 0 20px 20px 20px;
    min-height: 65px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Product Buy Button */
.product-buy-button {
    width: 100%;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.product-buy-button svg {
    flex-shrink: 0;
}

.product-card:hover .product-buy-button {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.product-buy-button:hover {
    background: linear-gradient(135deg, #ff8800 0%, #ff7700 100%);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    transform: translateY(-2px);
}

.product-buy-button:active {
    transform: translateY(0);
}

/* Navigation Buttons */
.offers-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.offers-nav-button:hover {
    background: #ff6600;
    border-color: #ff6600;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.offers-nav-button.prev {
    left: 0;
}

.offers-nav-button.next {
    right: 0;
}

/* ==================== All Products Section (Nossos Produtos) ==================== */
.all-products-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.all-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.all-products-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}

.all-products-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

/* Grid de 5 colunas x 2 fileiras = 10 produtos */
.all-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.all-products-grid .product-card {
    min-width: 0;
    /* Override flex-basis */
}

/* Botão de ação */
.all-products-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Responsive - 4 colunas em telas médias */
@media (max-width: 1200px) {
    .all-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Responsive - 3 colunas em tablets */
@media (max-width: 992px) {
    .all-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .all-products-title {
        font-size: 24px;
    }
}

/* Responsive - 2 colunas em mobile */
@media (max-width: 768px) {
    .all-products-section {
        padding: 40px 0;
    }

    .all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .all-products-title {
        font-size: 20px;
    }

    .all-products-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}

/* Responsive - ajustes mobile pequeno */
@media (max-width: 480px) {
    .all-products-grid {
        gap: 10px;
    }

    .all-products-action {
        margin-top: 30px;
    }
}

/* ==================== Categories Section (Meio da Página) ==================== */
.categories-section {
    background-color: #f5f5f5;
    padding: 70px 20px;
}

/* Wrapper específico para a seção de categorias do MEIO (com cards) */
.categories-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Título centralizado da seção de categorias do MEIO */
.categories-section .categories-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin: 0 auto 50px auto;
    letter-spacing: -0.5px;
    display: block;
    width: 100%;
    padding: 0 20px;
}

/* Container da barra de categorias do TOPO (horizontal) */
.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.categories-carousel-wrapper {
    position: relative;
    padding: 0 70px;
    width: 100%;
}

.categories-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 30px 0;
    width: 100%;
}

.categories-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

/* Category Item (no background, just image + text) */
.category-item {
    flex: 0 0 auto;
    width: calc((100% - 200px) / 6);
    /* 6 items visible */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    max-width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-name {
    font-size: 15px;
    font-weight: 700;
    color: #444;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* Navigation Buttons */
.categories-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.categories-nav-button:hover {
    background-color: #ff6600;
    border-color: #ff6600;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.categories-nav-button.prev {
    left: 0;
}

.categories-nav-button.next {
    right: 0;
}

.categories-nav-button svg {
    width: 24px;
    height: 24px;
}

/* Categories Indicators */
.categories-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.category-indicator {
    width: 45px;
    height: 5px;
    background-color: #d1d5db;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-indicator:hover {
    background-color: #9ca3af;
}

.category-indicator.active {
    background-color: #1e40af;
    width: 55px;
}

/* ==================== Responsive - Categories ==================== */
@media (max-width: 1400px) {
    .category-item {
        width: calc((100% - 160px) / 5);
        /* 5 items visible */
    }

    .categories-carousel {
        gap: 32px;
    }
}

@media (max-width: 1200px) {
    .categories-carousel-wrapper {
        padding: 0 60px;
    }

    .category-item {
        width: calc((100% - 96px) / 4);
        /* 4 items visible */
    }

    .categories-carousel {
        gap: 24px;
    }

    .category-image {
        max-width: 130px;
        height: 130px;
    }

    .categories-nav-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 992px) {
    .categories-section {
        padding: 60px 15px;
    }

    .categories-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .categories-carousel-wrapper {
        padding: 0 55px;
    }

    .category-item {
        width: calc((100% - 48px) / 3);
        /* 3 items visible */
    }

    .categories-carousel {
        gap: 20px;
    }

    .category-image {
        max-width: 110px;
        height: 110px;
    }

    .category-name {
        font-size: 14px;
    }

    .categories-nav-button {
        width: 42px;
        height: 42px;
    }

    .categories-nav-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 50px 15px;
    }

    .categories-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

    .categories-carousel-wrapper {
        padding: 0 50px;
    }

    .category-item {
        width: calc((100% - 20px) / 2);
        /* 2 items visible */
    }

    .categories-carousel {
        gap: 16px;
    }

    .category-image {
        max-width: 100px;
        height: 100px;
    }

    .category-name {
        font-size: 13px;
    }

    .categories-nav-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 40px 10px;
    }

    .categories-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .categories-carousel-wrapper {
        padding: 0 45px;
    }

    .category-item {
        width: calc((100% - 12px) / 2);
        /* 2 items visible */
    }

    .categories-carousel {
        gap: 12px;
    }

    .category-image {
        max-width: 80px;
        height: 80px;
    }

    .category-name {
        font-size: 12px;
    }

    .categories-nav-button {
        width: 36px;
        height: 36px;
    }

    .categories-nav-button svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== Mais Procurados Section ==================== */
.most-searched-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.most-searched-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.most-searched-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.most-searched-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.most-searched-grid::-webkit-scrollbar {
    display: none;
}

.most-searched-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 250px;
}

.most-searched-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.free-shipping-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-image-wrapper {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: white;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.most-searched-card .product-name {
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing-box {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
    display: inline-block;
    margin-right: 8px;
}

.discount-percent {
    background: #FF6B00;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B00;
    margin: 8px 0;
}

.payment-info {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
}

.fast-delivery-badge {
    padding: 10px 15px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.fast-delivery-badge img {
    max-width: 120px;
    height: auto;
}

/* Navigation Buttons */
.most-searched-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #FF6B00;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.most-searched-nav-button:hover {
    background: #FF6B00;
    transform: translateY(-50%) scale(1.1);
}

.most-searched-nav-button:hover svg path {
    stroke: white;
}

.most-searched-nav-button.prev {
    left: 0;
}

.most-searched-nav-button.next {
    right: 0;
}

.most-searched-nav-button svg path {
    stroke: #FF6B00;
    transition: stroke 0.3s ease;
}

/* Responsive */
@media (max-width: 1400px) {
    .most-searched-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .most-searched-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .most-searched-section {
        padding: 40px 0;
    }

    .most-searched-section .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .most-searched-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .most-searched-carousel-wrapper {
        padding: 0 50px;
    }

    .most-searched-nav-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .most-searched-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .most-searched-card {
        min-width: 150px;
    }

    .product-image-wrapper {
        min-height: 150px;
        padding: 15px;
    }

    .most-searched-card .product-name {
        font-size: 12px;
        min-height: 50px;
    }

    .current-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .most-searched-section {
        padding: 30px 0;
    }

    .most-searched-section .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .most-searched-grid {
        grid-template-columns: 1fr;
        overflow-x: scroll;
        display: flex;
        gap: 15px;
        padding: 0 10px;
    }

    .most-searched-carousel-wrapper {
        padding: 0 10px;
    }

    .most-searched-nav-button {
        display: none;
    }

    .most-searched-card {
        flex-shrink: 0;
        width: 85%;
    }
}

/* ==================== Brands Section ==================== */
.brands-section {
    background-color: #fafafa;
    padding: 70px 0;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.brands-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.brands-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
}

.brands-carousel-row {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Gradient fade effect on BOTH edges (left AND right) */
.brands-carousel-row::before,
.brands-carousel-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.brands-carousel-row::before {
    left: 0;
    background: linear-gradient(to right, #fafafa 0%, rgba(250, 250, 250, 0.7) 50%, transparent 100%);
}

.brands-carousel-row::after {
    right: 0;
    background: linear-gradient(to left, #fafafa 0%, rgba(250, 250, 250, 0.7) 50%, transparent 100%);
}

.brands-carousel {
    display: flex;
    gap: 60px;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    margin: 0 auto;
}

/* Animation for left scroll */
.brands-carousel-left {
    animation: scrollLeft 30s linear infinite;
}

/* Animation for right scroll */
.brands-carousel-right {
    animation: scrollRight 30s linear infinite;
}

/* Pause on hover */
.brands-carousel-row:hover .brands-carousel {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-33.333%);
    }

    100% {
        transform: translateX(0);
    }
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    padding: 8px;
    transition: all 0.3s ease;
}

.brand-item img {
    height: 45px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.85);
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* ==================== Responsive - Brands ==================== */
@media (max-width: 992px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-title {
        font-size: 28px;
    }

    .brands-carousel {
        gap: 50px;
    }

    .brand-item img {
        height: 40px;
        max-width: 90px;
    }

    .brands-carousel-row::before,
    .brands-carousel-row::after {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 50px 0;
    }

    .brands-title {
        font-size: 24px;
    }

    .brands-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .brands-carousel {
        gap: 40px;
    }

    .brand-item {
        padding: 10px 15px;
    }

    .brand-item img {
        height: 35px;
        max-width: 80px;
    }

    .brands-carousel-row::before,
    .brands-carousel-row::after {
        width: 60px;
    }

    .brands-carousel-left {
        animation: scrollLeft 25s linear infinite;
    }

    .brands-carousel-right {
        animation: scrollRight 25s linear infinite;
    }
}

/* ==================== Vehicle Type Section ==================== */
.vehicle-type-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.vehicle-type-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.vehicle-type-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vehicle-type-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-type-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 24px 32px;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.vehicle-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.25);
    border-color: #ff6600;
}

.vehicle-card-car,
.vehicle-card-moto {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.vehicle-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: white;
}

.vehicle-card-icon svg {
    width: 36px;
    height: 36px;
}

.vehicle-card-content {
    text-align: left;
    flex: 1;
    z-index: 1;
}

.vehicle-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 2px 0 8px 0;
}

.vehicle-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: #ff6600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 102, 0, 0.15);
    padding: 5px 12px;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.vehicle-type-card:hover .vehicle-card-cta {
    background: #ff6600;
    color: white;
}

.vehicle-card-image {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 140px;
    height: 140px;
    opacity: 0.15;
    pointer-events: none;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Vehicle Type */
@media (max-width: 768px) {
    .vehicle-type-section {
        padding: 35px 0;
    }

    .vehicle-type-title {
        font-size: 22px;
    }

    .vehicle-type-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .vehicle-type-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicle-type-card {
        padding: 20px 24px;
        min-height: 100px;
    }

    .vehicle-card-icon {
        width: 50px;
        height: 50px;
        margin-right: 16px;
    }

    .vehicle-card-icon svg {
        width: 30px;
        height: 30px;
    }

    .vehicle-card-title {
        font-size: 18px;
    }

    .vehicle-card-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .vehicle-type-card {
        flex-direction: column;
        text-align: center;
        padding: 18px 20px;
    }

    .vehicle-card-icon {
        margin-right: 0;
        margin-bottom: 16px;
        width: 45px;
        height: 45px;
        margin-right: 14px;
    }

    .vehicle-card-icon svg {
        width: 26px;
        height: 26px;
    }

    .vehicle-card-content {
        text-align: center;
    }

    .vehicle-card-title {
        font-size: 16px;
    }

    .vehicle-card-image {
        display: none;
    }
}

/* ==================== Free Shipping CTA ==================== */
.free-shipping-cta {
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho sutil */
.free-shipping-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    opacity: 0.95;
    max-width: 600px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: #ffffff;
    color: #ff6600;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    background: #fff5f0;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==================== Responsive - Free Shipping CTA ==================== */
@media (max-width: 992px) {
    .free-shipping-cta {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .free-shipping-cta {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .free-shipping-cta {
        padding: 35px 15px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

/* ==================== Footer ==================== */
.main-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600 0%, #ff8833 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #ff6600;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact svg {
    color: #ff6600;
    flex-shrink: 0;
}

/* Social Media */
.footer-social {
    margin-top: 10px;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
    background: #ff6600;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Newsletter */
.newsletter-column {
    grid-column: span 1;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: #ff6600;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    padding: 14px 18px;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #ff8800 0%, #ff7700 100%);
    transform: scale(1.05);
}

/* Payment Methods */
.payment-methods {
    margin-top: 20px;
}

.payment-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 24px;
    filter: grayscale(50%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== Responsive - Footer ==================== */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .newsletter-column {
        grid-column: span 1;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .main-footer {
        padding: 50px 0 0 0;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 40px;
    }

    .footer-column {
        gap: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-badges {
        justify-content: center;
    }

    .main-footer {
        padding: 40px 0 0 0;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        justify-content: flex-start;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-badges {
        flex-direction: column;
        width: 100%;
    }

    .badge {
        justify-content: center;
    }
}

/* ==================== Responsive - Main Offers ==================== */
@media (max-width: 1200px) {
    .offers-grid {
        gap: 20px;
        padding: 0 50px;
    }

    .offers-grid .product-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .offers-nav-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 992px) {
    .offers-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .offers-grid {
        gap: 16px;
        padding: 0 45px;
    }

    .offers-grid .product-card {
        flex: 0 0 240px;
        min-width: 240px;
    }

    .product-image {
        height: 200px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .main-offers {
        padding: 40px 0;
    }

    .offers-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .offers-grid {
        gap: 12px;
        padding: 0 40px;
    }

    .offers-grid .product-card {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .offers-nav-button {
        width: 40px;
        height: 40px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-image {
        height: 160px;
    }

    .product-image img {
        padding: 12px;
    }

    .product-info {
        padding: 16px;
    }

    .product-title {
        font-size: 13px;
        min-height: 40px;
        max-height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
    }

    .product-price {
        font-size: 20px;
    }

    .product-buy-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .product-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .offers-grid {
        padding: 0 35px;
    }

    .offers-grid .product-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .offers-nav-button {
        width: 36px;
        height: 36px;
    }

    .product-image {
        height: 200px;
    }
}

/* ==================== WhatsApp Floating Button ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #333333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animação de pulso */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Esconde tooltip em mobile */
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}

/* ==================== PÁGINAS INTERNAS - ELEMENTOS COMUNS ==================== */

/* Breadcrumbs */
.breadcrumbs {
    background: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
}

.breadcrumbs .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ff6600;
}

.breadcrumbs .current {
    color: #333;
    font-weight: 600;
}

/* Container padrão */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #ff6600;
    color: #ffffff;
}

.btn-primary:hover {
    background: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
}

.btn-secondary:hover {
    background: #ff6600;
    color: #ffffff;
}

/* ==================== PÁGINA SOBRE NÓS ==================== */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 20px;
    color: #ff6600;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.mvv-card ul {
    list-style: none;
    padding: 0;
}

.mvv-card ul li {
    padding: 8px 0;
    color: #666;
    font-size: 15px;
}

.mvv-card ul li:before {
    content: "✓ ";
    color: #ff6600;
    font-weight: bold;
    margin-right: 8px;
}

/* Differential Section */
.differential-section {
    padding: 80px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.differential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.differential-item {
    text-align: center;
    padding: 30px 20px;
}

.diff-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.differential-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.differential-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    color: #ffffff;
}

.numbers-section .section-title {
    color: #ffffff;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.number-card {
    text-align: center;
}

.number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
}

.number-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==================== RESPONSIVO - PÁGINAS INTERNAS ==================== */

@media (max-width: 992px) {
    .page-title {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-section,
    .mvv-section,
    .differential-section,
    .numbers-section,
    .cta-section {
        padding: 60px 20px;
    }

    .about-text h2,
    .section-title {
        font-size: 28px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .number {
        font-size: 42px;
    }
}

/* ==================== PÁGINA DE CONTATO ==================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* Contact Page Layout */
.contact-page {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-input.error {
    border-color: #e74c3c;
}

.form-error {
    font-size: 13px;
    color: #e74c3c;
    display: none;
}

.form-error.visible {
    display: block;
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff7700 0%, #ff6600 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: #ffffff;
}

.card-icon.phone {
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    color: #ffffff;
}

.card-icon.email {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

.card-icon.location {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #ff7700;
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.hours-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.time {
    font-size: 14px;
    color: #666;
}

/* Social Media Section */
.social-media-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.social-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.social-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* ==================== Responsive - Contact Page ==================== */
@media (max-width: 1200px) {
    .contact-layout {
        gap: 40px;
    }

    .contact-form-section {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .contact-hero {
        padding: 60px 20px;
    }

    .contact-page {
        padding: 60px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .contact-form-section {
        padding: 35px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 15px;
    }

    .contact-page {
        padding: 50px 0;
    }

    .contact-form-section {
        padding: 30px 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
    }

    .map-section {
        margin-top: 60px;
    }

    .map-container iframe {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 10px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 15px;
    }

    .contact-page {
        padding: 40px 0;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-description {
        font-size: 14px;
    }

    .btn-submit {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

    .map-container iframe {
        height: 300px !important;
    }
}

/* ==================== BREADCRUMB (Global) ==================== */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #ff6600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff8800;
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
    user-select: none;
}

.breadcrumb .current {
    color: #1a1a1a;
    font-weight: 600;
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 12px;
    }
}

/* ==================== SHOPPING CART SYSTEM ==================== */

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
    border: 2px solid #1a1a1a;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Cart Icon Animation */
.cart-action {
    position: relative;
    transition: transform 0.3s ease;
}

.cart-action:hover {
    transform: scale(1.1);
}

.cart-action.cart-bounce {
    animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.1);
    }
}

/* Cart Notifications */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    border-left: 4px solid #ff6600;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cart-notification-success {
    border-left-color: #27ae60;
}

.cart-notification-success .notification-icon {
    background: #27ae60;
}

.cart-notification-error {
    border-left-color: #e74c3c;
}

.cart-notification-error .notification-icon {
    background: #e74c3c;
}

.cart-notification-info {
    border-left-color: #3498db;
}

.cart-notification-info .notification-icon {
    background: #3498db;
}

.cart-notification-warning {
    border-left-color: #f39c12;
}

.cart-notification-warning .notification-icon {
    background: #f39c12;
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: #ff6600;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-message {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Cart Notifications */
@media (max-width: 480px) {
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-150px);
    }

    .cart-notification.show {
        transform: translateY(0);
    }
}

/* ==================== Skeleton Loading ==================== */
.skeleton-card {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 8px;
    margin-bottom: 12px;
}

.skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ==================== Footer Styles ==================== */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links li a:hover {
    color: #ff6600;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.footer-contact svg {
    color: #ff6600;
    flex-shrink: 0;
}

.footer-social {
    margin-top: 25px;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #ff6600;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

/* Newsletter Section */
.newsletter-column {
    display: flex;
    flex-direction: column;
}

.newsletter-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}

.newsletter-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.newsletter-whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* Payment Methods */
.payment-methods {
    margin-top: auto;
}

.payment-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px;
    transition: background 0.3s ease;
}

.payment-icon-svg:hover {
    background: rgba(255, 255, 255, 0.2);
}

.payment-icon-svg svg {
    width: 40px;
    height: 26px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #999999;
    font-size: 13px;
}

.footer-badges {
    display: flex;
    gap: 20px;
}

.footer-badges .badge {
    color: #cccccc;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .newsletter-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 40px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .newsletter-column {
        grid-column: span 2;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

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

    .newsletter-column {
        grid-column: span 1;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .payment-icons {
        justify-content: flex-start;
    }

    .footer-badges {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==================== MOBILE MENU SYSTEM ==================== */

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    position: fixed;
    top: 85px;
    /* Position below the header */
    left: 15px;
    z-index: 10001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 22px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when menu is open */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 9999;
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
}

.mobile-drawer.active {
    left: 0;
}

/* Drawer Header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.mobile-drawer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mobile-close-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: #ff6600;
    transform: rotate(90deg);
}

/* User Section */
.mobile-user-section {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-user-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-user-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.mobile-user-btn svg {
    flex-shrink: 0;
}

/* Main Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    padding-left: 28px;
}

.nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Categories Section */
.mobile-categories-section {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mobile-section-title {
    font-size: 12px;
    font-weight: 700;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mobile-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mobile-categories-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mobile-categories-list li a:hover {
    background: #ff6600;
    color: #ffffff;
    transform: scale(1.02);
}

/* Quick Links */
.mobile-quick-links {
    padding: 16px 16px 20px;
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-quick-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 48px;
}

.mobile-quick-link:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
    color: #ff6600;
}

.quick-icon {
    font-size: 16px;
}

/* Drawer Footer */
.mobile-drawer-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff6600;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 16px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    background: rgba(255, 102, 0, 0.2);
    transform: translateX(5px);
}

.mobile-phone svg {
    flex-shrink: 0;
}

.mobile-orders-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-orders-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6600;
}

.mobile-orders-link svg {
    flex-shrink: 0;
}

/* ==================== Mobile Menu Responsive ==================== */

/* Show hamburger button on tablet and below */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
        top: 20px;
    }

    /* Hide nav menu on tablet and smaller */
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        top: 15px;
        left: 10px;
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .hamburger-line {
        width: 20px;
        height: 2.5px;
    }

    /* Adjust mobile drawer width */
    .mobile-drawer {
        width: 280px;
        left: -300px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        top: 12px;
        left: 8px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
        gap: 4px;
    }

    .mobile-drawer {
        width: 85vw;
        max-width: 300px;
    }

    .mobile-drawer-header {
        padding: 16px;
    }

    .mobile-drawer-logo {
        height: 35px;
    }

    .mobile-nav-links a {
        padding: 14px 16px;
        font-size: 14px;
    }

    .mobile-user-btn {
        padding: 12px 14px;
        font-size: 13px;
    }

    .mobile-categories-list li a {
        padding: 6px 12px;
        font-size: 12px;
    }

    .mobile-quick-link {
        padding: 12px 10px;
        font-size: 12px;
    }

    .mobile-phone {
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* ==================== Mobile Header Adjustments ==================== */

/* Adjust action text visibility on mobile */
@media (max-width: 768px) {
    .action-text {
        display: none;
    }

    .header-action.cart .cart-badge {
        top: -4px;
        right: -6px;
    }

    /* Hide some header actions on very small screens */
    .header-action:not(.cart):not([href*="login"]) {
        display: none;
    }

    /* Keep only cart and login visible */
    .header-action.cart,
    .header-action[href*="login"] {
        display: flex;
    }
}

@media (max-width: 480px) {

    /* Ensure header actions are compact */
    .header-actions {
        gap: 8px;
    }

    .header-action svg {
        width: 22px;
        height: 22px;
    }

    .header-action.cart svg {
        width: 24px;
        height: 24px;
    }
}

/* ==================== Body Lock when Menu is Open ==================== */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ==================== Professional CTA Section ==================== */
.professional-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.professional-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600 0%, #ff8800 50%, #ff6600 100%);
}

.professional-cta .cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.professional-cta .cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.professional-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0;
}

.professional-cta .cta-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff7700 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}

.professional-cta .cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.5);
}

.professional-cta .cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.professional-cta .cta-secondary:hover {
    border-color: #ff6600;
    color: #ff6600;
}

@media (max-width: 768px) {
    .professional-cta {
        padding: 60px 20px;
    }

    .professional-cta .cta-title {
        font-size: 28px;
    }

    .professional-cta .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .professional-cta .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

/* ==================== Footer Bottom Badges Improved ==================== */
.footer-bottom .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-bottom .badge svg {
    flex-shrink: 0;
}

.footer-bottom .badge-secure {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.footer-bottom .badge-quality {
    background: rgba(241, 196, 15, 0.15);
    border: 1px solid rgba(241, 196, 15, 0.3);
    color: #f1c40f;
}

.footer-bottom .badge-delivery {
    background: rgba(52, 152, 219, 0.15);
    border: 1px solid rgba(52, 152, 219, 0.3);
    color: #3498db;
}

.footer-bottom .badge:hover {
    transform: translateY(-2px);
}

.copyright .cnpj {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .copyright .cnpj {
        display: inline;
        margin-left: 8px;
    }
}