/* ===== CSS PRINCIPAL - ESQUINA DA PEÇA ===== */

/* ===== VARIÁVEIS ===== */
:root {
    --primary: #C9A227;
    --primary-dark: #A88920;
    --secondary: #1A1A1A;
    --accent: #E8D5A3;
    --background: #FFFFFF;
    --surface: #F5F5F5;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #FFFFFF;
    --border: #E0E0E0;
    --success: #28A745;
    --error: #DC3545;
    --warning: #FFC107;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

/* ===== HEADER ===== */
.header {
    background: var(--secondary);
    color: var(--text-light);
    position: relative;
    z-index: 1000;
}

.header-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-text span {
    color: var(--primary);
}

.header-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item .icon {
    font-size: 1.25rem;
}

.contact-item a {
    color: var(--text-light);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

/* ===== MENU PRINCIPAL ===== */
.main-nav {
    background: #2D2D2D;
    position: relative;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.desktop-menu {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.desktop-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.desktop-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.desktop-menu > li > a:hover::after,
.desktop-menu > li > a.active::after {
    width: 100%;
}

.desktop-menu > li > a:hover,
.desktop-menu > li > a.active {
    color: var(--primary);
}

.desktop-menu .has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.desktop-menu .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* ===== BOTÃO MENU MOBILE ===== */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    position: relative;
    margin: 0.5rem auto;
}

.mobile-menu-btn .hamburger,
.mobile-menu-btn .hamburger::before,
.mobile-menu-btn .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-btn .hamburger {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-menu-btn .hamburger::before {
    top: -8px;
}

.mobile-menu-btn .hamburger::after {
    top: 8px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== MENU MOBILE ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--secondary);
    z-index: 2000;
    transform: translateX(-100%);
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header h3 {
    color: var(--text-light);
    font-size: 1.25rem;
}

.mobile-menu-header h3 span {
    color: var(--primary);
}

.mobile-menu-list {
    padding: 1rem 0;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.mobile-menu-list > li > a.active {
    border-left-color: var(--primary);
    background: rgba(201, 162, 39, 0.1);
    color: var(--primary);
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-submenu-toggle .arrow {
    font-size: 0.75rem;
    transition: var(--transition);
}

.mobile-submenu-toggle.active .arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: rgba(0,0,0,0.2);
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 0.75rem 2.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-submenu li a:hover {
    color: var(--primary);
    background: rgba(201, 162, 39, 0.1);
}

/* ===== SEARCH BAR ===== */
.search-container {
    background: var(--surface);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.search-bar {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 0.5rem;
}

.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 80px;
    background: var(--background);
    border: 2px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.autocomplete-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: var(--surface);
}

.autocomplete-item span:first-child {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.autocomplete-item span:last-child {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

.search-bar input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.search-bar button:hover {
    background: var(--primary-dark);
}

/* ===== BANNER ===== */
.banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #2D2D2D 100%);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.banner-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.banner h1 span {
    color: var(--primary);
}

.banner p {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.banner-subtitle {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== DESTAQUES ===== */
.highlights {
    padding: 4rem 2rem;
    background: var(--surface);
}

.highlights-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== CATEGORIAS ===== */
.categories {
    padding: 4rem 2rem;
}

.categories h2,
.products-section h2,
.cta-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--secondary);
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.category-card h3 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== PRODUTOS ===== */
.products-section {
    padding: 4rem 2rem;
    background: var(--surface);
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--surface);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--error);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-model {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-installment {
    font-size: 0.85rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.btn-buy {
    display: block;
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: var(--secondary);
    text-align: center;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--primary-dark);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--secondary);
    color: var(--text-light);
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.cta-section h2 span {
    color: var(--primary);
    display: inline;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        line-height: 1.4;
    }
    
    .cta-section h2 span {
        display: inline;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0D0D0D;
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* ===== FILTROS DE PRODUTOS ===== */
.products-header {
    background: var(--surface);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
}

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

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--secondary);
}

/* ===== PÁGINA DE CONTATO ===== */
.contact-section {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details .icon {
    font-size: 1.5rem;
}

.contact-details strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.contact-form {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .btn {
    width: 100%;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--surface);
}

.faq-question .icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== POLÍTICAS ===== */
.policies-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.policies-section h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.policies-section h2 {
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.policies-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }
    
    .header-contact {
        justify-content: center;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar button {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Correção para imagens dos produtos no mobile */
    .product-image {
        aspect-ratio: 4/3;
        min-height: 200px;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 3rem 1rem;
    }
    
    .highlights,
    .categories,
    .products-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Correção para imagens dos produtos no mobile pequeno */
    .product-image {
        aspect-ratio: 16/10;
        min-height: 180px;
    }
    
    .product-image img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}