/*
 * ============================================================================
 * TEM COMÉRCIO 2.0 - NEWSTYLE FOR NEWINDEX
 * Design Moderno para Estrutura HTML5 Semântica
 * Versão: 2.0.1 | 2026 - CLEAN VERSION
 * ============================================================================
 */

/* ==========================================================================
   FONTS & ICONS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: "untitled-font-1";
    src: url("../font/untitled-font-1.eot");
    src: url("../font/untitled-font-1.eot?#iefix") format("embedded-opentype"),
        url("../font/untitled-font-1.woff") format("woff"),
        url("../font/untitled-font-1.ttf") format("truetype"),
        url("../font/untitled-font-1.svg#untitled-font-1") format("svg");
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "untitled-font-1" !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.icon-home:before {
    content: "\62";
}

.icon-shop:before {
    content: "\63";
}

.icon-user:before {
    content: "\66";
}

.icon-bag:before {
    content: "\70";
}

.icon-search:before {
    content: "\68";
}

.icon-phone-square:before {
    content: "\67";
}

.icon-torso-business:before {
    content: "\61";
}

.icon-cancel-circled:before {
    content: "\74";
}

.icon-star:before {
    content: "\e00d";
}

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
    --primary: #6fbf17;
    --primary-dark: #44790c;
    --primary-light: #72eb62;
    --accent: #00BCD4;
    --dark: #1A1A2E;
    --darker: #0F0F1E;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-500: #A0AEC0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-100);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

.top-bar {
    display: none;
}

.main-header {
    padding: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}

.site-header.scrolled .logo {
    color: var(--gray-900);
}

.logo::before {
    content: '🏪';
    font-size: 2rem;
}

.mobile-menu-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .hamburger {
    background: var(--gray-700);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background: var(--gray-700);
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    bottom: -0.5rem;
}

.main-nav {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: #FFFFFF;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.site-header.scrolled .nav-link {
    color: var(--gray-700);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.site-header.scrolled .nav-link:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.nav-link i {
    font-size: 1.1em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: #2563EB;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-join::before {
    content: '->';
    font-size: 1.1em;
}

.btn-join:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: #76C71C;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(118, 199, 28, 0.3);
}

.btn-add::before {
    content: '+';
    font-size: 1.3em;
    font-weight: 700;
}

.btn-add:hover {
    background: #65B015;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(118, 199, 28, 0.4);
}

.cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.site-header.scrolled .cart-button {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.site-header.scrolled .cart-button:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    color: var(--primary);
}

.cart-button i {
    font-size: 1.25rem;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 1.125rem;
    height: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #76C71C;
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    padding: 0 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {

    .btn-join,
    .btn-add {
        padding: 0.5rem 1.25rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 5rem 2rem;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        color: var(--gray-900);
    }

    .header-actions {
        gap: 0.5rem;
    }

    .btn-join span,
    .btn-add span {
        display: none;
    }

    .btn-join,
    .btn-add {
        width: 2.75rem;
        height: 2.75rem;
        padding: 0;
        justify-content: center;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 20px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.listar-description {
    text-align: center;
    margin: 1.5rem auto 0;
    max-width: 1024px;
    padding-bottom: 2rem;
}

.listar-description p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.6;
}

.search-box {
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.search-box label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.search-input-group {
    display: flex;
    gap: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(111, 191, 23, 0.1);
}

.search-input-group input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    border: none;
    outline: none;
    background: transparent;
}

.search-input-group input::placeholder {
    color: #9ca3af;
}

.search-input-group button {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(111, 191, 23, 0.3);
}

.search-box p {
    margin-top: 1rem;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.search-box p strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .search-box {
        padding: 2rem;
    }

    .search-input-group {
        flex-direction: column;
    }

    .search-input-group button {
        width: 100%;
    }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #F74809 0%, #E94006 25%, #FF5722 50%, #DC3D0C 75%, #FF6B35 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 8rem 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.03) 70px);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.cta-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -0.04em;
    line-height: 0.95;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    color: #FFFFFF;
}

.cta-description {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 3.5rem;
    line-height: 1.9;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.cta-action-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

.cta-action-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-action-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 5rem 0;
    }

    .cta-action-button {
        padding: 1.25rem 3rem;
    }
}

/* ==========================================================================
   COMPANIES SECTION - SWIPER
   ========================================================================== */
.swiperSection {
    padding: 3rem 1.5rem !important;
}

.companies-section {
    background: #ffffff;
    padding: 5rem 0;
}

.companiesSwiper {
    padding: 1rem 0 3rem;
}

.companiesSwiper .swiper-slide {
    height: auto;
}

.company-card-new {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.company-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.companiesSwiper .swiper-button-next,
.companiesSwiper .swiper-button-prev {
    display: none;
}

.company-link {
    display: block;
    color: inherit;
}

.company-image-new {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.company-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.company-card-new:hover .company-image-new img {
    transform: scale(1.1);
}

.company-content-new {
    padding: 1.2rem;
}

.company-name-new {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.company-description {
    font-size: 0.875rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.company-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0.9rem;
}

.company-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stars {
    color: #FFA500;
    font-size: 0.875rem;
}

.stars i {
    margin-right: 2px;
}

.company-rating em {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: normal;
}

.company-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(111, 191, 23, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary);
}

.company-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .company-card-new {
        min-width: 300px;
        max-width: 300px;
    }
}

/* ==========================================================================
   SWIPER PAGINATION - CUSTOM BULLETS
   ========================================================================== */
.swiper-pagination {
    position: relative !important;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--gray-300);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.swiper-pagination-bullet:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

/* Dynamic Bullets */
.swiper-pagination-bullet-active-main {
    background: var(--primary);
}

.swiper-pagination-bullet-active-prev,
.swiper-pagination-bullet-active-next {
    background: var(--primary-light);
}

/* ==========================================================================
   BLOG SECTION
   ========================================================================== */
.blog-section {
    background: #fff;
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-link {
    display: block;
    color: inherit;
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #76C71C;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 4.2em;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-date,
.blog-comments {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    z-index: 10;
}

.novidade {
    right: unset;
    background: linear-gradient(135deg, #10a0b9 0%, #1888d3 100%);
    left: 1rem;
}

.oferta {
    top: unset;
    bottom: 11.2rem;
    background: linear-gradient(135deg, #fd1515 0%, #a80404 100%);
}

.product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem 0.8rem 0;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.5rem 0.8rem 1.2rem;
}

.old-price {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: line-through;
    -webkit-text-fill-color: var(--gray-600);
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.product-unavailable {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-pricing {
        font-size: 1.5rem;
    }

    .old-price {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   FEATURED PRODUCTS CAROUSEL - SWIPER
   ========================================================================== */
.featured-section {
    background: linear-gradient(135deg, #f7f7f7 0%, #f5f7f8 100%);
}

.featuredSwiper {
    padding: 1rem 0 3rem;
}

.featuredSwiper .swiper-slide {
    height: auto;
}

.featuredSwiper .swiper-button-next,
.featuredSwiper .swiper-button-prev {
    display: none
}

.product-card-featured {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.product-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-featured .product-image {
    overflow: hidden;
    position: relative;
}

.product-card-featured .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card-featured:hover .product-image img {
    transform: scale(1.1);
}

.product-card-featured .product-info {
    padding: 1.5rem;
}

.product-card-featured h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.product-card-featured p {
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.product-card-featured .product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pagination {
    padding-top: 50px;
}

.pagination li {
    color: #333;
    display: inline-block;
    margin: .2em .1em;
    border: 1px solid #e0dede;
    text-transform: capitalize;
}

.pagination li:hover {
    background: #4CAF50;
}

.pagination li a {
    padding: 5px 15px;
    display: block;
    text-transform: uppercase;
    line-height: 25px;
    transition: background-color .3s;
    color: #333;
    font-size: 0.8em;
}

.pagination li a:hover {
    color: #fff;
}

.pagination li a.active {
    background-color: #4CAF50;
    color: #fff;
    border: 1px solid #4CAF50;
}

.center {
    text-align: center;
}

.product-info h3 {
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    text-overflow: ellipsis;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 5rem;
    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8;
}