/* ============================================================
   SUBSITE DIREITO DE MARCAS - LILÁS
   ============================================================ */

:root {
    --color-main: #9370db;
    --color-light: #f3e5f5;
    --color-accent: #ba68c8;
    --color-dark: #512da8;
}

/* Header específico */
.header-marcas {
    background: linear-gradient(135deg, #9370db 0%, #512da8 100%);
    border-bottom: 4px solid #ba68c8;
}

.header-marcas .logo h1 {
    color: #ba68c8;
}

.header-marcas .nav-link:hover,
.header-marcas .nav-link.active {
    color: #ba68c8;
}

.header-marcas .nav-link::after {
    background-color: #ba68c8;
}

/* Hero específico */
.hero-marcas {
    background: linear-gradient(135deg, #9370db 0%, #512da8 100%);
    border-bottom: 8px solid #ba68c8;
}

.hero-marcas h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-marcas p {
    color: #e1bee7;
}

/* Conteúdo */
.subsite-content {
    background-color: #fafafa;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    color: #9370db;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 5px solid #ba68c8;
    padding-left: 20px;
    letter-spacing: -0.5px;
}

.content-block p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Grid de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ba68c8;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.15);
}

.service-item i {
    font-size: 48px;
    color: #9370db;
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    color: #9370db;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-item p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

/* Vídeos */
.video-placeholder {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    padding: 80px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #ba68c8;
}

.placeholder-icon {
    font-size: 64px;
    color: #9370db;
    margin-bottom: 20px;
}

.video-placeholder p {
    color: #9370db;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

/* Artigos */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.article-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.1);
    border-left: 4px solid #ba68c8;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(147, 112, 219, 0.15);
}

.article-card h4 {
    color: #9370db;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.article-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, #9370db 0%, #512da8 100%);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.cta-block h3 {
    color: #ba68c8;
    border-left: none;
    padding-left: 0;
}

.cta-block p {
    color: #e1bee7;
}

.btn-cta {
    display: inline-block;
    background-color: #ba68c8;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-cta:hover {
    background-color: #ab47bc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(186, 104, 200, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .content-block h3 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 30px 20px;
    }
}