Perdeu a sua senha? Indique o seu nome de utilizador ou endereço de email. Receberá uma ligação para criar uma nova senha via email.




/* Container principal */ .me-calendar-advanced-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; padding: 20px; } /* Card individual */ .mec-card { border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; background: #fff; border: 1px solid #eee; } .mec-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); } /* Imagem */ .mec-card-image { height: 200px; background-size: cover; background-position: center; } /* Conteúdo */ .mec-card-content { padding: 20px; } .mec-date { color: #4a6cf7; font-weight: 600; margin-bottom: 10px; font-size: 14px; } .mec-title { margin: 0 0 15px 0; color: #222; font-size: 1.3em; line-height: 1.3; } .mec-time { color: #555; margin-bottom: 12px; font-size: 14px; } .mec-categories { margin: 10px 0; display: flex; flex-wrap: wrap; gap: 8px; } .mec-category { background: #f0f4ff; color: #4a6cf7; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; } .mec-locations { color: #555; margin: 12px 0; font-size: 14px; } .mec-price { color: #2e7d32; font-weight: 600; margin: 12px 0; font-size: 16px; } /* Botões */ .mec-buttons { display: flex; gap: 10px; margin-top: 20px; } .mec-button { display: inline-block; padding: 10px 20px; border-radius: 6px; font-weight: 500; text-decoration: none; transition: all 0.3s; text-align: center; flex: 1; } .mec-button.details { background: #f0f4ff; color: #4a6cf7; border: 1px solid #4a6cf7; } .mec-button.details:hover { background: #4a6cf7; color: white; } .mec-button.register { background: #4a6cf7; color: white; border: 1px solid #4a6cf7; } .mec-button.register:hover { background: #3a5ce4; } /* Mensagem sem eventos */ .mec-no-events { text-align: center; padding: 30px; color: #666; font-size: 16px; }