/* ============================================
   marca PAGE - ESTILOS ESPECÍFICOS
   Reutiliza ao máximo as classes do style.css
   ============================================ */

/* ============================================
   HERO SECTION marca
   ============================================ */
   .hero-marca {
    background: #eaf1fe;
    color: var(--gray);
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Hero Grid Layout */
.hero-marca-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: start;
    gap: 40px;
    /* max-width: 800px; */
}

.hero-marca-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    justify-self: center;
    margin-top: 4px;
}

.hero-marca-content h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-marca-content h1 .text-primary {
    color: var(--accent-blue);
    font-weight: 600;
}

.hero-marca-content .lead {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.brand-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.badge-item i {
    color: #00c853;
    font-size: 16px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   ABOUT BRAND
   Reutiliza .feature-box e outros do style.css
   ============================================ */
.about-brand {
    padding: 80px 0;
    background-color: #fff;
}

.about-brand h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-brand p {
    font-size: 16px;
    line-height: 1.8;
}

/* ============================================
   PRODUCT CATALOG COM FILTROS
   ============================================ */
.product-catalog {
    padding: 80px 0;
    background-color: white;
}

.product-catalog h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Category Filters (Badges) */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.filter-btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 58, 255, 0.3);
}

/* Category Content */
.category-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.category-content.active {
    display: block;
}

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

/* Category Intro */
.category-intro {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e8f0ff 100%); */
    /* padding: 30px; */
    /* border-radius: 15px; */
    /* border-left: 5px solid var(--accent-blue); */
    /* margin-bottom: 30px; */
    text-align: center;
}

.category-intro h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.category-intro p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Product Card Link Wrapper */
.product-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -1px -1px 20px rgba(0, 0, 0, 0.12);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e7e7e7;
}

.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);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-blue);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.product-info p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    color: var(--gray);
}

/* Product Specs */
.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.product-specs span {
    font-size: 13px;
    color: #3b4557;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-specs i {
    color: var(--accent-blue);
    font-size: 16px;
}

/* View More Link */
.view-more {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    justify-content: flex-end;
}

.product-card:hover .view-more {
    gap: 12px;
}

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

.product-card:hover .view-more i {
    transform: translateX(5px);
}

/* ============================================
   CTA SECTION
   Reutiliza estrutura e botões do style.css
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0039A6 0%, #1E5BC6 100%);
    color: white;
    padding: 0;
}

.cta-background {
    /* Mantém compatibilidade com estrutura existente */
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-marca {
        padding: 80px 0 60px;
    }
    
    .hero-marca-grid {
        gap: 30px;
    }

    .hero-marca-content h1 {
        font-size: 32px;
    }
    
    .hero-marca-content .lead {
        font-size: 16px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .about-brand h2,
    .product-catalog h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-filters {
        gap: 10px;
    }
    
    .filter-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 767px) {
    .hero-marca {
        padding: 60px 0 50px;
    }

    .hero-marca-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .hero-marca-logo {
        justify-self: center;
        width: 120px;
        height: 120px;
    }

    .hero-marca-content h1 {
        font-size: 30px;
    }

    .hero-marca-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-marca-buttons .btn {
        /* width: 100%; */
        /* text-align: center; */
    }
    
    .about-brand,
    .product-catalog {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .category-intro {
        padding: 20px;
    }
    
    .filter-btn {
        width: 100%;
    }
}