:root {
    --ecp-main: #E91E63;
    --ecp-secondary: #F8BBD0;
    --ecp-bg: #FFFFFF;
    --ecp-text: #333333;
    --ecp-gray-light: #F5F5F5;
    --ecp-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --ecp-radius: 16px;
}

.ecp-container {
    display: flex;
    gap: 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--ecp-text);
    margin: 20px 0;
}

/* Sidebar elegante responsiva */
.ecp-sidebar {
    width: 280px;
    background: var(--ecp-bg);
    border-radius: var(--ecp-radius);
    padding: 24px;
    box-shadow: var(--ecp-shadow);
}

.ecp-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ecp-nav-link {
    padding: 12px 16px;
    color: var(--ecp-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.ecp-nav-link:hover, .ecp-nav-link.active {
    background: var(--ecp-secondary);
    color: var(--ecp-main);
    font-weight: bold;
}

/* Grid de Perfis Estilo App */
.ecp-main-content {
    flex: 1;
}

.ecp-grid-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ecp-card {
    background: var(--ecp-bg);
    border-radius: var(--ecp-radius);
    overflow: hidden;
    box-shadow: var(--ecp-shadow);
    border: 1px solid rgba(233,30,99,0.1);
    transition: transform 0.3s ease;
}

.ecp-card:hover {
    transform: translateY(-4px);
}

.ecp-card-avatar img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ecp-card-body {
    padding: 16px;
}

.ecp-card-body h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.ecp-card-body p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.ecp-card-body .verse {
    color: #666;
    border-left: 2px solid var(--ecp-main);
    padding-left: 8px;
    margin-top: 10px;
}

.ecp-btn, .btn-like {
    width: 100%;
    background: var(--ecp-main);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 0 0 var(--ecp-radius) var(--ecp-radius);
    cursor: pointer;
    font-weight: bold;
}

/* Área Adsense Nativa */
.ecp-card-ad {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    background: #fafafa;
}

.ads-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #aaa;
    letter-spacing: 1px;
}
/* Estilos da Página de Perfil */
.ecp-profile-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}

.ecp-profile-box {
    background: var(--ecp-bg);
    padding: 30px;
    border-radius: var(--ecp-radius);
    box-shadow: var(--ecp-shadow);
}

.ecp-profile-title {
    color: var(--ecp-main);
    margin-bottom: 5px;
    font-size: 1.6rem;
}

.ecp-form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.ecp-form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.ecp-form-group input, .ecp-form-group select, .ecp-form-group textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.ecp-form-group input:focus, .ecp-form-group textarea:focus {
    border-color: var(--ecp-main);
}

.ecp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ecp-profile-save-btn {
    background: var(--ecp-main);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 1rem;
}

/* Card de Visualização do Perfil */
.ecp-profile-view-card {
    background: var(--ecp-bg);
    border-radius: var(--ecp-radius);
    overflow: hidden;
    box-shadow: var(--ecp-shadow);
    position: relative;
}

.ecp-profile-header-bg {
    height: 140px;
    background: linear-gradient(135deg, var(--ecp-main) 0%, var(--ecp-secondary) 100%);
}

.ecp-profile-avatar-wrapper {
    text-align: center;
    margin-top: -70px;
}

.ecp-profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    box-shadow: var(--ecp-shadow);
}

.ecp-profile-details {
    padding: 24px;
}

.ecp-profile-name {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ecp-profile-name span {
    font-weight: normal;
    color: #666;
}

.ecp-profile-meta {
    margin: 6px 0;
    font-size: 0.95rem;
}

.ecp-profile-verse-box {
    background: #FFF0F5;
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--ecp-main);
}

.ecp-profile-verse-box .verse-text {
    font-style: italic;
    margin: 0;
    color: #555;
}

.ecp-profile-actions-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.ecp-action-btn {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.button-like {
    background: var(--ecp-main);
    color: white;
}

.button-favorite {
    background: #f0f0f0;
    color: #333;
}

.button-favorite.active {
    background: #FFD700;
    color: #333;
}

.ecp-moderation-zone {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
}

.ecp-mod-link {
    background: none;
    border: none;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.text-danger { color: #d9534f; }
.text-muted { color: #777; }
/* Responsividade de dispositivos móveis */
@media (max-width: 768px) {
    .ecp-container {
        flex-direction: column;
    }
    .ecp-sidebar {
        width: 100%;
    }
}