/* ========================================
   SEÇÃO CONTROLE EMOCIONAL - V5 ATUALIZADO - ARQUIVO --> geral-ce.css
======================================== */
.controle-emocional-page {
    background-color: #f9f9f9;
    padding: 40px 20px;
    min-height: 100vh;
}

.container-ce {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   CABEÇALHO DA PÁGINA
============================================ */

.page-header-ce {
    margin-bottom: 60px;
    text-align: center;
}

.page-title-ce {
    font-size: 3.8em;
    color: #333;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #2563eb;
    display: inline-block;
}

.page-description-ce {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================
   SEÇÕES GERAIS
============================================ */

.section-ce {
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-ce.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title-ce {
    font-size: 1.8em;
    color: #333;
    font-weight: 700;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-ce svg {
    color: #2563eb;
    flex-shrink: 0;
}

/* ============================================
   CORAÇÃO ANIMADO (GERAL)
============================================ */

.registro-secao-ce {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 7px 14px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(16, 97, 255, 0.35);
    z-index: 10;
}

.heart-icon {
    width: 16px;
    height: 16px;
    color: #fff;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}

.registro-secao-ce span {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.registro-carousel,
.registro-recente {
    padding: 6px;
}

.registro-carousel span,
.registro-recente span {
    display: none;
}