/* =========================================
   PÁGINA: CME
   ========================================= */

/* Empurra o conteúdo para baixo da barra de navegação */
.main-content {
    padding-top: 120px;
}

/* Banner Hero - Usando o gradiente Azul da Galileo */
.cme-hero {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
    margin-top: 0;
    box-shadow: var(--shadow-md);
}

.cme-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cme-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seção Intro e Vídeo */
.cme-intro {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-benefits {
    list-style: none;
    padding: 0;
}

.intro-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.intro-benefits li i,
.intro-benefits li svg {
    color: var(--accent-yellow);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.intro-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.intro-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Linhas de Produtos Informativas */
.cme-linhas {
    margin-bottom: 60px;
}

.cme-linhas .section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 700;
}

.linha-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.linha-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.linha-card.reverse {
    flex-direction: row-reverse;
}

.linha-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    background: #fdfdfd;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.linha-content {
    flex: 1;
}

.linha-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.linha-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.linha-wrapper {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    padding: 40px;
    transition: var(--transition);
}

.linha-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.linha-wrapper .linha-card {
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px;
    background: transparent;
}

.linha-wrapper .linha-card:hover {
    transform: none;
    box-shadow: none;
}

.video-destaque {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.video-destaque video {
    width: 100%;
    height: auto;
    display: block;
}


.btn-saiba-mais {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-yellow);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-saiba-mais:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 992px) {

    .cme-intro,
    .linha-card,
    .linha-card.reverse {
        flex-direction: column;
    }

    .linha-img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}
