/* ========================================
   DINIZ PEÇAS E-COMMERCE - ESTILOS
   ======================================== */

/* Variáveis de Cores */
:root {
    --primary-red: #fe0000;
    --secondary-yellow: #ffcc01;
    --secondary-black: #272727;
    --primary-white: #f9fcfd;
    --text-gray: #666666;
    --border-gray: #EEEEEE;
    --dark-bg: #1a1a1a;
    --light-bg: #f9fcfd;
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: var(--light-bg);
    line-height: 1.6;
    padding-top: 126px;
}

html, body {
    height: 100%;
}

/* Container com padding */
.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    body {
        padding-top: 160px;
    }

    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
    background-color: var(--secondary-black);
    color: var(--primary-white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 3px solid var(--primary-red);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-link {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--primary-red);
}

.top-bar-text {
    color: var(--primary-white);
    font-weight: 600;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background-color: var(--primary-white);
    border-bottom: 3px solid var(--secondary-yellow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 46px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: var(--secondary-black);
    font-size: 1.2rem;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.logo span {
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 800;
}

.search-box {
    display: flex;
    gap: 5px;
}

.search-box input {
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    padding: 12px 15px;
    flex: 1;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.search-box input::placeholder {
    color: #999;
}

.btn-search {
    background: linear-gradient(
        to bottom right,
        var(--primary-red) 0%,
        rgba(255, 38, 64, 0) 30%
    );
    background-color: rgba(255, 38, 64, 0.9);
    border: none;
    color: var(--primary-white);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: rgba(255, 38, 64, 1);
    box-shadow: 0 0 10px rgba(255, 38, 64, 0.5);
    transform: scale(1.05);
}

/* Nova Barra de Pesquisa Moderna */
.search-box-modern {
    position: relative;
    width: 100%;
}

.search-input-modern {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-input-modern:focus {
    border-color: var(--primary-red);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 105%;
}

.search-input-modern::placeholder {
    color: #9ca3af;
}

.search-icon-modern {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    color: #6b7280;
    pointer-events: none;
    z-index: 1;
}

/* Dropdown de Sugestões */
.search-suggestions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #fff5f5;
}

.search-suggestion-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 12px;
    border: 1px solid #eee;
}

.search-suggestion-info {
    flex: 1;
}

.search-suggestion-name {
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 3px;
    font-size: 14px;
}

.search-suggestion-price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 13px;
}

.search-suggestion-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    margin-top: 2px;
}

.search-suggestions-header {
    padding: 10px 15px;
    background: #f9f9f9;
    font-size: 12px;
    color: #666;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    border-radius: 10px 10px 0 0;
}

.search-no-results {
    padding: 30px 15px;
    text-align: center;
    color: #999;
}

.search-no-results i {
    font-size: 40px;
    color: #ddd;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .search-input-modern:focus {
        width: 100%;
    }
    
    .search-suggestions {
        max-height: 300px;
    }
}

.header-link {
    color: var(--secondary-black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.header-link:hover {
    color: var(--primary-red);
}

/* ========================================
   NAVIGATION MENU
   ======================================== */
.ecommerce-nav {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc1e33 100%) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    position: sticky;
    top: 126px;
    z-index: 998;
}

.ecommerce-nav .navbar-nav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 600;
    margin: 0 15px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.ecommerce-nav .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ecommerce-nav .navbar-nav .nav-link i {
    margin-right: 8px;
}

/* ========================================
   CAROUSEL BANNER
   ======================================== */
.carousel-section {
    margin: 2rem 0;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 0 1rem;
    }
}

.carousel-inner {
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide {
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #3a3a3a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.banner-slide.promo-slide::before {
    background: linear-gradient(
        to bottom,
        rgba(254, 0, 0, 0.3) 0%,
        rgba(39, 39, 39, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.banner-slide.promo-slide {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc1e33 100%);
}

/* Video banner styles */
.banner-slide-video {
    background: none;
}

.banner-slide-video::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.banner-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 2rem;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-shop {
    min-width: 140px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background-color: var(--primary-red);
    border-radius: 30px;
    color: var(--primary-white);
    font-weight: 700;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding-left: 12px;
    padding-right: 20px;
    transition-duration: .5s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-shop .svgIcon {
    height: 22px;
    transition-duration: 1.5s;
    fill: var(--primary-white);
}

.btn-shop:hover {
    background-color: var(--secondary-yellow);
    transition-duration: .5s;
    transform: translateY(-2px);
    box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.3);
    color: var(--secondary-black);
}

.btn-shop:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.btn-shop:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 38, 64, 0.5);
    border: 2px solid var(--primary-white);
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: var(--primary-red);
    transform: scale(1.3);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section {
    position: relative;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    margin: 2rem 0;
    padding: 3rem 0 !important;
    overflow: hidden;
}

.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at 20% 30%,
        rgba(254, 0, 0, 0.6) 0%,
        rgba(254, 0, 0, 0) 60%
      ),
      radial-gradient(
        ellipse at 80% 50%,
        rgba(255, 204, 1, 0.5) 0%,
        rgba(255, 204, 1, 0) 70%
      ),
      radial-gradient(
        ellipse at 50% 80%,
        rgba(254, 0, 0, 0.4) 0%,
        rgba(254, 0, 0, 0) 65%
      ),
      linear-gradient(135deg, #1a1a1a 0%, #272727 100%);
    background-blend-mode: overlay, screen, hard-light;
    z-index: 0;
}

.benefits-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 40px
      ),
      repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 60px
      );
    opacity: 0.5;
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

/* Animações removidas para otimização de performance */
/* @keyframes aurora-drift - Causava travamento em telas grandes */
/* @keyframes grid-shift - Causava travamento em telas grandes */

.col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    display: flex;
}

@media (max-width: 1200px) {
    .col-md-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   CLEAN BENEFIT CARDS - Estilo Minimalista
   ======================================== */

.benefit-card-clean {
    width: 100%;
    height: 100%;
    margin-bottom: 1.5rem;
}

.benefit-card-clean__content {
    background-color: white;
    border-radius: 30px;
    padding: 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.benefit-card-clean__content:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.benefit-card-clean__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-card-clean__icon--red {
    background-color: rgba(254, 0, 0, 0.1);
    color: var(--primary-red);
}

.benefit-card-clean__icon--yellow {
    background-color: rgba(255, 204, 1, 0.15);
    color: var(--secondary-yellow);
}

.benefit-card-clean__content:hover .benefit-card-clean__icon {
    transform: scale(1.1);
}

.benefit-card-clean__text {
    flex: 1;
    width: 100%;
    margin-bottom: 1rem;
}

.benefit-card-clean__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-black);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.benefit-card-clean__description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.benefit-card-clean__button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.benefit-card-clean__button--red {
    background-color: #e8e8e8;
    color: var(--secondary-black);
}

.benefit-card-clean__button--yellow {
    background-color: #e8e8e8;
    color: var(--secondary-black);
}

.benefit-card-clean__button:hover {
    transform: scale(1.1);
}

.benefit-card-clean__button--red:hover {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 12px rgba(254, 0, 0, 0.3);
}

.benefit-card-clean__button--yellow:hover {
    background-color: var(--secondary-yellow);
    color: var(--secondary-black);
    box-shadow: 0 4px 12px rgba(255, 204, 1, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .benefit-card-clean__content {
        padding: 1.25rem;
        min-height: 240px;
    }
    
    .benefit-card-clean__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .benefit-card-clean__title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .benefit-card-clean__description {
        font-size: 0.85rem;
    }
    
    .benefit-card-clean__button {
        width: 40px;
        height: 40px;
        bottom: 1.25rem;
        left: 1.25rem;
    }
}

/* ========================================
   OLD BENEFIT CARDS (mantido para compatibilidade)
   ======================================== */

/* Premium Benefit Cards Style - Inspirado em design moderno */
.benefit-card-premium {
    max-width: 400px;
    border: 0;
    width: 100%;
    height: 100%;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.benefit-card-premium__container {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(71deg, #080509, #1a171c, #080509);
    background-clip: padding-box;
    border-radius: 45px;
    padding: 40px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
}

.benefit-card-premium__container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(254, 0, 0, 0.3);
}

.benefit-card-premium__container svg {
    margin-bottom: 32px;
}

.bg-red-box {
    position: relative;
}

.bg-red-box::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
    background: linear-gradient(71deg, #110e0e, #fe0000, #110e0e);
}

.bg-yellow-box {
    position: relative;
}

.bg-yellow-box::after {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    z-index: -1;
    border-radius: 45px;
    background: linear-gradient(71deg, #110e0e, #ffcc01, #110e0e);
}

.benefit-card-premium__title {
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 36px;
    font-style: normal;
    font-size: 24px;
    padding-bottom: 12px;
    margin: 0;
}

.benefit-card-premium__description {
    font-weight: 500;
    line-height: 28px;
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 15px;
    max-width: 470px;
    margin: 0;
}

/* Responsividade para cards premium */
@media (max-width: 768px) {
    .benefit-card-premium__container {
        padding: 30px;
        border-radius: 35px;
    }
    
    .bg-red-box::after,
    .bg-yellow-box::after {
        border-radius: 35px;
    }
    
    .benefit-card-premium__title {
        font-size: 20px;
        line-height: 30px;
    }
    
    .benefit-card-premium__description {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ========================================
   OLD BENEFIT CARDS (mantido para compatibilidade)
   ======================================== */

/* New Benefit Cards Style */
.benefit-card-new {
    margin: auto;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 1rem;
    padding: 0.5rem;
    color: #141417;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(254, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 1);
}

.benefit-card-new__hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-yellow) 100%);
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1.5rem;
    font-size: 0.875rem;
    color: white;
    position: relative;
}

.benefit-card-new__hero-header {
    margin-top: 1rem;
}

.benefit-card-new__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.benefit-card-new__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.benefit-card-new__icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.benefit-card-new__footer {
    padding: 1rem 1.5rem;
}

.benefit-card-new__description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 500;
}

/* Old benefit card - keep for backwards compatibility */
.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: var(--primary-white);
    border: 2px solid var(--border-gray);
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 38, 64, 0.15);
    border-color: var(--primary-red);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.benefit-card h5 {
    font-weight: 700;
    color: var(--secondary-black);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    background-color: var(--primary-white);
    padding: 3rem 0 !important;
}

.products-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-black);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #cc1e33 100%);
    border-radius: 2px;
}

.product-card {
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--primary-white);
    height: 100%;
    margin-bottom: 1.5rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 38, 64, 0.2);
    border-color: var(--primary-red);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc1e33 100%);
    color: var(--primary-white);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: var(--secondary-black);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-badge i {
    font-size: 0.8rem;
}

.product-info {
    padding: 20px;
}

.product-info h6 {
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 2.8em;
}

.product-brand {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-yellow));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ========================================
   PREÇOS DOS PRODUTOS EM DESTAQUE
   ======================================== */
.product-price {
    margin: 12px 0 16px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price .original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-price .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1;
}

.product-price .installments {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.btn-shop-product {
    min-width: 110px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: var(--primary-red);
    border-radius: 30px;
    color: var(--primary-white);
    font-weight: 600;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
    padding-left: 10px;
    padding-right: 15px;
    transition-duration: .5s;
}

.btn-shop-product .svgIcon {
    height: 20px;
    transition-duration: 1.5s;
    fill: var(--primary-white);
}

.btn-shop-product:hover {
    background-color: var(--secondary-yellow);
    transition-duration: .5s;
    transform: translateY(-2px);
    color: var(--secondary-black);
}

.btn-shop-product:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.btn-shop-product:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

/* ========================================
   CARROSSEL DE IMAGENS DO PRODUTO
   ======================================== */
.product-image-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f5f5f5;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.product-image-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(254, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.product-image-carousel .discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

/* ========================================
   PROMOTIONAL BANNERS
   ======================================== */
.promo-banners {
    background-color: var(--primary-white);
    padding: 2rem 0 !important;
}

.promo-banners .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.promo-banner {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.banner-1 {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc1e33 100%);
}

.banner-2 {
    background: linear-gradient(135deg, var(--secondary-black) 0%, #3a3a3a 100%);
}

.banner-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
    color: var(--primary-white);
    z-index: 2;
}

.banner-icon {
    font-size: 3.5rem;
    opacity: 0.9;
}

.banner-overlay h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.banner-overlay h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .promo-banner {
        height: 150px;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-overlay {
        gap: 1rem;
    }
    
    .banner-overlay h3 {
        font-size: 0.8rem;
    }
    
    .banner-overlay h2 {
        font-size: 1.3rem;
    }
}

/* ========================================
   ORDER FORM SECTION
   ======================================== */
.order-form-section {
    background-color: var(--light-bg);
    padding: 4rem 0 !important;
}

.form-box {
    max-width: 100%;
    background: #ffffff;
    overflow: hidden;
    border-radius: 16px;
    color: #010101;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 24px 24px;
    gap: 16px;
    text-align: center;
}

.form .title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--secondary-black);
}

.form .subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

.form-container {
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
    margin: 1rem 0 .5rem;
    width: 100%;
    border: 2px solid #eee;
}

.form-container .input {
    background: none;
    border: 0;
    outline: 0;
    height: 50px;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    padding: 12px 20px;
    transition: border-color 0.3s ease;
}

.form-container .input:last-child {
    border-bottom: none;
}

.form-container .input:focus {
    border-bottom-color: var(--primary-red);
}

.form-container .textarea-input {
    height: auto;
    resize: vertical;
    min-height: 80px;
    font-family: 'Outfit', sans-serif;
}

.form-section {
    padding: 16px;
    font-size: .9rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    box-shadow: rgb(0 0 0 / 8%) 0 -1px;
}

.form-section a {
    font-weight: bold;
    color: var(--primary-red);
    transition: color .3s ease;
    text-decoration: none;
}

.form-section a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.form button {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0000 100%);
    color: #fff;
    border: 0;
    border-radius: 24px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.3);
}

.form button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 0, 0, 0.4);
}

.form button:active {
    transform: translateY(0);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 4rem 0 !important;
}

.about-section .container {
    max-width: 1200px;
}

.about-section h2 {
    color: var(--secondary-black);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-section .lead {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 4rem 0 !important;
    background-color: var(--light-bg);
}

.faq-section h2 {
    color: var(--secondary-black);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.custom-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.custom-accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.custom-accordion-item:hover {
    box-shadow: 0 4px 20px rgba(254, 0, 0, 0.12);
    transform: translateY(-2px);
}

.custom-accordion input[type="radio"] {
    display: none;
}

.custom-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    cursor: pointer;
    font-weight: 600;
    text-align: left;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    gap: 1rem;
}

.custom-accordion-header:hover {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    border-left-color: var(--primary-red);
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0000 100%);
    color: white;
    border-left-color: var(--secondary-yellow);
    box-shadow: 0 4px 15px rgba(254, 0, 0, 0.25);
}

.faq-number-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #cc0000 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(254, 0, 0, 0.2);
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header .faq-number-badge {
    background: white;
    color: var(--primary-red);
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.custom-accordion-title {
    flex: 1;
    font-size: 1.1rem;
    color: var(--secondary-black);
    transition: color 0.3s ease;
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header .custom-accordion-title {
    color: white;
}

.custom-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(254, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
}

.custom-accordion-icon svg {
    transition: all 0.3s ease;
    color: var(--primary-red);
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header .custom-accordion-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header .custom-accordion-icon svg {
    color: white;
}

.custom-accordion-content {
    max-height: 0;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-top: 1px solid transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.custom-accordion input[type="radio"]:checked + .custom-accordion-header + .custom-accordion-content {
    max-height: 200px;
    padding: 1.5rem;
    border-top-color: rgba(254, 0, 0, 0.1);
    opacity: 1;
}

.custom-accordion-content p {
    margin: 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .custom-accordion-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .custom-accordion-title {
        font-size: 1rem;
        flex: 1 1 calc(100% - 90px);
    }
    
    .faq-number-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--dark-bg) !important;
    border-top: 4px solid var(--primary-red);
    margin-top: 3rem;
    padding: 3rem 0 !important;
}

.footer .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.footer h5 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-red) !important;
}

.social-links a {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    color: var(--primary-red) !important;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .top-bar .row {
        justify-content: center;
    }

    .top-bar .col-md-4:first-child {
        display: block !important;
        text-align: center !important;
    }

    .top-bar .col-md-4:nth-child(2),
    .top-bar .col-md-4:last-child {
        display: none !important;
    }

    .top-bar-link, .top-bar-text {
        font-size: 0.8rem;
    }

    .header {
        padding: 1rem 0 1rem 0;
    }

    .header .row {
        flex-direction: column;
        gap: 15px;
    }

    .header .col-md-3,
    .header .col-md-5,
    .header .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .col-md-3 {
        text-align: center !important;
    }

    .header .col-md-4 {
        text-align: center !important;
    }

    .logo {
        justify-content: center;
        margin-top: 8px;
    }

    .logo img {
        max-height: 50px !important;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .promo-banner {
        height: 200px;
    }

    .banner-overlay h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.6rem;
    }

    .banner-content p {
        font-size: 1rem;
    }

    .btn-shop {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-card {
    animation: slideInUp 0.5s ease;
}

.benefit-card {
    animation: fadeIn 0.5s ease;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.position-relative {
    position: relative;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ========================================
   NOTIFICAÇÃO
   ======================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
    min-width: 280px;
    animation: slideInRight 0.3s ease;
}

.notification.show {
    display: block;
}

.notification.success {
    border-left: 5px solid #28a745;
}

.notification.error {
    border-left: 5px solid #dc3545;
}

.notification.info {
    border-left: 5px solid #17a2b8;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BOTÃO ADICIONAR AO CARRINHO
   ======================================== */
.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-yellow));
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(254, 0, 0, 0.3);
}

.btn-add-cart i {
    transition: transform 0.3s ease;
}

.btn-add-cart:hover i {
    transform: scale(1.2);
}

/* Badge do carrinho */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-yellow);
    color: var(--secondary-black);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid #fff;
}

