  body {
    font-family: 'Inter', sans-serif;
  }

  .bg-cover-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .bg-primary {
    background-color: #dc2626;
  }

  .bg-primary-600 {
    background-color: #dc2626;
  }

  .bg-primary-700 {
    background-color: #b91c1c;
  }

  .text-primary-600 {
    color: #dc2626;
  }

  .text-primary-300 {
    color: #fca5a5;
  }

  .text-primary-400 {
    color: #f87171;
  }

  .hover\:text-primary-600:hover {
    color: #dc2626;
  }

  .hover\:text-primary-300:hover {
    color: #fca5a5;
  }

  .hover\:text-primary-400:hover {
    color: #f87171;
  }

  .hover\:bg-primary-700:hover {
    background-color: #b91c1c;
  }

  .border-primary-600 {
    border-color: #dc2626;
  }

  .bg-accent-600 {
    background-color: #2563eb;
  }

  .text-accent-300 {
    color: #93c5fd;
  }

  .hover\:text-accent-300:hover {
    color: #93c5fd;
  }

  .hover\:text-accent-400:hover {
    color: #60a5fa;
  }

  .bg-secondary-600 {
    background-color: #475569;
  }

  .text-secondary-300 {
    color: #cbd5e1;
  }

  .hover\:text-secondary-300:hover {
    color: #cbd5e1;
  }

  .hover\:text-secondary-400:hover {
    color: #94a3b8;
  }

  .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bg-gray-800 {
    background-color: #1f1f1f;
  }

  .dark .dark\:bg-gray-900 {
    background-color: #000;
  }




  .dark .dark\:bg-gray-800 {
    background-color: #1f1f1f;
  }

  .dark .dark\:bg-gray-700 {
    background-color: #333;
  }

  .dark .dark\:text-white {
    color: #ffffff;
  }

  .dark .dark\:text-gray-300 {
    color: #d1d5db;
  }

  .dark .dark\:text-gray-100 {
    color: #f3f4f6;
  }

  .dark .dark\:border-gray-600 {
    border-color: #4b5563;
  }

  .dark .dark\:border-gray-700 {
    border-color: #374151;
  }

  .dark .dark\:placeholder-gray-400::placeholder {
    color: #9ca3af;
  }

  .dark .dark\:hover\:bg-gray-600:hover {
    background-color: #4b5563;
  }

  .dark .dark\:hover\:bg-gray-700:hover {
    background-color: #374151;
  }

  .dark .dark\:hover\:text-primary-400:hover {
    color: #f87171;
  }

  .botao-loja-mobile {
    color: #dc2626;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 11px;
  }

  /* Search Overlay */
  .search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .search-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Menu Mobile Refinado */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    z-index: 9998;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }


  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-overlay {
    display: none;
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 8000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-menu-overlay.active {
    display: block !important;
  }


  /* Menu Desktop Sofisticado */
  .desktop-nav-item {
    position: relative;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #374151;
    background-color: #dc2626;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  }

  .desktop-nav-item:hover {
    color: #fff;
    /*background: rgba(220, 38, 38, 0.05);*/

    background-color: #000;

    transform: translateY(-1px);
  }

  .desktop-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #f87171);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .desktop-nav-item:hover::after {
    width: 80%;
  }

  .dark .desktop-nav-item {
    color: #fff;
  }

  .dark .desktop-nav-item:hover {
    color: #fff;
    background: rgba(248, 113, 113, 0.1);
  }

  /* Header Moderno */
  .header-glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
  }

  .dark .header-glass {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(248, 113, 113, 1);
  }

  /* Animações */
  .fade-in {
    animation: fadeIn 0.6s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .slide-up {
    animation: slideUp 0.8s ease-out;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hover effects modernos */
  .hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  /* Gradientes modernos */
  .gradient-text {
    background: linear-gradient(135deg, #dc2626, #f87171);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  /* Carrossel de Produtos */
  .product-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-carousel::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    margin-right: 20px;
  }

  /* Botão Fixo Loja */
  .fixed-shop-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
  }

  .fixed-shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
  }

  /* Responsividade do carrossel */
  @media (min-width: 640px) {
    .product-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .product-carousel {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

   .breadcrumb {
        display: block;
        align-items: center;
        gap: 0.5rem;
        margin-bottom:1rem;
        font-size: 0.875rem;
        color: #6b7280;
    }

    .dark .breadcrumb {
        color: #9ca3af;
    }

    .breadcrumb a {
        color: #dc2626;
        text-decoration: none;
    }

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

    .dark .breadcrumb a {
        color: #f87171;
    }


     body {
        font-family: 'Inter', sans-serif;
    }

    .bg-cover-center {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .bg-primary {
        background-color: #dc2626;
    }

    .bg-primary-700 {
        background-color: #b91c1c;
    }


    .bg-primary-600 {
      background-color: #dc2626;
    }


    .text-primary-600 {
        color: #dc2626;
    }

    .text-primary-300 {
        color: #fca5a5;
    }

    .text-primary-400 {
        color: #f87171;
    }

    .hover\:text-primary-600:hover {
        color: #dc2626;
    }

    .hover\:text-primary-300:hover {
        color: #fca5a5;
    }

    .hover\:text-primary-400:hover {
        color: #f87171;
    }

    .hover\:bg-primary-700:hover {
        background-color: #b91c1c;
    }

    .border-primary-600 {
        border-color: #dc2626;
    }

    .bg-accent-600 {
        background-color: #2563eb;
    }

    .text-accent-300 {
        color: #93c5fd;
    }

    .hover\:text-accent-300:hover {
        color: #93c5fd;
    }

    .hover\:text-accent-400:hover {
        color: #60a5fa;
    }

    .bg-secondary-600 {
        background-color: #475569;
    }

    .text-secondary-300 {
        color: #cbd5e1;
    }

    .hover\:text-secondary-300:hover {
        color: #cbd5e1;
    }

    .hover\:text-secondary-400:hover {
        color: #94a3b8;
    }

    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .line-clamp-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .bg-gray-800 {
        background-color: #1f1f1f;
    }

    .dark .dark\:bg-gray-900 {
        background-color: #000;
    }

    .dark .dark\:bg-gray-800 {
        background-color: #1f1f1f;
    }

    .dark .dark\:bg-gray-700 {
        background-color: #333;
    }

    .dark .dark\:text-white {
        color: #ffffff;
    }

    .dark .dark\:text-gray-300 {
        color: #d1d5db;
    }

    .dark .dark\:text-gray-100 {
        color: #f3f4f6;
    }

    .dark .dark\:border-gray-600 {
        border-color: #4b5563;
    }

    .dark .dark\:border-gray-700 {
        border-color: #374151;
    }

    .dark .dark\:placeholder-gray-400::placeholder {
        color: #9ca3af;
    }

    .dark .dark\:hover\:bg-gray-600:hover {
        background-color: #4b5563;
    }

    .dark .dark\:hover\:bg-gray-700:hover {
        background-color: #374151;
    }

    .dark .dark\:hover\:text-primary-400:hover {
        color: #f87171;
    }

    .botao-loja-mobile {
        color: #dc2626;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 11px;
    }

    /* Search Overlay */
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Menu Mobile Refinado */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        z-index: 9998;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-overlay {
        display: none;
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        left: 0;
        bottom: 0;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.3);
        z-index: 8000;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .mobile-menu-overlay.active {
        display: block !important;
    }

    /* Menu Desktop Sofisticado */
    .desktop-nav-item {
        position: relative;
        padding: 12px 20px;
        font-weight: 600;
        font-size: 15px;
        color: #374151;
        background-color: #dc2626;
        color: #fff;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .desktop-nav-item:hover {
        color: #fff;
        background-color: #000;
        transform: translateY(-1px);
    }

    .desktop-nav-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #dc2626, #f87171);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .desktop-nav-item:hover::after {
        width: 80%;
    }

    .dark .desktop-nav-item {
        color: #fff;
    }

    .dark .desktop-nav-item:hover {
        color: #fff;
        background: rgba(248, 113, 113, 0.1);
    }

    /* Header Moderno */
    .header-glass {
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    }

    .dark .header-glass {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(248, 113, 113, 1);
    }

    /* Animações */
    .fade-in {
        animation: fadeIn 0.6s ease-in-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .slide-up {
        animation: slideUp 0.8s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hover effects modernos */
    .hover-lift {
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hover-lift:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* Gradientes modernos */
    .gradient-text {
        background: linear-gradient(135deg, #dc2626, #f87171);
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    /* Carrossel de Produtos */
    .product-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .product-carousel::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: 20px;
    }

    /* Botão Fixo Loja */
    .fixed-shop-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border-radius: 50px;
        padding: 12px 20px;
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        transition: all 0.3s ease;
    }

    .fixed-shop-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    }

    /* Responsividade do carrossel */
    @media (min-width: 640px) {
        .product-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .product-carousel {
            display: none;
        }
    }

    @media (min-width: 1024px) {
        .product-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .post-content p {
        margin-bottom: 1rem;
        line-height: 1.75;
        color: #4b5563;
    }

    .dark .post-content p {
        color: #d1d5db;
    }

    .post-content ul {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .post-content li {
        margin-bottom: 0.5rem;
        color: #4b5563;
    }

    .dark .post-content li {
        color: #d1d5db;
    }

    .post-content strong {
        font-weight: 600;
        color: #dc2626;
    }

    .dark .post-content strong {
        color: #f87171;
    }

    /* Breadcrumb */
    .breadcrumb {
        display: block;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        font-size: 0.875rem;
        color: #6b7280;
    }

    .dark .breadcrumb {
        color: #9ca3af;
    }

    .breadcrumb a {
        color: #dc2626;
        text-decoration: none;
    }

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

    .dark .breadcrumb a {
        color: #f87171;
    }

    /* Botão de compartilhamento */
    .share-buttons {
        display: flex;
        gap: 0.75rem;
        margin: 2rem 0;
    }

    .share-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.375rem;
        color: white;
        transition: all 0.3s ease;
    }

    .share-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .share-facebook {
        background-color: #1877f2;
    }

    .share-twitter {
        background-color: #1da1f2;
    }

    .share-linkedin {
        background-color: #bd081b;
    }

    .share-whatsapp {
        background-color: #25d366;
    }
    .product-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}